moment_timezone-rails 0.5.0 → 0.5.25
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 +5 -5
- data/.gitignore +1 -0
- data/README.md +34 -1
- data/lib/moment_timezone/rails/version.rb +1 -1
- data/moment_timezone-rails.gemspec +2 -0
- data/vendor/assets/javascripts/{moment-timezone-with-data-2010-2020.js → moment-timezone-with-data-10-year-range.js} +329 -278
- data/vendor/assets/javascripts/moment-timezone-with-data-10-year-range.min.js +1 -0
- data/vendor/assets/javascripts/moment-timezone-with-data-1970-2030.js +1224 -0
- data/vendor/assets/javascripts/moment-timezone-with-data-1970-2030.min.js +1 -0
- data/vendor/assets/javascripts/moment-timezone-with-data.js +452 -401
- data/vendor/assets/javascripts/moment-timezone-with-data.min.js +1 -7
- data/vendor/assets/javascripts/moment-timezone.js +68 -27
- data/vendor/assets/javascripts/moment-timezone.min.js +1 -6
- metadata +31 -10
- data/vendor/assets/javascripts/moment-timezone-with-data-2010-2020.min.js +0 -7
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: 1bc41e57f8bb486045cf768b07ec632c5fc1b46c0265a716f5401a43cdc167ea
|
4
|
+
data.tar.gz: 2e549f6507ea9a5c8690f410ceb3e1dfd358b64d1274e51e7a11099c8118641f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 376f967265f81c39121feb7673b96503b7b3ab5abd1362f5a5bf7e8f7c3bbceb2724c07cf57024c9c3217fd49ae7e0e69b71d9f98f5e1af57fab2dba4d6338b0
|
7
|
+
data.tar.gz: b055ecc7c287d8c64db4e509e933c71e01ead847bc5c1876b6bd52e42690d4cdf47e9b181e2acce5f19694295fc9147fb85ee360fa181623f2e44d60cd826e05
|
data/.gitignore
CHANGED
data/README.md
CHANGED
@@ -32,7 +32,40 @@ $ gem install moment_timezone-rails
|
|
32
32
|
|
33
33
|
Add the following directives to `application.js`.
|
34
34
|
|
35
|
-
### For v0.
|
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
|
+
|
53
|
+
### For v0.5.14 and up
|
54
|
+
|
55
|
+
```js
|
56
|
+
//= require moment
|
57
|
+
|
58
|
+
// moment-timezone without timezone data
|
59
|
+
//= require moment-timezone
|
60
|
+
|
61
|
+
// moment-timezone with timezone data from 2012-2022
|
62
|
+
//= require moment-timezone-with-data-2012-2022
|
63
|
+
|
64
|
+
// moment-timezone all timezone data
|
65
|
+
//= require moment-timezone-with-data
|
66
|
+
```
|
67
|
+
|
68
|
+
### For v0.2.2 and up
|
36
69
|
|
37
70
|
```js
|
38
71
|
//= require moment
|