OSDN Git Service

9a0441206b579ad23070f833f66b9095bd4e5f32
[redminele/redminele.git] / ruby / lib / ruby / gems / 1.8 / gems / activesupport-2.3.11 / lib / active_support / vendor / tzinfo-0.3.12 / tzinfo / ruby_core_support.rb
1 #--\r
2 # Copyright (c) 2008 Philip Ross\r
3\r
4 # Permission is hereby granted, free of charge, to any person obtaining a copy\r
5 # of this software and associated documentation files (the "Software"), to deal\r
6 # in the Software without restriction, including without limitation the rights\r
7 # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r
8 # copies of the Software, and to permit persons to whom the Software is\r
9 # furnished to do so, subject to the following conditions:\r
10\r
11 # The above copyright notice and this permission notice shall be included in all\r
12 # copies or substantial portions of the Software.\r
13 #\r
14 # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r
15 # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r
16 # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r
17 # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r
18 # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r
19 # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\r
20 # THE SOFTWARE.\r
21 #++\r
22 \r
23 require 'date'\r
24 require 'rational'\r
25 \r
26 module TZInfo\r
27   \r
28   # Methods to support different versions of Ruby.\r
29   module RubyCoreSupport #:nodoc:\r
30   \r
31     # Use Rational.new! for performance reasons in Ruby 1.8.\r
32     # This has been removed from 1.9, but Rational performs better.        \r
33     if Rational.respond_to? :new!\r
34       def self.rational_new!(numerator, denominator = 1)\r
35         Rational.new!(numerator, denominator)\r
36       end\r
37     else\r
38       def self.rational_new!(numerator, denominator = 1)\r
39         Rational(numerator, denominator)\r
40       end\r
41     end\r
42     \r
43     # Ruby 1.8.6 introduced new! and deprecated new0.\r
44     # Ruby 1.9.0 removed new0.\r
45     # We still need to support new0 for older versions of Ruby.\r
46     if DateTime.respond_to? :new!\r
47       def self.datetime_new!(ajd = 0, of = 0, sg = Date::ITALY)\r
48         DateTime.new!(ajd, of, sg)\r
49       end\r
50     else\r
51       def self.datetime_new!(ajd = 0, of = 0, sg = Date::ITALY)\r
52         DateTime.new0(ajd, of, sg)\r
53       end\r
54     end\r
55   end\r
56 end