bigcartel-currency-locales 1.3.1 → 1.4.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +5 -5
- data/.travis.yml +4 -7
- data/Appraisals +9 -14
- data/README.md +14 -1
- data/Rakefile +1 -3
- data/gemfiles/rails_2.3.gemfile +9 -0
- data/gemfiles/rails_2.3.gemfile.lock +109 -0
- data/gemfiles/rails_4.gemfile +7 -0
- data/gemfiles/rails_4.gemfile.lock +134 -0
- data/gemfiles/rails_5.gemfile +7 -0
- data/gemfiles/rails_5.gemfile.lock +141 -0
- data/lib/currency-locales/locales/gsw-CH.yml +1 -1
- data/lib/currency-locales/version.rb +1 -1
- data/spec/integration/currency_locales_spec.rb +2 -2
- metadata +17 -19
- data/gemfiles/2.3.gemfile +0 -10
- data/gemfiles/2.3.gemfile.lock +0 -44
- data/gemfiles/3.0.gemfile +0 -8
- data/gemfiles/3.0.gemfile.lock +0 -99
- data/gemfiles/3.1.gemfile +0 -8
- data/gemfiles/3.1.gemfile.lock +0 -110
- data/gemfiles/3.2.gemfile +0 -8
- data/gemfiles/3.2.gemfile.lock +0 -109
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: 9e86887a2bfba0aa2e5013f51caba9ddda458c94dfff91921624953f5327ccf7
|
4
|
+
data.tar.gz: 7aa8b4b75817b1e1b7591bd68136dba31fcf376a48ade00a2960816589cc229f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 713364453e4379bdc715dd19dd62c111acf8ebc8f1d4c611e7f166b8f5c3549ee33d4d9ced3dcf5287e77f95a53f68848f9629076edc6ebfff30fdc5b38f3ec1
|
7
|
+
data.tar.gz: d96ce4e29ff3c84da1c0babf73706422330c254bd3e14a1aed1a52947ad74488ca689f7622ed0d9b58372fe11806e366b5f715e074f1b5801f815a9954bf2097
|
data/.travis.yml
CHANGED
@@ -1,12 +1,9 @@
|
|
1
1
|
language: ruby
|
2
2
|
rvm:
|
3
|
-
-
|
4
|
-
- 1.9.3
|
5
|
-
- 2.0
|
3
|
+
- 2.4
|
6
4
|
gemfile:
|
7
|
-
- gemfiles/
|
8
|
-
- gemfiles/
|
9
|
-
- gemfiles/
|
10
|
-
- gemfiles/3.2.gemfile
|
5
|
+
- gemfiles/rails_2.3.gemfile
|
6
|
+
- gemfiles/rails_4.gemfile
|
7
|
+
- gemfiles/rails_5.gemfile
|
11
8
|
notifications:
|
12
9
|
email: false
|
data/Appraisals
CHANGED
@@ -1,19 +1,14 @@
|
|
1
|
-
appraise "
|
2
|
-
gem "rails", "~>
|
3
|
-
gem "bigcartel-currency-locales", :path => "../"
|
1
|
+
appraise "rails-5" do
|
2
|
+
gem "rails", "~> 5"
|
4
3
|
end
|
5
4
|
|
6
|
-
appraise "
|
7
|
-
gem "rails", "~>
|
8
|
-
gem "bigcartel-currency-locales", :path => "../"
|
5
|
+
appraise "rails-4" do
|
6
|
+
gem "rails", "~> 4"
|
9
7
|
end
|
10
8
|
|
11
|
-
appraise "3
|
12
|
-
gem "rails", "~> 3
|
13
|
-
gem
|
14
|
-
|
15
|
-
|
16
|
-
appraise "2.3" do
|
17
|
-
gem "rails", "~> 2.3.16"
|
18
|
-
gem "bigcartel-currency-locales", :path => "../"
|
9
|
+
appraise "rails-2.3" do
|
10
|
+
gem "rails", "~> 2.3"
|
11
|
+
gem 'rake', '< 11'
|
12
|
+
gem 'rspec', '~> 1.3.1'
|
13
|
+
gem 'rspec-rails', '~> 1.3.2'
|
19
14
|
end
|
data/README.md
CHANGED
@@ -1,6 +1,8 @@
|
|
1
1
|
# Big Cartel Currency Locales [![Build Status](https://travis-ci.org/bigcartel/bigcartel-currency-locales.png?branch=master)](https://travis-ci.org/bigcartel/bigcartel-currency-locales) [![Gem Version](https://badge.fury.io/rb/bigcartel-currency-locales.png)](http://badge.fury.io/rb/bigcartel-currency-locales)
|
2
2
|
|
3
|
-
Loads locale data for all of
|
3
|
+
Loads locale data for all of Big Cartel's supported currencies so that we can
|
4
|
+
format the currency amounts with the I18n gem. Used internally by [Big
|
5
|
+
Cartel](http://bigcartel.com) and [Dugway](https://github.com/bigcartel/dugway).
|
4
6
|
|
5
7
|
## Install
|
6
8
|
|
@@ -21,3 +23,14 @@ Or install it yourself as:
|
|
21
23
|
```ruby
|
22
24
|
gem install bigcartel-currency-locales
|
23
25
|
```
|
26
|
+
|
27
|
+
## Development
|
28
|
+
|
29
|
+
The gem is managed and tested against different dependency versions with
|
30
|
+
[Appraisal](https://github.com/thoughtbot/appraisal).
|
31
|
+
|
32
|
+
The test suite is powered by RSpec. Run the entire test suite with:
|
33
|
+
|
34
|
+
```
|
35
|
+
bundle exec appraisal rake
|
36
|
+
```
|
data/Rakefile
CHANGED
@@ -0,0 +1,109 @@
|
|
1
|
+
PATH
|
2
|
+
remote: ..
|
3
|
+
specs:
|
4
|
+
bigcartel-currency-locales (1.4.0)
|
5
|
+
|
6
|
+
GEM
|
7
|
+
remote: http://rubygems.org/
|
8
|
+
specs:
|
9
|
+
actionmailer (3.2.9)
|
10
|
+
actionpack (= 3.2.9)
|
11
|
+
mail (~> 2.4.4)
|
12
|
+
actionpack (3.2.9)
|
13
|
+
activemodel (= 3.2.9)
|
14
|
+
activesupport (= 3.2.9)
|
15
|
+
builder (~> 3.0.0)
|
16
|
+
erubis (~> 2.7.0)
|
17
|
+
journey (~> 1.0.4)
|
18
|
+
rack (~> 1.4.0)
|
19
|
+
rack-cache (~> 1.2)
|
20
|
+
rack-test (~> 0.6.1)
|
21
|
+
sprockets (~> 2.2.1)
|
22
|
+
activemodel (3.2.9)
|
23
|
+
activesupport (= 3.2.9)
|
24
|
+
builder (~> 3.0.0)
|
25
|
+
activerecord (3.2.9)
|
26
|
+
activemodel (= 3.2.9)
|
27
|
+
activesupport (= 3.2.9)
|
28
|
+
arel (~> 3.0.2)
|
29
|
+
tzinfo (~> 0.3.29)
|
30
|
+
activeresource (3.2.9)
|
31
|
+
activemodel (= 3.2.9)
|
32
|
+
activesupport (= 3.2.9)
|
33
|
+
activesupport (3.2.9)
|
34
|
+
i18n (~> 0.6)
|
35
|
+
multi_json (~> 1.0)
|
36
|
+
appraisal (2.2.0)
|
37
|
+
bundler
|
38
|
+
rake
|
39
|
+
thor (>= 0.14.0)
|
40
|
+
arel (3.0.3)
|
41
|
+
builder (3.0.4)
|
42
|
+
concurrent-ruby (1.0.5)
|
43
|
+
erubis (2.7.0)
|
44
|
+
hike (1.2.3)
|
45
|
+
i18n (0.9.3)
|
46
|
+
concurrent-ruby (~> 1.0)
|
47
|
+
journey (1.0.4)
|
48
|
+
json (1.8.6)
|
49
|
+
mail (2.4.4)
|
50
|
+
i18n (>= 0.4.0)
|
51
|
+
mime-types (~> 1.16)
|
52
|
+
treetop (~> 1.4.8)
|
53
|
+
mime-types (1.25.1)
|
54
|
+
multi_json (1.13.1)
|
55
|
+
polyglot (0.3.5)
|
56
|
+
rack (1.4.7)
|
57
|
+
rack-cache (1.7.1)
|
58
|
+
rack (>= 0.4)
|
59
|
+
rack-ssl (1.3.4)
|
60
|
+
rack
|
61
|
+
rack-test (0.6.3)
|
62
|
+
rack (>= 1.0)
|
63
|
+
rails (3.2.9)
|
64
|
+
actionmailer (= 3.2.9)
|
65
|
+
actionpack (= 3.2.9)
|
66
|
+
activerecord (= 3.2.9)
|
67
|
+
activeresource (= 3.2.9)
|
68
|
+
activesupport (= 3.2.9)
|
69
|
+
bundler (~> 1.0)
|
70
|
+
railties (= 3.2.9)
|
71
|
+
railties (3.2.9)
|
72
|
+
actionpack (= 3.2.9)
|
73
|
+
activesupport (= 3.2.9)
|
74
|
+
rack-ssl (~> 1.3.2)
|
75
|
+
rake (>= 0.8.7)
|
76
|
+
rdoc (~> 3.4)
|
77
|
+
thor (>= 0.14.6, < 2.0)
|
78
|
+
rake (10.5.0)
|
79
|
+
rdoc (3.12.2)
|
80
|
+
json (~> 1.4)
|
81
|
+
rspec (1.3.2)
|
82
|
+
rspec-rails (1.3.4)
|
83
|
+
rack (>= 1.0.0)
|
84
|
+
rspec (~> 1.3.1)
|
85
|
+
sprockets (2.2.3)
|
86
|
+
hike (~> 1.2)
|
87
|
+
multi_json (~> 1.0)
|
88
|
+
rack (~> 1.0)
|
89
|
+
tilt (~> 1.1, != 1.3.0)
|
90
|
+
thor (0.20.0)
|
91
|
+
tilt (1.4.1)
|
92
|
+
treetop (1.4.15)
|
93
|
+
polyglot
|
94
|
+
polyglot (>= 0.3.1)
|
95
|
+
tzinfo (0.3.53)
|
96
|
+
|
97
|
+
PLATFORMS
|
98
|
+
ruby
|
99
|
+
|
100
|
+
DEPENDENCIES
|
101
|
+
appraisal
|
102
|
+
bigcartel-currency-locales!
|
103
|
+
rails (= 3.2.9)
|
104
|
+
rake (< 11)
|
105
|
+
rspec (~> 1.3.1)
|
106
|
+
rspec-rails (~> 1.3.2)
|
107
|
+
|
108
|
+
BUNDLED WITH
|
109
|
+
1.16.0
|
@@ -0,0 +1,134 @@
|
|
1
|
+
PATH
|
2
|
+
remote: ..
|
3
|
+
specs:
|
4
|
+
bigcartel-currency-locales (1.4.0)
|
5
|
+
|
6
|
+
GEM
|
7
|
+
remote: http://rubygems.org/
|
8
|
+
specs:
|
9
|
+
actionmailer (4.2.10)
|
10
|
+
actionpack (= 4.2.10)
|
11
|
+
actionview (= 4.2.10)
|
12
|
+
activejob (= 4.2.10)
|
13
|
+
mail (~> 2.5, >= 2.5.4)
|
14
|
+
rails-dom-testing (~> 1.0, >= 1.0.5)
|
15
|
+
actionpack (4.2.10)
|
16
|
+
actionview (= 4.2.10)
|
17
|
+
activesupport (= 4.2.10)
|
18
|
+
rack (~> 1.6)
|
19
|
+
rack-test (~> 0.6.2)
|
20
|
+
rails-dom-testing (~> 1.0, >= 1.0.5)
|
21
|
+
rails-html-sanitizer (~> 1.0, >= 1.0.2)
|
22
|
+
actionview (4.2.10)
|
23
|
+
activesupport (= 4.2.10)
|
24
|
+
builder (~> 3.1)
|
25
|
+
erubis (~> 2.7.0)
|
26
|
+
rails-dom-testing (~> 1.0, >= 1.0.5)
|
27
|
+
rails-html-sanitizer (~> 1.0, >= 1.0.3)
|
28
|
+
activejob (4.2.10)
|
29
|
+
activesupport (= 4.2.10)
|
30
|
+
globalid (>= 0.3.0)
|
31
|
+
activemodel (4.2.10)
|
32
|
+
activesupport (= 4.2.10)
|
33
|
+
builder (~> 3.1)
|
34
|
+
activerecord (4.2.10)
|
35
|
+
activemodel (= 4.2.10)
|
36
|
+
activesupport (= 4.2.10)
|
37
|
+
arel (~> 6.0)
|
38
|
+
activesupport (4.2.10)
|
39
|
+
i18n (~> 0.7)
|
40
|
+
minitest (~> 5.1)
|
41
|
+
thread_safe (~> 0.3, >= 0.3.4)
|
42
|
+
tzinfo (~> 1.1)
|
43
|
+
appraisal (2.2.0)
|
44
|
+
bundler
|
45
|
+
rake
|
46
|
+
thor (>= 0.14.0)
|
47
|
+
arel (6.0.4)
|
48
|
+
builder (3.2.3)
|
49
|
+
concurrent-ruby (1.0.5)
|
50
|
+
crass (1.0.3)
|
51
|
+
diff-lcs (1.3)
|
52
|
+
erubis (2.7.0)
|
53
|
+
globalid (0.4.1)
|
54
|
+
activesupport (>= 4.2.0)
|
55
|
+
i18n (0.9.3)
|
56
|
+
concurrent-ruby (~> 1.0)
|
57
|
+
loofah (2.1.1)
|
58
|
+
crass (~> 1.0.2)
|
59
|
+
nokogiri (>= 1.5.9)
|
60
|
+
mail (2.7.0)
|
61
|
+
mini_mime (>= 0.1.1)
|
62
|
+
mini_mime (1.0.0)
|
63
|
+
mini_portile2 (2.3.0)
|
64
|
+
minitest (5.11.3)
|
65
|
+
nokogiri (1.8.2)
|
66
|
+
mini_portile2 (~> 2.3.0)
|
67
|
+
rack (1.6.8)
|
68
|
+
rack-test (0.6.3)
|
69
|
+
rack (>= 1.0)
|
70
|
+
rails (4.2.10)
|
71
|
+
actionmailer (= 4.2.10)
|
72
|
+
actionpack (= 4.2.10)
|
73
|
+
actionview (= 4.2.10)
|
74
|
+
activejob (= 4.2.10)
|
75
|
+
activemodel (= 4.2.10)
|
76
|
+
activerecord (= 4.2.10)
|
77
|
+
activesupport (= 4.2.10)
|
78
|
+
bundler (>= 1.3.0, < 2.0)
|
79
|
+
railties (= 4.2.10)
|
80
|
+
sprockets-rails
|
81
|
+
rails-deprecated_sanitizer (1.0.3)
|
82
|
+
activesupport (>= 4.2.0.alpha)
|
83
|
+
rails-dom-testing (1.0.9)
|
84
|
+
activesupport (>= 4.2.0, < 5.0)
|
85
|
+
nokogiri (~> 1.6)
|
86
|
+
rails-deprecated_sanitizer (>= 1.0.1)
|
87
|
+
rails-html-sanitizer (1.0.3)
|
88
|
+
loofah (~> 2.0)
|
89
|
+
railties (4.2.10)
|
90
|
+
actionpack (= 4.2.10)
|
91
|
+
activesupport (= 4.2.10)
|
92
|
+
rake (>= 0.8.7)
|
93
|
+
thor (>= 0.18.1, < 2.0)
|
94
|
+
rake (12.3.0)
|
95
|
+
rspec-core (3.7.1)
|
96
|
+
rspec-support (~> 3.7.0)
|
97
|
+
rspec-expectations (3.7.0)
|
98
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
99
|
+
rspec-support (~> 3.7.0)
|
100
|
+
rspec-mocks (3.7.0)
|
101
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
102
|
+
rspec-support (~> 3.7.0)
|
103
|
+
rspec-rails (3.7.2)
|
104
|
+
actionpack (>= 3.0)
|
105
|
+
activesupport (>= 3.0)
|
106
|
+
railties (>= 3.0)
|
107
|
+
rspec-core (~> 3.7.0)
|
108
|
+
rspec-expectations (~> 3.7.0)
|
109
|
+
rspec-mocks (~> 3.7.0)
|
110
|
+
rspec-support (~> 3.7.0)
|
111
|
+
rspec-support (3.7.1)
|
112
|
+
sprockets (3.7.1)
|
113
|
+
concurrent-ruby (~> 1.0)
|
114
|
+
rack (> 1, < 3)
|
115
|
+
sprockets-rails (3.2.1)
|
116
|
+
actionpack (>= 4.0)
|
117
|
+
activesupport (>= 4.0)
|
118
|
+
sprockets (>= 3.0.0)
|
119
|
+
thor (0.20.0)
|
120
|
+
thread_safe (0.3.6)
|
121
|
+
tzinfo (1.2.5)
|
122
|
+
thread_safe (~> 0.1)
|
123
|
+
|
124
|
+
PLATFORMS
|
125
|
+
ruby
|
126
|
+
|
127
|
+
DEPENDENCIES
|
128
|
+
appraisal
|
129
|
+
bigcartel-currency-locales!
|
130
|
+
rails (~> 4)
|
131
|
+
rspec-rails (>= 2.0)
|
132
|
+
|
133
|
+
BUNDLED WITH
|
134
|
+
1.16.0
|
@@ -0,0 +1,141 @@
|
|
1
|
+
PATH
|
2
|
+
remote: ..
|
3
|
+
specs:
|
4
|
+
bigcartel-currency-locales (1.4.0)
|
5
|
+
|
6
|
+
GEM
|
7
|
+
remote: http://rubygems.org/
|
8
|
+
specs:
|
9
|
+
actioncable (5.1.4)
|
10
|
+
actionpack (= 5.1.4)
|
11
|
+
nio4r (~> 2.0)
|
12
|
+
websocket-driver (~> 0.6.1)
|
13
|
+
actionmailer (5.1.4)
|
14
|
+
actionpack (= 5.1.4)
|
15
|
+
actionview (= 5.1.4)
|
16
|
+
activejob (= 5.1.4)
|
17
|
+
mail (~> 2.5, >= 2.5.4)
|
18
|
+
rails-dom-testing (~> 2.0)
|
19
|
+
actionpack (5.1.4)
|
20
|
+
actionview (= 5.1.4)
|
21
|
+
activesupport (= 5.1.4)
|
22
|
+
rack (~> 2.0)
|
23
|
+
rack-test (>= 0.6.3)
|
24
|
+
rails-dom-testing (~> 2.0)
|
25
|
+
rails-html-sanitizer (~> 1.0, >= 1.0.2)
|
26
|
+
actionview (5.1.4)
|
27
|
+
activesupport (= 5.1.4)
|
28
|
+
builder (~> 3.1)
|
29
|
+
erubi (~> 1.4)
|
30
|
+
rails-dom-testing (~> 2.0)
|
31
|
+
rails-html-sanitizer (~> 1.0, >= 1.0.3)
|
32
|
+
activejob (5.1.4)
|
33
|
+
activesupport (= 5.1.4)
|
34
|
+
globalid (>= 0.3.6)
|
35
|
+
activemodel (5.1.4)
|
36
|
+
activesupport (= 5.1.4)
|
37
|
+
activerecord (5.1.4)
|
38
|
+
activemodel (= 5.1.4)
|
39
|
+
activesupport (= 5.1.4)
|
40
|
+
arel (~> 8.0)
|
41
|
+
activesupport (5.1.4)
|
42
|
+
concurrent-ruby (~> 1.0, >= 1.0.2)
|
43
|
+
i18n (~> 0.7)
|
44
|
+
minitest (~> 5.1)
|
45
|
+
tzinfo (~> 1.1)
|
46
|
+
appraisal (2.2.0)
|
47
|
+
bundler
|
48
|
+
rake
|
49
|
+
thor (>= 0.14.0)
|
50
|
+
arel (8.0.0)
|
51
|
+
builder (3.2.3)
|
52
|
+
concurrent-ruby (1.0.5)
|
53
|
+
crass (1.0.3)
|
54
|
+
diff-lcs (1.3)
|
55
|
+
erubi (1.7.0)
|
56
|
+
globalid (0.4.1)
|
57
|
+
activesupport (>= 4.2.0)
|
58
|
+
i18n (0.9.3)
|
59
|
+
concurrent-ruby (~> 1.0)
|
60
|
+
loofah (2.1.1)
|
61
|
+
crass (~> 1.0.2)
|
62
|
+
nokogiri (>= 1.5.9)
|
63
|
+
mail (2.7.0)
|
64
|
+
mini_mime (>= 0.1.1)
|
65
|
+
method_source (0.9.0)
|
66
|
+
mini_mime (1.0.0)
|
67
|
+
mini_portile2 (2.3.0)
|
68
|
+
minitest (5.11.3)
|
69
|
+
nio4r (2.2.0)
|
70
|
+
nokogiri (1.8.2)
|
71
|
+
mini_portile2 (~> 2.3.0)
|
72
|
+
rack (2.0.4)
|
73
|
+
rack-test (0.8.2)
|
74
|
+
rack (>= 1.0, < 3)
|
75
|
+
rails (5.1.4)
|
76
|
+
actioncable (= 5.1.4)
|
77
|
+
actionmailer (= 5.1.4)
|
78
|
+
actionpack (= 5.1.4)
|
79
|
+
actionview (= 5.1.4)
|
80
|
+
activejob (= 5.1.4)
|
81
|
+
activemodel (= 5.1.4)
|
82
|
+
activerecord (= 5.1.4)
|
83
|
+
activesupport (= 5.1.4)
|
84
|
+
bundler (>= 1.3.0)
|
85
|
+
railties (= 5.1.4)
|
86
|
+
sprockets-rails (>= 2.0.0)
|
87
|
+
rails-dom-testing (2.0.3)
|
88
|
+
activesupport (>= 4.2.0)
|
89
|
+
nokogiri (>= 1.6)
|
90
|
+
rails-html-sanitizer (1.0.3)
|
91
|
+
loofah (~> 2.0)
|
92
|
+
railties (5.1.4)
|
93
|
+
actionpack (= 5.1.4)
|
94
|
+
activesupport (= 5.1.4)
|
95
|
+
method_source
|
96
|
+
rake (>= 0.8.7)
|
97
|
+
thor (>= 0.18.1, < 2.0)
|
98
|
+
rake (12.3.0)
|
99
|
+
rspec-core (3.7.1)
|
100
|
+
rspec-support (~> 3.7.0)
|
101
|
+
rspec-expectations (3.7.0)
|
102
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
103
|
+
rspec-support (~> 3.7.0)
|
104
|
+
rspec-mocks (3.7.0)
|
105
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
106
|
+
rspec-support (~> 3.7.0)
|
107
|
+
rspec-rails (3.7.2)
|
108
|
+
actionpack (>= 3.0)
|
109
|
+
activesupport (>= 3.0)
|
110
|
+
railties (>= 3.0)
|
111
|
+
rspec-core (~> 3.7.0)
|
112
|
+
rspec-expectations (~> 3.7.0)
|
113
|
+
rspec-mocks (~> 3.7.0)
|
114
|
+
rspec-support (~> 3.7.0)
|
115
|
+
rspec-support (3.7.1)
|
116
|
+
sprockets (3.7.1)
|
117
|
+
concurrent-ruby (~> 1.0)
|
118
|
+
rack (> 1, < 3)
|
119
|
+
sprockets-rails (3.2.1)
|
120
|
+
actionpack (>= 4.0)
|
121
|
+
activesupport (>= 4.0)
|
122
|
+
sprockets (>= 3.0.0)
|
123
|
+
thor (0.20.0)
|
124
|
+
thread_safe (0.3.6)
|
125
|
+
tzinfo (1.2.5)
|
126
|
+
thread_safe (~> 0.1)
|
127
|
+
websocket-driver (0.6.5)
|
128
|
+
websocket-extensions (>= 0.1.0)
|
129
|
+
websocket-extensions (0.1.3)
|
130
|
+
|
131
|
+
PLATFORMS
|
132
|
+
ruby
|
133
|
+
|
134
|
+
DEPENDENCIES
|
135
|
+
appraisal
|
136
|
+
bigcartel-currency-locales!
|
137
|
+
rails (~> 5)
|
138
|
+
rspec-rails (>= 2.0)
|
139
|
+
|
140
|
+
BUNDLED WITH
|
141
|
+
1.16.0
|
@@ -183,11 +183,11 @@ describe "CurrencyLocales" do
|
|
183
183
|
let(:locale) { 'gsw-CH' }
|
184
184
|
|
185
185
|
it "should translate the small amount to currency" do
|
186
|
-
small_currency.should == '
|
186
|
+
small_currency.should == 'CHF9.99'
|
187
187
|
end
|
188
188
|
|
189
189
|
it "should translate the big amount to currency" do
|
190
|
-
big_currency.should == '
|
190
|
+
big_currency.should == 'CHF9,999.99'
|
191
191
|
end
|
192
192
|
|
193
193
|
it "should translate the small amount with precision" do
|
metadata
CHANGED
@@ -1,27 +1,27 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: bigcartel-currency-locales
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.4.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Big Cartel
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2018-02-08 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: appraisal
|
15
15
|
requirement: !ruby/object:Gem::Requirement
|
16
16
|
requirements:
|
17
|
-
- -
|
17
|
+
- - ">="
|
18
18
|
- !ruby/object:Gem::Version
|
19
19
|
version: '0'
|
20
20
|
type: :development
|
21
21
|
prerelease: false
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
23
23
|
requirements:
|
24
|
-
- -
|
24
|
+
- - ">="
|
25
25
|
- !ruby/object:Gem::Version
|
26
26
|
version: '0'
|
27
27
|
- !ruby/object:Gem::Dependency
|
@@ -42,14 +42,14 @@ dependencies:
|
|
42
42
|
name: rspec-rails
|
43
43
|
requirement: !ruby/object:Gem::Requirement
|
44
44
|
requirements:
|
45
|
-
- -
|
45
|
+
- - ">="
|
46
46
|
- !ruby/object:Gem::Version
|
47
47
|
version: '2.0'
|
48
48
|
type: :development
|
49
49
|
prerelease: false
|
50
50
|
version_requirements: !ruby/object:Gem::Requirement
|
51
51
|
requirements:
|
52
|
-
- -
|
52
|
+
- - ">="
|
53
53
|
- !ruby/object:Gem::Version
|
54
54
|
version: '2.0'
|
55
55
|
description: Common locale data for Rails i18n of Big Cartel's supported currencies.
|
@@ -58,21 +58,19 @@ executables: []
|
|
58
58
|
extensions: []
|
59
59
|
extra_rdoc_files: []
|
60
60
|
files:
|
61
|
-
- .gitignore
|
62
|
-
- .travis.yml
|
61
|
+
- ".gitignore"
|
62
|
+
- ".travis.yml"
|
63
63
|
- Appraisals
|
64
64
|
- Gemfile
|
65
65
|
- README.md
|
66
66
|
- Rakefile
|
67
67
|
- bigcartel-currency-locales.gemspec
|
68
|
-
- gemfiles/
|
69
|
-
- gemfiles/
|
70
|
-
- gemfiles/
|
71
|
-
- gemfiles/
|
72
|
-
- gemfiles/
|
73
|
-
- gemfiles/
|
74
|
-
- gemfiles/3.2.gemfile
|
75
|
-
- gemfiles/3.2.gemfile.lock
|
68
|
+
- gemfiles/rails_2.3.gemfile
|
69
|
+
- gemfiles/rails_2.3.gemfile.lock
|
70
|
+
- gemfiles/rails_4.gemfile
|
71
|
+
- gemfiles/rails_4.gemfile.lock
|
72
|
+
- gemfiles/rails_5.gemfile
|
73
|
+
- gemfiles/rails_5.gemfile.lock
|
76
74
|
- lib/bigcartel-currency-locales.rb
|
77
75
|
- lib/currency-locales/locales/cs.yml
|
78
76
|
- lib/currency-locales/locales/da.yml
|
@@ -108,17 +106,17 @@ require_paths:
|
|
108
106
|
- lib
|
109
107
|
required_ruby_version: !ruby/object:Gem::Requirement
|
110
108
|
requirements:
|
111
|
-
- -
|
109
|
+
- - ">="
|
112
110
|
- !ruby/object:Gem::Version
|
113
111
|
version: '0'
|
114
112
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
115
113
|
requirements:
|
116
|
-
- -
|
114
|
+
- - ">="
|
117
115
|
- !ruby/object:Gem::Version
|
118
116
|
version: '0'
|
119
117
|
requirements: []
|
120
118
|
rubyforge_project:
|
121
|
-
rubygems_version: 2.
|
119
|
+
rubygems_version: 2.7.4
|
122
120
|
signing_key:
|
123
121
|
specification_version: 4
|
124
122
|
summary: Common locale data for Rails i18n of Big Cartel's supported currencies.
|
data/gemfiles/2.3.gemfile
DELETED
data/gemfiles/2.3.gemfile.lock
DELETED
@@ -1,44 +0,0 @@
|
|
1
|
-
PATH
|
2
|
-
remote: /Users/kreynolds/Documents/devel/bigcartel/currency-locales
|
3
|
-
specs:
|
4
|
-
bigcartel-currency-locales (1.3.0)
|
5
|
-
|
6
|
-
GEM
|
7
|
-
remote: http://rubygems.org/
|
8
|
-
specs:
|
9
|
-
actionmailer (2.3.16)
|
10
|
-
actionpack (= 2.3.16)
|
11
|
-
actionpack (2.3.16)
|
12
|
-
activesupport (= 2.3.16)
|
13
|
-
rack (~> 1.1.0)
|
14
|
-
activerecord (2.3.16)
|
15
|
-
activesupport (= 2.3.16)
|
16
|
-
activeresource (2.3.16)
|
17
|
-
activesupport (= 2.3.16)
|
18
|
-
activesupport (2.3.16)
|
19
|
-
appraisal (0.5.1)
|
20
|
-
bundler
|
21
|
-
rake
|
22
|
-
rack (1.1.5)
|
23
|
-
rails (2.3.16)
|
24
|
-
actionmailer (= 2.3.16)
|
25
|
-
actionpack (= 2.3.16)
|
26
|
-
activerecord (= 2.3.16)
|
27
|
-
activeresource (= 2.3.16)
|
28
|
-
activesupport (= 2.3.16)
|
29
|
-
rake (>= 0.8.3)
|
30
|
-
rake (10.0.3)
|
31
|
-
rspec (1.3.2)
|
32
|
-
rspec-rails (1.3.4)
|
33
|
-
rack (>= 1.0.0)
|
34
|
-
rspec (~> 1.3.1)
|
35
|
-
|
36
|
-
PLATFORMS
|
37
|
-
ruby
|
38
|
-
|
39
|
-
DEPENDENCIES
|
40
|
-
appraisal
|
41
|
-
bigcartel-currency-locales!
|
42
|
-
rails (~> 2.3.16)
|
43
|
-
rspec
|
44
|
-
rspec-rails (< 2)
|
data/gemfiles/3.0.gemfile
DELETED
data/gemfiles/3.0.gemfile.lock
DELETED
@@ -1,99 +0,0 @@
|
|
1
|
-
PATH
|
2
|
-
remote: /Users/kreynolds/Documents/devel/bigcartel/currency-locales
|
3
|
-
specs:
|
4
|
-
bigcartel-currency-locales (1.3.0)
|
5
|
-
|
6
|
-
GEM
|
7
|
-
remote: http://rubygems.org/
|
8
|
-
specs:
|
9
|
-
abstract (1.0.0)
|
10
|
-
actionmailer (3.0.20)
|
11
|
-
actionpack (= 3.0.20)
|
12
|
-
mail (~> 2.2.19)
|
13
|
-
actionpack (3.0.20)
|
14
|
-
activemodel (= 3.0.20)
|
15
|
-
activesupport (= 3.0.20)
|
16
|
-
builder (~> 2.1.2)
|
17
|
-
erubis (~> 2.6.6)
|
18
|
-
i18n (~> 0.5.0)
|
19
|
-
rack (~> 1.2.5)
|
20
|
-
rack-mount (~> 0.6.14)
|
21
|
-
rack-test (~> 0.5.7)
|
22
|
-
tzinfo (~> 0.3.23)
|
23
|
-
activemodel (3.0.20)
|
24
|
-
activesupport (= 3.0.20)
|
25
|
-
builder (~> 2.1.2)
|
26
|
-
i18n (~> 0.5.0)
|
27
|
-
activerecord (3.0.20)
|
28
|
-
activemodel (= 3.0.20)
|
29
|
-
activesupport (= 3.0.20)
|
30
|
-
arel (~> 2.0.10)
|
31
|
-
tzinfo (~> 0.3.23)
|
32
|
-
activeresource (3.0.20)
|
33
|
-
activemodel (= 3.0.20)
|
34
|
-
activesupport (= 3.0.20)
|
35
|
-
activesupport (3.0.20)
|
36
|
-
appraisal (0.5.1)
|
37
|
-
bundler
|
38
|
-
rake
|
39
|
-
arel (2.0.10)
|
40
|
-
builder (2.1.2)
|
41
|
-
diff-lcs (1.1.3)
|
42
|
-
erubis (2.6.6)
|
43
|
-
abstract (>= 1.0.0)
|
44
|
-
i18n (0.5.0)
|
45
|
-
json (1.7.6)
|
46
|
-
mail (2.2.19)
|
47
|
-
activesupport (>= 2.3.6)
|
48
|
-
i18n (>= 0.4.0)
|
49
|
-
mime-types (~> 1.16)
|
50
|
-
treetop (~> 1.4.8)
|
51
|
-
mime-types (1.19)
|
52
|
-
polyglot (0.3.3)
|
53
|
-
rack (1.2.7)
|
54
|
-
rack-mount (0.6.14)
|
55
|
-
rack (>= 1.0.0)
|
56
|
-
rack-test (0.5.7)
|
57
|
-
rack (>= 1.0)
|
58
|
-
rails (3.0.20)
|
59
|
-
actionmailer (= 3.0.20)
|
60
|
-
actionpack (= 3.0.20)
|
61
|
-
activerecord (= 3.0.20)
|
62
|
-
activeresource (= 3.0.20)
|
63
|
-
activesupport (= 3.0.20)
|
64
|
-
bundler (~> 1.0)
|
65
|
-
railties (= 3.0.20)
|
66
|
-
railties (3.0.20)
|
67
|
-
actionpack (= 3.0.20)
|
68
|
-
activesupport (= 3.0.20)
|
69
|
-
rake (>= 0.8.7)
|
70
|
-
rdoc (~> 3.4)
|
71
|
-
thor (~> 0.14.4)
|
72
|
-
rake (10.0.3)
|
73
|
-
rdoc (3.12)
|
74
|
-
json (~> 1.4)
|
75
|
-
rspec-core (2.12.2)
|
76
|
-
rspec-expectations (2.12.1)
|
77
|
-
diff-lcs (~> 1.1.3)
|
78
|
-
rspec-mocks (2.12.2)
|
79
|
-
rspec-rails (2.12.2)
|
80
|
-
actionpack (>= 3.0)
|
81
|
-
activesupport (>= 3.0)
|
82
|
-
railties (>= 3.0)
|
83
|
-
rspec-core (~> 2.12.0)
|
84
|
-
rspec-expectations (~> 2.12.0)
|
85
|
-
rspec-mocks (~> 2.12.0)
|
86
|
-
thor (0.14.6)
|
87
|
-
treetop (1.4.12)
|
88
|
-
polyglot
|
89
|
-
polyglot (>= 0.3.1)
|
90
|
-
tzinfo (0.3.35)
|
91
|
-
|
92
|
-
PLATFORMS
|
93
|
-
ruby
|
94
|
-
|
95
|
-
DEPENDENCIES
|
96
|
-
appraisal
|
97
|
-
bigcartel-currency-locales!
|
98
|
-
rails (~> 3.0.20)
|
99
|
-
rspec-rails (>= 2.0)
|
data/gemfiles/3.1.gemfile
DELETED
data/gemfiles/3.1.gemfile.lock
DELETED
@@ -1,110 +0,0 @@
|
|
1
|
-
PATH
|
2
|
-
remote: /Users/kreynolds/Documents/devel/bigcartel/currency-locales
|
3
|
-
specs:
|
4
|
-
bigcartel-currency-locales (1.3.0)
|
5
|
-
|
6
|
-
GEM
|
7
|
-
remote: http://rubygems.org/
|
8
|
-
specs:
|
9
|
-
actionmailer (3.1.10)
|
10
|
-
actionpack (= 3.1.10)
|
11
|
-
mail (~> 2.3.3)
|
12
|
-
actionpack (3.1.10)
|
13
|
-
activemodel (= 3.1.10)
|
14
|
-
activesupport (= 3.1.10)
|
15
|
-
builder (~> 3.0.0)
|
16
|
-
erubis (~> 2.7.0)
|
17
|
-
i18n (~> 0.6)
|
18
|
-
rack (~> 1.3.6)
|
19
|
-
rack-cache (~> 1.2)
|
20
|
-
rack-mount (~> 0.8.2)
|
21
|
-
rack-test (~> 0.6.1)
|
22
|
-
sprockets (~> 2.0.4)
|
23
|
-
activemodel (3.1.10)
|
24
|
-
activesupport (= 3.1.10)
|
25
|
-
builder (~> 3.0.0)
|
26
|
-
i18n (~> 0.6)
|
27
|
-
activerecord (3.1.10)
|
28
|
-
activemodel (= 3.1.10)
|
29
|
-
activesupport (= 3.1.10)
|
30
|
-
arel (~> 2.2.3)
|
31
|
-
tzinfo (~> 0.3.29)
|
32
|
-
activeresource (3.1.10)
|
33
|
-
activemodel (= 3.1.10)
|
34
|
-
activesupport (= 3.1.10)
|
35
|
-
activesupport (3.1.10)
|
36
|
-
multi_json (>= 1.0, < 1.3)
|
37
|
-
appraisal (0.5.1)
|
38
|
-
bundler
|
39
|
-
rake
|
40
|
-
arel (2.2.3)
|
41
|
-
builder (3.0.4)
|
42
|
-
diff-lcs (1.1.3)
|
43
|
-
erubis (2.7.0)
|
44
|
-
hike (1.2.1)
|
45
|
-
i18n (0.6.1)
|
46
|
-
json (1.7.6)
|
47
|
-
mail (2.3.3)
|
48
|
-
i18n (>= 0.4.0)
|
49
|
-
mime-types (~> 1.16)
|
50
|
-
treetop (~> 1.4.8)
|
51
|
-
mime-types (1.19)
|
52
|
-
multi_json (1.2.0)
|
53
|
-
polyglot (0.3.3)
|
54
|
-
rack (1.3.9)
|
55
|
-
rack-cache (1.2)
|
56
|
-
rack (>= 0.4)
|
57
|
-
rack-mount (0.8.3)
|
58
|
-
rack (>= 1.0.0)
|
59
|
-
rack-ssl (1.3.3)
|
60
|
-
rack
|
61
|
-
rack-test (0.6.2)
|
62
|
-
rack (>= 1.0)
|
63
|
-
rails (3.1.10)
|
64
|
-
actionmailer (= 3.1.10)
|
65
|
-
actionpack (= 3.1.10)
|
66
|
-
activerecord (= 3.1.10)
|
67
|
-
activeresource (= 3.1.10)
|
68
|
-
activesupport (= 3.1.10)
|
69
|
-
bundler (~> 1.0)
|
70
|
-
railties (= 3.1.10)
|
71
|
-
railties (3.1.10)
|
72
|
-
actionpack (= 3.1.10)
|
73
|
-
activesupport (= 3.1.10)
|
74
|
-
rack-ssl (~> 1.3.2)
|
75
|
-
rake (>= 0.8.7)
|
76
|
-
rdoc (~> 3.4)
|
77
|
-
thor (~> 0.14.6)
|
78
|
-
rake (10.0.3)
|
79
|
-
rdoc (3.12)
|
80
|
-
json (~> 1.4)
|
81
|
-
rspec-core (2.12.2)
|
82
|
-
rspec-expectations (2.12.1)
|
83
|
-
diff-lcs (~> 1.1.3)
|
84
|
-
rspec-mocks (2.12.2)
|
85
|
-
rspec-rails (2.12.2)
|
86
|
-
actionpack (>= 3.0)
|
87
|
-
activesupport (>= 3.0)
|
88
|
-
railties (>= 3.0)
|
89
|
-
rspec-core (~> 2.12.0)
|
90
|
-
rspec-expectations (~> 2.12.0)
|
91
|
-
rspec-mocks (~> 2.12.0)
|
92
|
-
sprockets (2.0.4)
|
93
|
-
hike (~> 1.2)
|
94
|
-
rack (~> 1.0)
|
95
|
-
tilt (~> 1.1, != 1.3.0)
|
96
|
-
thor (0.14.6)
|
97
|
-
tilt (1.3.3)
|
98
|
-
treetop (1.4.12)
|
99
|
-
polyglot
|
100
|
-
polyglot (>= 0.3.1)
|
101
|
-
tzinfo (0.3.35)
|
102
|
-
|
103
|
-
PLATFORMS
|
104
|
-
ruby
|
105
|
-
|
106
|
-
DEPENDENCIES
|
107
|
-
appraisal
|
108
|
-
bigcartel-currency-locales!
|
109
|
-
rails (~> 3.1.10)
|
110
|
-
rspec-rails (>= 2.0)
|
data/gemfiles/3.2.gemfile
DELETED
data/gemfiles/3.2.gemfile.lock
DELETED
@@ -1,109 +0,0 @@
|
|
1
|
-
PATH
|
2
|
-
remote: /Users/kreynolds/Documents/devel/bigcartel/currency-locales
|
3
|
-
specs:
|
4
|
-
bigcartel-currency-locales (1.3.0)
|
5
|
-
|
6
|
-
GEM
|
7
|
-
remote: http://rubygems.org/
|
8
|
-
specs:
|
9
|
-
actionmailer (3.2.11)
|
10
|
-
actionpack (= 3.2.11)
|
11
|
-
mail (~> 2.4.4)
|
12
|
-
actionpack (3.2.11)
|
13
|
-
activemodel (= 3.2.11)
|
14
|
-
activesupport (= 3.2.11)
|
15
|
-
builder (~> 3.0.0)
|
16
|
-
erubis (~> 2.7.0)
|
17
|
-
journey (~> 1.0.4)
|
18
|
-
rack (~> 1.4.0)
|
19
|
-
rack-cache (~> 1.2)
|
20
|
-
rack-test (~> 0.6.1)
|
21
|
-
sprockets (~> 2.2.1)
|
22
|
-
activemodel (3.2.11)
|
23
|
-
activesupport (= 3.2.11)
|
24
|
-
builder (~> 3.0.0)
|
25
|
-
activerecord (3.2.11)
|
26
|
-
activemodel (= 3.2.11)
|
27
|
-
activesupport (= 3.2.11)
|
28
|
-
arel (~> 3.0.2)
|
29
|
-
tzinfo (~> 0.3.29)
|
30
|
-
activeresource (3.2.11)
|
31
|
-
activemodel (= 3.2.11)
|
32
|
-
activesupport (= 3.2.11)
|
33
|
-
activesupport (3.2.11)
|
34
|
-
i18n (~> 0.6)
|
35
|
-
multi_json (~> 1.0)
|
36
|
-
appraisal (0.5.1)
|
37
|
-
bundler
|
38
|
-
rake
|
39
|
-
arel (3.0.2)
|
40
|
-
builder (3.0.4)
|
41
|
-
diff-lcs (1.1.3)
|
42
|
-
erubis (2.7.0)
|
43
|
-
hike (1.2.1)
|
44
|
-
i18n (0.6.1)
|
45
|
-
journey (1.0.4)
|
46
|
-
json (1.7.6)
|
47
|
-
mail (2.4.4)
|
48
|
-
i18n (>= 0.4.0)
|
49
|
-
mime-types (~> 1.16)
|
50
|
-
treetop (~> 1.4.8)
|
51
|
-
mime-types (1.19)
|
52
|
-
multi_json (1.5.0)
|
53
|
-
polyglot (0.3.3)
|
54
|
-
rack (1.4.4)
|
55
|
-
rack-cache (1.2)
|
56
|
-
rack (>= 0.4)
|
57
|
-
rack-ssl (1.3.3)
|
58
|
-
rack
|
59
|
-
rack-test (0.6.2)
|
60
|
-
rack (>= 1.0)
|
61
|
-
rails (3.2.11)
|
62
|
-
actionmailer (= 3.2.11)
|
63
|
-
actionpack (= 3.2.11)
|
64
|
-
activerecord (= 3.2.11)
|
65
|
-
activeresource (= 3.2.11)
|
66
|
-
activesupport (= 3.2.11)
|
67
|
-
bundler (~> 1.0)
|
68
|
-
railties (= 3.2.11)
|
69
|
-
railties (3.2.11)
|
70
|
-
actionpack (= 3.2.11)
|
71
|
-
activesupport (= 3.2.11)
|
72
|
-
rack-ssl (~> 1.3.2)
|
73
|
-
rake (>= 0.8.7)
|
74
|
-
rdoc (~> 3.4)
|
75
|
-
thor (>= 0.14.6, < 2.0)
|
76
|
-
rake (10.0.3)
|
77
|
-
rdoc (3.12)
|
78
|
-
json (~> 1.4)
|
79
|
-
rspec-core (2.12.2)
|
80
|
-
rspec-expectations (2.12.1)
|
81
|
-
diff-lcs (~> 1.1.3)
|
82
|
-
rspec-mocks (2.12.2)
|
83
|
-
rspec-rails (2.12.2)
|
84
|
-
actionpack (>= 3.0)
|
85
|
-
activesupport (>= 3.0)
|
86
|
-
railties (>= 3.0)
|
87
|
-
rspec-core (~> 2.12.0)
|
88
|
-
rspec-expectations (~> 2.12.0)
|
89
|
-
rspec-mocks (~> 2.12.0)
|
90
|
-
sprockets (2.2.2)
|
91
|
-
hike (~> 1.2)
|
92
|
-
multi_json (~> 1.0)
|
93
|
-
rack (~> 1.0)
|
94
|
-
tilt (~> 1.1, != 1.3.0)
|
95
|
-
thor (0.17.0)
|
96
|
-
tilt (1.3.3)
|
97
|
-
treetop (1.4.12)
|
98
|
-
polyglot
|
99
|
-
polyglot (>= 0.3.1)
|
100
|
-
tzinfo (0.3.35)
|
101
|
-
|
102
|
-
PLATFORMS
|
103
|
-
ruby
|
104
|
-
|
105
|
-
DEPENDENCIES
|
106
|
-
appraisal
|
107
|
-
bigcartel-currency-locales!
|
108
|
-
rails (~> 3.2.11)
|
109
|
-
rspec-rails (>= 2.0)
|