active_utils 3.2.0 → 3.2.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.travis.yml +11 -1
- data/Gemfile.activesupport50 +4 -0
- data/active_utils.gemspec +1 -1
- data/lib/active_utils/currency_code.rb +1 -0
- data/lib/active_utils/version.rb +1 -1
- metadata +9 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 6211b736c9e2eca5eecb46238d8ddf14993eff6e
|
4
|
+
data.tar.gz: ae32f4daff45189f5689a1384332e28bd48c3e46
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7135845a5dc5cd1673ff1beaf85d7a81473614f8a1698e9064d44b83ecaade0e8057eb7346c2ac2d0a6142918a9e1caf4089064ded546e198378fbe82b836214
|
7
|
+
data.tar.gz: 8dc33a076e05c93360ec9f2a78a0569c6fb168c9991577a6ff60257e7e0215792d929e58c7efdcf87721093ec8f56e864fa082e168892cc53d012226a8cbb8ef
|
data/.travis.yml
CHANGED
@@ -6,10 +6,20 @@ rvm:
|
|
6
6
|
- "1.9"
|
7
7
|
- "2.0"
|
8
8
|
- "2.1"
|
9
|
-
- "2.2"
|
9
|
+
- "2.2.2"
|
10
10
|
|
11
11
|
gemfile:
|
12
12
|
- Gemfile.activesupport32
|
13
13
|
- Gemfile.activesupport40
|
14
14
|
- Gemfile.activesupport41
|
15
15
|
- Gemfile.activesupport42
|
16
|
+
- Gemfile.activesupport50
|
17
|
+
|
18
|
+
matrix:
|
19
|
+
exclude:
|
20
|
+
- rvm: "1.9"
|
21
|
+
gemfile: Gemfile.activesupport50
|
22
|
+
- rvm: "2.0"
|
23
|
+
gemfile: Gemfile.activesupport50
|
24
|
+
- rvm: "2.1"
|
25
|
+
gemfile: Gemfile.activesupport50
|
data/active_utils.gemspec
CHANGED
@@ -29,6 +29,7 @@ module ActiveUtils
|
|
29
29
|
"NMP" => "MXN", # Mexican Pesos
|
30
30
|
"NTD" => "TWD", # New Taiwan Dollars / Taiwan New Dollars
|
31
31
|
"RDD" => "DOP", # Dominican Pesos
|
32
|
+
"RM" => "MYR", # Malaysia Ringgit
|
32
33
|
"RMB" => "CNY", # Chinese Renminbi
|
33
34
|
"SFR" => "CHF", # Swiss Francs
|
34
35
|
"SID" => "SGD", # Singapore Dollars
|
data/lib/active_utils/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: active_utils
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.2.
|
4
|
+
version: 3.2.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Shopify
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2016-07-04 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: activesupport
|
@@ -17,6 +17,9 @@ dependencies:
|
|
17
17
|
- - ">="
|
18
18
|
- !ruby/object:Gem::Version
|
19
19
|
version: '3.2'
|
20
|
+
- - "<"
|
21
|
+
- !ruby/object:Gem::Version
|
22
|
+
version: 5.1.0
|
20
23
|
type: :runtime
|
21
24
|
prerelease: false
|
22
25
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -24,6 +27,9 @@ dependencies:
|
|
24
27
|
- - ">="
|
25
28
|
- !ruby/object:Gem::Version
|
26
29
|
version: '3.2'
|
30
|
+
- - "<"
|
31
|
+
- !ruby/object:Gem::Version
|
32
|
+
version: 5.1.0
|
27
33
|
- !ruby/object:Gem::Dependency
|
28
34
|
name: i18n
|
29
35
|
requirement: !ruby/object:Gem::Requirement
|
@@ -96,6 +102,7 @@ files:
|
|
96
102
|
- Gemfile.activesupport40
|
97
103
|
- Gemfile.activesupport41
|
98
104
|
- Gemfile.activesupport42
|
105
|
+
- Gemfile.activesupport50
|
99
106
|
- MIT-LICENSE
|
100
107
|
- README.md
|
101
108
|
- Rakefile
|