bigcartel-currency-locales 2.0.0 → 2.2.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (42) hide show
  1. checksums.yaml +4 -4
  2. data/.github/workflows/test.yml +12 -11
  3. data/Appraisals +10 -2
  4. data/Rakefile +1 -6
  5. data/bigcartel-currency-locales.gemspec +2 -2
  6. data/gemfiles/rails_6.1.gemfile +7 -0
  7. data/gemfiles/rails_6.1.gemfile.lock +184 -0
  8. data/gemfiles/rails_6.gemfile +1 -1
  9. data/gemfiles/rails_6.gemfile.lock +6 -4
  10. data/gemfiles/rails_7.1.gemfile +7 -0
  11. data/gemfiles/rails_7.1.gemfile.lock +216 -0
  12. data/gemfiles/rails_7.gemfile +1 -1
  13. data/gemfiles/rails_7.gemfile.lock +69 -102
  14. data/lib/currency-locales/locales/ae.yml +26 -0
  15. data/lib/currency-locales/locales/bg.yml +22 -0
  16. data/lib/currency-locales/locales/cs.yml +0 -0
  17. data/lib/currency-locales/locales/da.yml +1 -1
  18. data/lib/currency-locales/locales/en-AU.yml +1 -1
  19. data/lib/currency-locales/locales/en-GB.yml +1 -1
  20. data/lib/currency-locales/locales/en-IN.yml +2 -2
  21. data/lib/currency-locales/locales/en-PH.yml +1 -2
  22. data/lib/currency-locales/locales/en-US.yml +1 -1
  23. data/lib/currency-locales/locales/es-MX.yml +1 -1
  24. data/lib/currency-locales/locales/eu.yml +0 -0
  25. data/lib/currency-locales/locales/gsw-CH.yml +1 -1
  26. data/lib/currency-locales/locales/hr.yml +22 -0
  27. data/lib/currency-locales/locales/hu.yml +24 -24
  28. data/lib/currency-locales/locales/il.yml +0 -0
  29. data/lib/currency-locales/locales/ja.yml +1 -1
  30. data/lib/currency-locales/locales/ms-MY.yml +1 -1
  31. data/lib/currency-locales/locales/nb.yml +10 -6
  32. data/lib/currency-locales/locales/pl.yml +1 -2
  33. data/lib/currency-locales/locales/pt-BR.yml +1 -1
  34. data/lib/currency-locales/locales/ro.yml +26 -0
  35. data/lib/currency-locales/locales/sv-SE.yml +2 -2
  36. data/lib/currency-locales/locales/th.yml +1 -1
  37. data/lib/currency-locales/locales/tr.yml +1 -1
  38. data/lib/currency-locales/locales/zh-TW.yml +1 -1
  39. data/lib/currency-locales/version.rb +1 -1
  40. data/spec/integration/currency_locales_spec.rb +51 -422
  41. data/spec/spec_helper.rb +1 -1
  42. metadata +16 -8
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 68f29131a6b68c182695399e362d5ab4d40accbdf598d174f0c571972929e266
4
- data.tar.gz: 0772e76140d3c9e375485cc217af9ebe70eab7a297212b308147fc17f7e91cff
3
+ metadata.gz: 80b590c0fbfc2c48e17a3b116eed417fd5fbfe86e30efc1b0ecaf40df83cee6b
4
+ data.tar.gz: 77eb84f1dcf0a793095b92982790fbf39b3e772b34759b613cda1572e1020bc0
5
5
  SHA512:
6
- metadata.gz: 975f141898d634e9ccc62e8320215b795728e94c998c4277115605faa7173fa7786816ad5acaec26edfaaa53253712cb7313f4c338329986a77bfb0455a8719e
7
- data.tar.gz: d746f57cb082cbc28c57e66da4f054266833d9fa74acff8d677691f1ccbbae106868b1ec7dfa1dccfbaae849b709245bfe671bed574b047b801bfd900c0ddaad
6
+ metadata.gz: ab7f4fe6b3e610a053b07d69599979a5841aabe8a6d5ba7db7c9df06af40f1eada9ffdc1f29bf041d784d79e1f67c89d4c3a576c22485464db617f5412533094
7
+ data.tar.gz: ca0739770ca351efaea1bacafc4d57803f76b8d935a421ec5cd8b0e1a0645fdfb34480ef15b795315f2020de7815c81867b8907d678aa977353f7a217491a5a5
@@ -1,19 +1,20 @@
1
1
  name: Test
2
-
3
- on:
4
- push:
5
- branches:
6
- - master
7
- pull_request:
8
- branches:
9
- - master
2
+ on: [push, pull_request]
10
3
 
11
4
  jobs:
12
5
  test:
13
6
  runs-on: ubuntu-latest
7
+ strategy:
8
+ matrix:
9
+ gemfile:
10
+ - rails_6
11
+ - rails_6.1
12
+ - rails_7
13
+ - rails_7.1
14
+ env:
15
+ BUNDLE_GEMFILE: ${{ github.workspace }}/gemfiles/${{ matrix.gemfile }}.gemfile
14
16
  steps:
15
17
  - uses: actions/checkout@v4
16
18
  - uses: ruby/setup-ruby@v1
17
- - run: bundle install
18
- - run: bundle exec appraisal install
19
- - run: bundle exec appraisal rake
19
+ - run: "bundle install"
20
+ - run: "bundle exec rake"
data/Appraisals CHANGED
@@ -1,7 +1,15 @@
1
+ appraise "rails-7.1" do
2
+ gem "rails", "~> 7.1.0"
3
+ end
4
+
1
5
  appraise "rails-7" do
2
- gem "rails", "~> 7"
6
+ gem "rails", "~> 7.0.0"
7
+ end
8
+
9
+ appraise "rails-6.1" do
10
+ gem "rails", "~> 6.1.0"
3
11
  end
4
12
 
5
13
  appraise "rails-6" do
6
- gem "rails", "~> 6"
14
+ gem "rails", "~> 6.0.0"
7
15
  end
data/Rakefile CHANGED
@@ -2,12 +2,7 @@
2
2
  require "bundler/gem_tasks"
3
3
 
4
4
  require 'rake'
5
- # We have different tasks for rspec-rails between rails 2 and 3
6
- begin
7
- require 'rspec/core/rake_task'
8
- rescue LoadError
9
- require 'spec/rake/spectask'
10
- end
5
+ require 'rspec/core/rake_task'
11
6
 
12
7
  require 'appraisal'
13
8
 
@@ -16,6 +16,6 @@ Gem::Specification.new do |s|
16
16
  s.require_path = 'lib'
17
17
 
18
18
  s.add_development_dependency "appraisal"
19
- s.add_development_dependency "rails", "= 6.0.6.1"
20
- s.add_development_dependency "rspec-rails", ">= 3.0"
19
+ s.add_development_dependency "rails"
20
+ s.add_development_dependency "rspec-rails"
21
21
  end
@@ -0,0 +1,7 @@
1
+ # This file was generated by Appraisal
2
+
3
+ source "http://rubygems.org"
4
+
5
+ gem "rails", "~> 6.1.0"
6
+
7
+ gemspec path: "../"
@@ -0,0 +1,184 @@
1
+ PATH
2
+ remote: ..
3
+ specs:
4
+ bigcartel-currency-locales (2.0.0)
5
+
6
+ GEM
7
+ remote: http://rubygems.org/
8
+ specs:
9
+ actioncable (6.1.7.6)
10
+ actionpack (= 6.1.7.6)
11
+ activesupport (= 6.1.7.6)
12
+ nio4r (~> 2.0)
13
+ websocket-driver (>= 0.6.1)
14
+ actionmailbox (6.1.7.6)
15
+ actionpack (= 6.1.7.6)
16
+ activejob (= 6.1.7.6)
17
+ activerecord (= 6.1.7.6)
18
+ activestorage (= 6.1.7.6)
19
+ activesupport (= 6.1.7.6)
20
+ mail (>= 2.7.1)
21
+ actionmailer (6.1.7.6)
22
+ actionpack (= 6.1.7.6)
23
+ actionview (= 6.1.7.6)
24
+ activejob (= 6.1.7.6)
25
+ activesupport (= 6.1.7.6)
26
+ mail (~> 2.5, >= 2.5.4)
27
+ rails-dom-testing (~> 2.0)
28
+ actionpack (6.1.7.6)
29
+ actionview (= 6.1.7.6)
30
+ activesupport (= 6.1.7.6)
31
+ rack (~> 2.0, >= 2.0.9)
32
+ rack-test (>= 0.6.3)
33
+ rails-dom-testing (~> 2.0)
34
+ rails-html-sanitizer (~> 1.0, >= 1.2.0)
35
+ actiontext (6.1.7.6)
36
+ actionpack (= 6.1.7.6)
37
+ activerecord (= 6.1.7.6)
38
+ activestorage (= 6.1.7.6)
39
+ activesupport (= 6.1.7.6)
40
+ nokogiri (>= 1.8.5)
41
+ actionview (6.1.7.6)
42
+ activesupport (= 6.1.7.6)
43
+ builder (~> 3.1)
44
+ erubi (~> 1.4)
45
+ rails-dom-testing (~> 2.0)
46
+ rails-html-sanitizer (~> 1.1, >= 1.2.0)
47
+ activejob (6.1.7.6)
48
+ activesupport (= 6.1.7.6)
49
+ globalid (>= 0.3.6)
50
+ activemodel (6.1.7.6)
51
+ activesupport (= 6.1.7.6)
52
+ activerecord (6.1.7.6)
53
+ activemodel (= 6.1.7.6)
54
+ activesupport (= 6.1.7.6)
55
+ activestorage (6.1.7.6)
56
+ actionpack (= 6.1.7.6)
57
+ activejob (= 6.1.7.6)
58
+ activerecord (= 6.1.7.6)
59
+ activesupport (= 6.1.7.6)
60
+ marcel (~> 1.0)
61
+ mini_mime (>= 1.1.0)
62
+ activesupport (6.1.7.6)
63
+ concurrent-ruby (~> 1.0, >= 1.0.2)
64
+ i18n (>= 1.6, < 2)
65
+ minitest (>= 5.1)
66
+ tzinfo (~> 2.0)
67
+ zeitwerk (~> 2.3)
68
+ appraisal (2.5.0)
69
+ bundler
70
+ rake
71
+ thor (>= 0.14.0)
72
+ builder (3.2.4)
73
+ concurrent-ruby (1.2.3)
74
+ crass (1.0.6)
75
+ date (3.3.4)
76
+ diff-lcs (1.5.0)
77
+ erubi (1.12.0)
78
+ globalid (1.2.1)
79
+ activesupport (>= 6.1)
80
+ i18n (1.14.1)
81
+ concurrent-ruby (~> 1.0)
82
+ loofah (2.22.0)
83
+ crass (~> 1.0.2)
84
+ nokogiri (>= 1.12.0)
85
+ mail (2.8.1)
86
+ mini_mime (>= 0.1.1)
87
+ net-imap
88
+ net-pop
89
+ net-smtp
90
+ marcel (1.0.2)
91
+ method_source (1.0.0)
92
+ mini_mime (1.1.5)
93
+ mini_portile2 (2.8.5)
94
+ minitest (5.21.2)
95
+ net-imap (0.4.9.1)
96
+ date
97
+ net-protocol
98
+ net-pop (0.1.2)
99
+ net-protocol
100
+ net-protocol (0.2.2)
101
+ timeout
102
+ net-smtp (0.4.0.1)
103
+ net-protocol
104
+ nio4r (2.7.0)
105
+ nokogiri (1.15.5)
106
+ mini_portile2 (~> 2.8.2)
107
+ racc (~> 1.4)
108
+ racc (1.7.3)
109
+ rack (2.2.8)
110
+ rack-test (2.1.0)
111
+ rack (>= 1.3)
112
+ rails (6.1.7.6)
113
+ actioncable (= 6.1.7.6)
114
+ actionmailbox (= 6.1.7.6)
115
+ actionmailer (= 6.1.7.6)
116
+ actionpack (= 6.1.7.6)
117
+ actiontext (= 6.1.7.6)
118
+ actionview (= 6.1.7.6)
119
+ activejob (= 6.1.7.6)
120
+ activemodel (= 6.1.7.6)
121
+ activerecord (= 6.1.7.6)
122
+ activestorage (= 6.1.7.6)
123
+ activesupport (= 6.1.7.6)
124
+ bundler (>= 1.15.0)
125
+ railties (= 6.1.7.6)
126
+ sprockets-rails (>= 2.0.0)
127
+ rails-dom-testing (2.2.0)
128
+ activesupport (>= 5.0.0)
129
+ minitest
130
+ nokogiri (>= 1.6)
131
+ rails-html-sanitizer (1.6.0)
132
+ loofah (~> 2.21)
133
+ nokogiri (~> 1.14)
134
+ railties (6.1.7.6)
135
+ actionpack (= 6.1.7.6)
136
+ activesupport (= 6.1.7.6)
137
+ method_source
138
+ rake (>= 12.2)
139
+ thor (~> 1.0)
140
+ rake (13.1.0)
141
+ rspec-core (3.12.2)
142
+ rspec-support (~> 3.12.0)
143
+ rspec-expectations (3.12.3)
144
+ diff-lcs (>= 1.2.0, < 2.0)
145
+ rspec-support (~> 3.12.0)
146
+ rspec-mocks (3.12.6)
147
+ diff-lcs (>= 1.2.0, < 2.0)
148
+ rspec-support (~> 3.12.0)
149
+ rspec-rails (6.1.0)
150
+ actionpack (>= 6.1)
151
+ activesupport (>= 6.1)
152
+ railties (>= 6.1)
153
+ rspec-core (~> 3.12)
154
+ rspec-expectations (~> 3.12)
155
+ rspec-mocks (~> 3.12)
156
+ rspec-support (~> 3.12)
157
+ rspec-support (3.12.1)
158
+ sprockets (4.2.1)
159
+ concurrent-ruby (~> 1.0)
160
+ rack (>= 2.2.4, < 4)
161
+ sprockets-rails (3.4.2)
162
+ actionpack (>= 5.2)
163
+ activesupport (>= 5.2)
164
+ sprockets (>= 3.0.0)
165
+ thor (1.3.0)
166
+ timeout (0.4.1)
167
+ tzinfo (2.0.6)
168
+ concurrent-ruby (~> 1.0)
169
+ websocket-driver (0.7.6)
170
+ websocket-extensions (>= 0.1.0)
171
+ websocket-extensions (0.1.5)
172
+ zeitwerk (2.6.12)
173
+
174
+ PLATFORMS
175
+ ruby
176
+
177
+ DEPENDENCIES
178
+ appraisal
179
+ bigcartel-currency-locales!
180
+ rails (~> 6.1.0)
181
+ rspec-rails
182
+
183
+ BUNDLED WITH
184
+ 2.1.4
@@ -2,6 +2,6 @@
2
2
 
3
3
  source "http://rubygems.org"
4
4
 
5
- gem "rails", "~> 6"
5
+ gem "rails", "~> 6.0.0"
6
6
 
7
7
  gemspec path: "../"
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: ..
3
3
  specs:
4
- bigcartel-currency-locales (1.6.0)
4
+ bigcartel-currency-locales (2.0.0)
5
5
 
6
6
  GEM
7
7
  remote: http://rubygems.org/
@@ -86,6 +86,7 @@ GEM
86
86
  marcel (1.0.2)
87
87
  method_source (1.0.0)
88
88
  mini_mime (1.1.5)
89
+ mini_portile2 (2.8.5)
89
90
  minitest (5.21.2)
90
91
  net-imap (0.4.9.1)
91
92
  date
@@ -97,7 +98,8 @@ GEM
97
98
  net-smtp (0.4.0.1)
98
99
  net-protocol
99
100
  nio4r (2.7.0)
100
- nokogiri (1.15.5-arm64-darwin)
101
+ nokogiri (1.15.5)
102
+ mini_portile2 (~> 2.8.2)
101
103
  racc (~> 1.4)
102
104
  racc (1.7.3)
103
105
  rack (2.2.8)
@@ -172,8 +174,8 @@ PLATFORMS
172
174
  DEPENDENCIES
173
175
  appraisal
174
176
  bigcartel-currency-locales!
175
- rails (~> 6)
176
- rspec-rails (>= 3.0)
177
+ rails (~> 6.0.0)
178
+ rspec-rails
177
179
 
178
180
  BUNDLED WITH
179
181
  2.1.4
@@ -0,0 +1,7 @@
1
+ # This file was generated by Appraisal
2
+
3
+ source "http://rubygems.org"
4
+
5
+ gem "rails", "~> 7.1.0"
6
+
7
+ gemspec path: "../"
@@ -0,0 +1,216 @@
1
+ PATH
2
+ remote: ..
3
+ specs:
4
+ bigcartel-currency-locales (2.0.0)
5
+
6
+ GEM
7
+ remote: http://rubygems.org/
8
+ specs:
9
+ actioncable (7.1.3)
10
+ actionpack (= 7.1.3)
11
+ activesupport (= 7.1.3)
12
+ nio4r (~> 2.0)
13
+ websocket-driver (>= 0.6.1)
14
+ zeitwerk (~> 2.6)
15
+ actionmailbox (7.1.3)
16
+ actionpack (= 7.1.3)
17
+ activejob (= 7.1.3)
18
+ activerecord (= 7.1.3)
19
+ activestorage (= 7.1.3)
20
+ activesupport (= 7.1.3)
21
+ mail (>= 2.7.1)
22
+ net-imap
23
+ net-pop
24
+ net-smtp
25
+ actionmailer (7.1.3)
26
+ actionpack (= 7.1.3)
27
+ actionview (= 7.1.3)
28
+ activejob (= 7.1.3)
29
+ activesupport (= 7.1.3)
30
+ mail (~> 2.5, >= 2.5.4)
31
+ net-imap
32
+ net-pop
33
+ net-smtp
34
+ rails-dom-testing (~> 2.2)
35
+ actionpack (7.1.3)
36
+ actionview (= 7.1.3)
37
+ activesupport (= 7.1.3)
38
+ nokogiri (>= 1.8.5)
39
+ racc
40
+ rack (>= 2.2.4)
41
+ rack-session (>= 1.0.1)
42
+ rack-test (>= 0.6.3)
43
+ rails-dom-testing (~> 2.2)
44
+ rails-html-sanitizer (~> 1.6)
45
+ actiontext (7.1.3)
46
+ actionpack (= 7.1.3)
47
+ activerecord (= 7.1.3)
48
+ activestorage (= 7.1.3)
49
+ activesupport (= 7.1.3)
50
+ globalid (>= 0.6.0)
51
+ nokogiri (>= 1.8.5)
52
+ actionview (7.1.3)
53
+ activesupport (= 7.1.3)
54
+ builder (~> 3.1)
55
+ erubi (~> 1.11)
56
+ rails-dom-testing (~> 2.2)
57
+ rails-html-sanitizer (~> 1.6)
58
+ activejob (7.1.3)
59
+ activesupport (= 7.1.3)
60
+ globalid (>= 0.3.6)
61
+ activemodel (7.1.3)
62
+ activesupport (= 7.1.3)
63
+ activerecord (7.1.3)
64
+ activemodel (= 7.1.3)
65
+ activesupport (= 7.1.3)
66
+ timeout (>= 0.4.0)
67
+ activestorage (7.1.3)
68
+ actionpack (= 7.1.3)
69
+ activejob (= 7.1.3)
70
+ activerecord (= 7.1.3)
71
+ activesupport (= 7.1.3)
72
+ marcel (~> 1.0)
73
+ activesupport (7.1.3)
74
+ base64
75
+ bigdecimal
76
+ concurrent-ruby (~> 1.0, >= 1.0.2)
77
+ connection_pool (>= 2.2.5)
78
+ drb
79
+ i18n (>= 1.6, < 2)
80
+ minitest (>= 5.1)
81
+ mutex_m
82
+ tzinfo (~> 2.0)
83
+ appraisal (2.5.0)
84
+ bundler
85
+ rake
86
+ thor (>= 0.14.0)
87
+ base64 (0.2.0)
88
+ bigdecimal (3.1.6)
89
+ builder (3.2.4)
90
+ concurrent-ruby (1.2.3)
91
+ connection_pool (2.4.1)
92
+ crass (1.0.6)
93
+ date (3.3.4)
94
+ diff-lcs (1.5.0)
95
+ drb (2.2.0)
96
+ ruby2_keywords
97
+ erubi (1.12.0)
98
+ globalid (1.2.1)
99
+ activesupport (>= 6.1)
100
+ i18n (1.14.1)
101
+ concurrent-ruby (~> 1.0)
102
+ io-console (0.7.2)
103
+ irb (1.11.1)
104
+ rdoc
105
+ reline (>= 0.4.2)
106
+ loofah (2.22.0)
107
+ crass (~> 1.0.2)
108
+ nokogiri (>= 1.12.0)
109
+ mail (2.8.1)
110
+ mini_mime (>= 0.1.1)
111
+ net-imap
112
+ net-pop
113
+ net-smtp
114
+ marcel (1.0.2)
115
+ mini_mime (1.1.5)
116
+ mini_portile2 (2.8.5)
117
+ minitest (5.21.2)
118
+ mutex_m (0.2.0)
119
+ net-imap (0.4.9.1)
120
+ date
121
+ net-protocol
122
+ net-pop (0.1.2)
123
+ net-protocol
124
+ net-protocol (0.2.2)
125
+ timeout
126
+ net-smtp (0.4.0.1)
127
+ net-protocol
128
+ nio4r (2.7.0)
129
+ nokogiri (1.15.5)
130
+ mini_portile2 (~> 2.8.2)
131
+ racc (~> 1.4)
132
+ psych (5.1.2)
133
+ stringio
134
+ racc (1.7.3)
135
+ rack (3.0.8)
136
+ rack-session (2.0.0)
137
+ rack (>= 3.0.0)
138
+ rack-test (2.1.0)
139
+ rack (>= 1.3)
140
+ rackup (2.1.0)
141
+ rack (>= 3)
142
+ webrick (~> 1.8)
143
+ rails (7.1.3)
144
+ actioncable (= 7.1.3)
145
+ actionmailbox (= 7.1.3)
146
+ actionmailer (= 7.1.3)
147
+ actionpack (= 7.1.3)
148
+ actiontext (= 7.1.3)
149
+ actionview (= 7.1.3)
150
+ activejob (= 7.1.3)
151
+ activemodel (= 7.1.3)
152
+ activerecord (= 7.1.3)
153
+ activestorage (= 7.1.3)
154
+ activesupport (= 7.1.3)
155
+ bundler (>= 1.15.0)
156
+ railties (= 7.1.3)
157
+ rails-dom-testing (2.2.0)
158
+ activesupport (>= 5.0.0)
159
+ minitest
160
+ nokogiri (>= 1.6)
161
+ rails-html-sanitizer (1.6.0)
162
+ loofah (~> 2.21)
163
+ nokogiri (~> 1.14)
164
+ railties (7.1.3)
165
+ actionpack (= 7.1.3)
166
+ activesupport (= 7.1.3)
167
+ irb
168
+ rackup (>= 1.0.0)
169
+ rake (>= 12.2)
170
+ thor (~> 1.0, >= 1.2.2)
171
+ zeitwerk (~> 2.6)
172
+ rake (13.1.0)
173
+ rdoc (6.6.2)
174
+ psych (>= 4.0.0)
175
+ reline (0.4.2)
176
+ io-console (~> 0.5)
177
+ rspec-core (3.12.2)
178
+ rspec-support (~> 3.12.0)
179
+ rspec-expectations (3.12.3)
180
+ diff-lcs (>= 1.2.0, < 2.0)
181
+ rspec-support (~> 3.12.0)
182
+ rspec-mocks (3.12.6)
183
+ diff-lcs (>= 1.2.0, < 2.0)
184
+ rspec-support (~> 3.12.0)
185
+ rspec-rails (6.1.0)
186
+ actionpack (>= 6.1)
187
+ activesupport (>= 6.1)
188
+ railties (>= 6.1)
189
+ rspec-core (~> 3.12)
190
+ rspec-expectations (~> 3.12)
191
+ rspec-mocks (~> 3.12)
192
+ rspec-support (~> 3.12)
193
+ rspec-support (3.12.1)
194
+ ruby2_keywords (0.0.5)
195
+ stringio (3.1.0)
196
+ thor (1.3.0)
197
+ timeout (0.4.1)
198
+ tzinfo (2.0.6)
199
+ concurrent-ruby (~> 1.0)
200
+ webrick (1.8.1)
201
+ websocket-driver (0.7.6)
202
+ websocket-extensions (>= 0.1.0)
203
+ websocket-extensions (0.1.5)
204
+ zeitwerk (2.6.12)
205
+
206
+ PLATFORMS
207
+ ruby
208
+
209
+ DEPENDENCIES
210
+ appraisal
211
+ bigcartel-currency-locales!
212
+ rails (~> 7.1.0)
213
+ rspec-rails
214
+
215
+ BUNDLED WITH
216
+ 2.1.4
@@ -2,6 +2,6 @@
2
2
 
3
3
  source "http://rubygems.org"
4
4
 
5
- gem "rails", "~> 7"
5
+ gem "rails", "~> 7.0.0"
6
6
 
7
7
  gemspec path: "../"