moment-timezone-rails 1.0.0 → 1.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +2 -0
- data/lib/moment_timezone_rails/engine.rb +1 -1
- data/lib/moment_timezone_rails/version.rb +2 -2
- data/vendor/assets/javascripts/moment-timezone-with-data-10-year-range.js +1548 -0
- data/vendor/assets/javascripts/moment-timezone-with-data-1970-2030.js +1548 -0
- data/vendor/assets/javascripts/moment-timezone-with-data-2012-2022.js +424 -68
- data/vendor/assets/javascripts/moment-timezone-with-data.js +690 -346
- data/vendor/assets/javascripts/moment-timezone.js +102 -11
- metadata +9 -8
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f99361aa1c06f8c77d6684b9fd5940170c5412ad985f51a9e9e13cdf4322a3c4
|
4
|
+
data.tar.gz: 2d609e9153cb7c3458104ae37caa626201f943e2cfd16a5bce5af665da750ee7
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b454f48100da63f88dd7248e1b1de6d8eab575aa6753fc5c7d1ee8673d3482085f9fc9a4e1bace6b4040571a85ab0eff13964eb0450cc027879b74b9f691ec18
|
7
|
+
data.tar.gz: b6965427af82b0dd328eb2a2c0ac8692aac872dfc87748fde2dc14cad70d97b4392b096e512a4d32bee46f679af918318131c1709923d129bdac6d4d7c240f90
|
data/README.md
CHANGED
@@ -4,7 +4,7 @@ module MomentTimezoneRails
|
|
4
4
|
module Rails
|
5
5
|
class Engine < ::Rails::Engine
|
6
6
|
initializer 'moment-timezone-rails.assets.precompile' do |app|
|
7
|
-
app.config.assets.precompile += %w[moment-timezone-with-data-2012-2022.js moment-timezone-with-data.js moment-timezone.js]
|
7
|
+
app.config.assets.precompile += %w[moment-timezone-with-data-10-year-range.js moment-timezone-with-data-1970-2030.js moment-timezone-with-data-2012-2022.js moment-timezone-with-data.js moment-timezone.js]
|
8
8
|
end
|
9
9
|
end
|
10
10
|
end
|