moment_timezone-rails 0.5.14 → 0.5.47

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
- SHA1:
3
- metadata.gz: f55d1cc97c7ddbbf620fc8059461e66407d6efc7
4
- data.tar.gz: 72f407b6199c8d9190a5128568456b4df0954527
2
+ SHA256:
3
+ metadata.gz: 04b2cb6ae0eb647e2ba0aa4e67de2f18f92b189752b12f499dc1f3ea9ebc5ddf
4
+ data.tar.gz: f01f09a77b672a3829ea008447eed2b3f96096c101172dd392a5d1364fbff732
5
5
  SHA512:
6
- metadata.gz: 457ab683a753f2445a82b871ce715bd7b8c7f745f16e0002284ec4342e0160d67498775f520b36529ea6343147b47adcd3b3523257198c42be1815adc565714f
7
- data.tar.gz: 9797584b57cbe9bdff6c3a17b5f0284128b25d3ac6a146254264f284d4ee9efedca74147c08e6234cae7a8b468d42c2a92d0b2d0cddbb61db032e7e8354ec83e
6
+ metadata.gz: 1dae37228fe0f291b70d1c73d333e880f62fadebd4ca328fde9709fd60e27302c7243e00b179c5ef4e4d1da113897c148c3724e4ed07deb20dcb9d7454661c34
7
+ data.tar.gz: db0ef759f0953c0fe5fa92a33411f8696ee89cc5c0bd606706a623edb6e2a91f61a8e27344d21f830695c61f02bb3b03799ace76ab1bbdc012cc10a285985557
data/README.md CHANGED
@@ -32,6 +32,24 @@ $ gem install moment_timezone-rails
32
32
 
33
33
  Add the following directives to `application.js`.
34
34
 
35
+ ### For v0.5.25 and up
36
+
37
+ ```js
38
+ //= require moment
39
+
40
+ // moment-timezone without timezone data
41
+ //= require moment-timezone
42
+
43
+ // moment-timezone with timezone data from 1970-2030
44
+ //= require moment-timezone-with-data-1970-2030
45
+
46
+ // moment-timezone with timezone 10 years data range
47
+ //= require moment-timezone-with-data-10-year-range
48
+
49
+ // moment-timezone all timezone data
50
+ //= require moment-timezone-with-data
51
+ ```
52
+
35
53
  ### For v0.5.14 and up
36
54
 
37
55
  ```js
@@ -1,5 +1,5 @@
1
1
  module MomentTimezone
2
2
  module Rails
3
- VERSION = "0.5.14"
3
+ VERSION = '0.5.47'
4
4
  end
5
5
  end
@@ -20,5 +20,5 @@ Gem::Specification.new do |spec|
20
20
 
21
21
  spec.add_development_dependency "rails", "~> 3.2"
22
22
 
23
- spec.add_runtime_dependency "momentjs-rails", "~> 2.15.1"
23
+ spec.add_runtime_dependency "momentjs-rails", ">= 2.15.1", "< 3.0.0"
24
24
  end