curly-templates 3.0.0 → 3.2.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: edc9f2e7c8244a74ce43a4305cd33a8328f3e85b2a6d9a43c5a39b34470c6597
4
- data.tar.gz: 71e670e239dd23b5794f375c7e597fc4675d6a6eb86f3542a270b982ef92b09a
3
+ metadata.gz: 2ce2124861d1263104f16419e5701d875ed1415c5fca7917cd55e04ec0e0266b
4
+ data.tar.gz: 995dd338c40f6ddda78a0aa07ae606b0ff18f623b50c60f36e16f64ad9776b2e
5
5
  SHA512:
6
- metadata.gz: c1d2a5e354bf7974309e9531e7b0bdbab02f267c77cf80d92c58313e699b011cc00a3cf7a33634f985e3de7d24b9362f0a897efe7a41d27107f0f46575010dc3
7
- data.tar.gz: c4796fb050c613eb9133a4dee0dd15fe94726392feb23add6970beab1299486c5625f0e22b1bb33ae6c484ea71ed9fff317e5731283b8eced4bb7f426e2c4d89
6
+ metadata.gz: 81cfe89c64f251345a22b37069c385839c3d2a0ca352bcc19dd5f745778507d43b8d79b7ce03e4964e69ba9696b81814f58b0bb2ba4465078b2f0666851431d1
7
+ data.tar.gz: d995b8a8aafc92d241187ee74c14b3bc9015af37fae4f4817bbaf7ab1017ceedccda87365f638055a14cc865c850c34a9379ee44faadf72ae401a8a76be150dd
@@ -4,24 +4,44 @@ on: push
4
4
 
5
5
  jobs:
6
6
  specs:
7
+ name: Ruby ${{ matrix.ruby }} using ${{ matrix.gemfile }}
7
8
  runs-on: ubuntu-latest
9
+ env:
10
+ BUNDLE_GEMFILE: gemfiles/${{ matrix.gemfile }}.gemfile
8
11
  strategy:
9
12
  fail-fast: false
10
13
  matrix:
14
+ ruby:
15
+ - '2.7'
16
+ - '3.0'
17
+ - '3.1'
18
+ - '3.2'
11
19
  gemfile:
12
- - rails4.2
13
- - rails5.1
14
- - rails5.2
15
- - rails6.0
16
20
  - rails6.1
17
- env:
18
- BUNDLE_GEMFILE: gemfiles/${{ matrix.gemfile }}.gemfile
21
+ - rails7.0
22
+ include:
23
+ - {ruby: '2.7', gemfile: rails5.1}
24
+ - {ruby: '2.7', gemfile: rails5.2}
25
+ - {ruby: '2.7', gemfile: rails6.0}
19
26
  steps:
20
- - uses: zendesk/checkout@v2
21
- - name: Set up Ruby
22
- uses: zendesk/setup-ruby@v1
27
+ - uses: zendesk/checkout@v3
28
+ - uses: zendesk/setup-ruby@v1
23
29
  with:
24
- ruby-version: 2.6
30
+ ruby-version: ${{ matrix.ruby }}
25
31
  bundler-cache: true
26
- - run: bundle install
27
32
  - run: bundle exec rspec
33
+
34
+ specs_successful:
35
+ name: Specs passing?
36
+ needs: specs
37
+ if: always()
38
+ runs-on: ubuntu-latest
39
+ steps:
40
+ - run: |
41
+ if ${{ needs.specs.result == 'success' }}
42
+ then
43
+ echo "All specs pass"
44
+ else
45
+ echo "Some specs failed"
46
+ false
47
+ fi
@@ -0,0 +1,12 @@
1
+ name: Publish Gem
2
+
3
+ on:
4
+ push:
5
+ tags: v*
6
+
7
+ jobs:
8
+ call-workflow:
9
+ uses: zendesk/gw/.github/workflows/ruby-gem-publication.yml@main
10
+ secrets:
11
+ RUBY_GEMS_API_KEY: ${{ secrets.RUBY_GEMS_API_KEY }}
12
+ RUBY_GEMS_TOTP_DEVICE: ${{ secrets.RUBY_GEMS_TOTP_DEVICE }}
data/CHANGELOG.md CHANGED
@@ -1,5 +1,16 @@
1
1
  ### Unreleased
2
2
 
3
+ ### Curly 3.2.0 (June 1, 2023)
4
+
5
+ * Add support for Ruby 3.2
6
+ * Drop support for Ruby 2.6
7
+ * Drop support for Rails 4.2
8
+
9
+ ### Curly 3.1.0 (November, 21, 2022)
10
+
11
+ * Add support for Ruby 3.0 & 3.1
12
+ * Add support for Rails 7.0
13
+
3
14
  ### Curly 3.0.0 (January 19, 2021)
4
15
 
5
16
  * Add support for Rails 6.0 and 6.1.
@@ -20,12 +20,12 @@ Gem::Specification.new do |s|
20
20
 
21
21
  s.rdoc_options = ["--charset=UTF-8"]
22
22
 
23
- s.add_dependency("actionpack", [">= 4.2", "< 6.2"])
23
+ s.add_dependency("actionpack", [">= 5.1", "< 7.1"])
24
+ s.add_dependency("sorted_set")
24
25
 
25
- s.add_development_dependency("railties", [">= 4.2", "< 6.2"])
26
+ s.add_development_dependency("railties", [">= 5.1", "< 7.1"])
26
27
  s.add_development_dependency("rake")
27
28
  s.add_development_dependency("rspec", ">= 3")
28
- s.add_development_dependency("rspec_junit_formatter")
29
29
 
30
30
  s.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(perf|spec)/}) }
31
31
  s.test_files = s.files.select { |path| path =~ /^spec\/.*_spec\.rb/ }
@@ -1,8 +1,9 @@
1
1
  PATH
2
2
  remote: ..
3
3
  specs:
4
- curly-templates (3.0.0)
5
- actionpack (>= 4.2, < 6.2)
4
+ curly-templates (3.2.0)
5
+ actionpack (>= 5.1, < 7.1)
6
+ sorted_set
6
7
 
7
8
  GEM
8
9
  remote: https://rubygems.org/
@@ -45,37 +46,41 @@ GEM
45
46
  minitest (~> 5.1)
46
47
  tzinfo (~> 1.1)
47
48
  arel (8.0.0)
48
- benchmark-ips (2.8.4)
49
+ benchmark-ips (2.10.0)
49
50
  builder (3.2.4)
50
- concurrent-ruby (1.1.7)
51
+ concurrent-ruby (1.1.10)
51
52
  crass (1.0.6)
52
- diff-lcs (1.4.4)
53
- erubi (1.10.0)
53
+ diff-lcs (1.5.0)
54
+ erubi (1.11.0)
54
55
  genspec (0.3.2)
55
56
  rspec (>= 2, < 4)
56
57
  thor
57
- github-markup (3.0.5)
58
- globalid (0.4.2)
59
- activesupport (>= 4.2.0)
60
- i18n (1.8.7)
58
+ github-markup (4.0.1)
59
+ globalid (1.0.0)
60
+ activesupport (>= 5.0)
61
+ i18n (1.12.0)
61
62
  concurrent-ruby (~> 1.0)
62
- loofah (2.9.0)
63
+ loofah (2.19.0)
63
64
  crass (~> 1.0.2)
64
65
  nokogiri (>= 1.5.9)
65
66
  mail (2.7.1)
66
67
  mini_mime (>= 0.1.1)
67
68
  method_source (1.0.0)
68
- mini_mime (1.0.2)
69
- minitest (5.14.3)
70
- nio4r (2.5.4)
71
- nokogiri (1.11.1-x86_64-darwin)
69
+ mini_mime (1.1.2)
70
+ mini_portile2 (2.8.0)
71
+ minitest (5.16.3)
72
+ nio4r (2.5.8)
73
+ nokogiri (1.13.9)
74
+ mini_portile2 (~> 2.8.0)
75
+ racc (~> 1.4)
76
+ nokogiri (1.13.9-x86_64-darwin)
72
77
  racc (~> 1.4)
73
- nokogiri (1.11.1-x86_64-linux)
78
+ nokogiri (1.13.9-x86_64-linux)
74
79
  racc (~> 1.4)
75
- racc (1.5.2)
76
- rack (2.2.3)
77
- rack-test (1.1.0)
78
- rack (>= 1.0, < 3)
80
+ racc (1.6.0)
81
+ rack (2.2.4)
82
+ rack-test (2.0.2)
83
+ rack (>= 1.3)
79
84
  rails (5.1.7)
80
85
  actioncable (= 5.1.7)
81
86
  actionmailer (= 5.1.7)
@@ -91,7 +96,7 @@ GEM
91
96
  rails-dom-testing (2.0.3)
92
97
  activesupport (>= 4.2.0)
93
98
  nokogiri (>= 1.6)
94
- rails-html-sanitizer (1.3.0)
99
+ rails-html-sanitizer (1.4.3)
95
100
  loofah (~> 2.3)
96
101
  railties (5.1.7)
97
102
  actionpack (= 5.1.7)
@@ -99,21 +104,22 @@ GEM
99
104
  method_source
100
105
  rake (>= 0.8.7)
101
106
  thor (>= 0.18.1, < 2.0)
102
- rake (13.0.3)
107
+ rake (13.0.6)
108
+ rbtree (0.4.5)
103
109
  redcarpet (3.5.1)
104
- rspec (3.10.0)
105
- rspec-core (~> 3.10.0)
106
- rspec-expectations (~> 3.10.0)
107
- rspec-mocks (~> 3.10.0)
108
- rspec-core (3.10.1)
109
- rspec-support (~> 3.10.0)
110
- rspec-expectations (3.10.1)
110
+ rspec (3.12.0)
111
+ rspec-core (~> 3.12.0)
112
+ rspec-expectations (~> 3.12.0)
113
+ rspec-mocks (~> 3.12.0)
114
+ rspec-core (3.12.0)
115
+ rspec-support (~> 3.12.0)
116
+ rspec-expectations (3.12.0)
111
117
  diff-lcs (>= 1.2.0, < 2.0)
112
- rspec-support (~> 3.10.0)
113
- rspec-mocks (3.10.1)
118
+ rspec-support (~> 3.12.0)
119
+ rspec-mocks (3.12.0)
114
120
  diff-lcs (>= 1.2.0, < 2.0)
115
- rspec-support (~> 3.10.0)
116
- rspec-rails (4.0.2)
121
+ rspec-support (~> 3.12.0)
122
+ rspec-rails (4.1.2)
117
123
  actionpack (>= 4.2)
118
124
  activesupport (>= 4.2)
119
125
  railties (>= 4.2)
@@ -121,32 +127,37 @@ GEM
121
127
  rspec-expectations (~> 3.10)
122
128
  rspec-mocks (~> 3.10)
123
129
  rspec-support (~> 3.10)
124
- rspec-support (3.10.1)
125
- rspec_junit_formatter (0.4.1)
126
- rspec-core (>= 2, < 4, != 2.12.0)
127
- sprockets (4.0.2)
130
+ rspec-support (3.12.0)
131
+ set (1.0.3)
132
+ sorted_set (1.0.3)
133
+ rbtree
134
+ set (~> 1.0)
135
+ sprockets (4.1.1)
128
136
  concurrent-ruby (~> 1.0)
129
137
  rack (> 1, < 3)
130
138
  sprockets-rails (3.2.2)
131
139
  actionpack (>= 4.0)
132
140
  activesupport (>= 4.0)
133
141
  sprockets (>= 3.0.0)
134
- stackprof (0.2.16)
135
- thor (1.0.1)
142
+ stackprof (0.2.22)
143
+ thor (1.2.1)
136
144
  thread_safe (0.3.6)
137
145
  tomparse (0.4.2)
138
- tzinfo (1.2.9)
146
+ tzinfo (1.2.10)
139
147
  thread_safe (~> 0.1)
148
+ webrick (1.7.0)
140
149
  websocket-driver (0.6.5)
141
150
  websocket-extensions (>= 0.1.0)
142
151
  websocket-extensions (0.1.5)
143
- yard (0.9.26)
152
+ yard (0.9.28)
153
+ webrick (~> 1.7.0)
144
154
  yard-tomdoc (0.7.1)
145
155
  tomparse (>= 0.4.0)
146
156
  yard
147
157
 
148
158
  PLATFORMS
149
- x86_64-darwin-19
159
+ ruby
160
+ x86_64-darwin
150
161
  x86_64-linux
151
162
 
152
163
  DEPENDENCIES
@@ -155,15 +166,14 @@ DEPENDENCIES
155
166
  genspec (>= 0.3.0)
156
167
  github-markup
157
168
  rails (~> 5.1.0)
158
- railties (>= 4.2, < 6.2)
169
+ railties (>= 5.1, < 7.1)
159
170
  rake
160
171
  redcarpet
161
172
  rspec (>= 3)
162
173
  rspec-rails
163
- rspec_junit_formatter
164
174
  stackprof
165
175
  yard
166
176
  yard-tomdoc
167
177
 
168
178
  BUNDLED WITH
169
- 2.2.5
179
+ 2.3.25
@@ -1,160 +1,169 @@
1
1
  PATH
2
2
  remote: ..
3
3
  specs:
4
- curly-templates (3.0.0)
5
- actionpack (>= 4.2, < 6.2)
4
+ curly-templates (3.2.0)
5
+ actionpack (>= 5.1, < 7.1)
6
+ sorted_set
6
7
 
7
8
  GEM
8
9
  remote: https://rubygems.org/
9
10
  specs:
10
- actioncable (5.2.4.4)
11
- actionpack (= 5.2.4.4)
11
+ actioncable (5.2.8.1)
12
+ actionpack (= 5.2.8.1)
12
13
  nio4r (~> 2.0)
13
14
  websocket-driver (>= 0.6.1)
14
- actionmailer (5.2.4.4)
15
- actionpack (= 5.2.4.4)
16
- actionview (= 5.2.4.4)
17
- activejob (= 5.2.4.4)
15
+ actionmailer (5.2.8.1)
16
+ actionpack (= 5.2.8.1)
17
+ actionview (= 5.2.8.1)
18
+ activejob (= 5.2.8.1)
18
19
  mail (~> 2.5, >= 2.5.4)
19
20
  rails-dom-testing (~> 2.0)
20
- actionpack (5.2.4.4)
21
- actionview (= 5.2.4.4)
22
- activesupport (= 5.2.4.4)
21
+ actionpack (5.2.8.1)
22
+ actionview (= 5.2.8.1)
23
+ activesupport (= 5.2.8.1)
23
24
  rack (~> 2.0, >= 2.0.8)
24
25
  rack-test (>= 0.6.3)
25
26
  rails-dom-testing (~> 2.0)
26
27
  rails-html-sanitizer (~> 1.0, >= 1.0.2)
27
- actionview (5.2.4.4)
28
- activesupport (= 5.2.4.4)
28
+ actionview (5.2.8.1)
29
+ activesupport (= 5.2.8.1)
29
30
  builder (~> 3.1)
30
31
  erubi (~> 1.4)
31
32
  rails-dom-testing (~> 2.0)
32
33
  rails-html-sanitizer (~> 1.0, >= 1.0.3)
33
- activejob (5.2.4.4)
34
- activesupport (= 5.2.4.4)
34
+ activejob (5.2.8.1)
35
+ activesupport (= 5.2.8.1)
35
36
  globalid (>= 0.3.6)
36
- activemodel (5.2.4.4)
37
- activesupport (= 5.2.4.4)
38
- activerecord (5.2.4.4)
39
- activemodel (= 5.2.4.4)
40
- activesupport (= 5.2.4.4)
37
+ activemodel (5.2.8.1)
38
+ activesupport (= 5.2.8.1)
39
+ activerecord (5.2.8.1)
40
+ activemodel (= 5.2.8.1)
41
+ activesupport (= 5.2.8.1)
41
42
  arel (>= 9.0)
42
- activestorage (5.2.4.4)
43
- actionpack (= 5.2.4.4)
44
- activerecord (= 5.2.4.4)
45
- marcel (~> 0.3.1)
46
- activesupport (5.2.4.4)
43
+ activestorage (5.2.8.1)
44
+ actionpack (= 5.2.8.1)
45
+ activerecord (= 5.2.8.1)
46
+ marcel (~> 1.0.0)
47
+ activesupport (5.2.8.1)
47
48
  concurrent-ruby (~> 1.0, >= 1.0.2)
48
49
  i18n (>= 0.7, < 2)
49
50
  minitest (~> 5.1)
50
51
  tzinfo (~> 1.1)
51
52
  arel (9.0.0)
52
- benchmark-ips (2.8.4)
53
+ benchmark-ips (2.10.0)
53
54
  builder (3.2.4)
54
- concurrent-ruby (1.1.7)
55
+ concurrent-ruby (1.1.10)
55
56
  crass (1.0.6)
56
- diff-lcs (1.4.4)
57
- erubi (1.10.0)
57
+ diff-lcs (1.5.0)
58
+ erubi (1.11.0)
58
59
  genspec (0.3.2)
59
60
  rspec (>= 2, < 4)
60
61
  thor
61
- github-markup (3.0.5)
62
- globalid (0.4.2)
63
- activesupport (>= 4.2.0)
64
- i18n (1.8.7)
62
+ github-markup (4.0.1)
63
+ globalid (1.0.0)
64
+ activesupport (>= 5.0)
65
+ i18n (1.12.0)
65
66
  concurrent-ruby (~> 1.0)
66
- loofah (2.9.0)
67
+ loofah (2.19.0)
67
68
  crass (~> 1.0.2)
68
69
  nokogiri (>= 1.5.9)
69
70
  mail (2.7.1)
70
71
  mini_mime (>= 0.1.1)
71
- marcel (0.3.3)
72
- mimemagic (~> 0.3.2)
72
+ marcel (1.0.2)
73
73
  method_source (1.0.0)
74
- mimemagic (0.3.5)
75
- mini_mime (1.0.2)
76
- minitest (5.14.3)
77
- nio4r (2.5.4)
78
- nokogiri (1.11.1-x86_64-darwin)
74
+ mini_mime (1.1.2)
75
+ mini_portile2 (2.8.0)
76
+ minitest (5.16.3)
77
+ nio4r (2.5.8)
78
+ nokogiri (1.13.9)
79
+ mini_portile2 (~> 2.8.0)
80
+ racc (~> 1.4)
81
+ nokogiri (1.13.9-x86_64-darwin)
79
82
  racc (~> 1.4)
80
- nokogiri (1.11.1-x86_64-linux)
83
+ nokogiri (1.13.9-x86_64-linux)
81
84
  racc (~> 1.4)
82
- racc (1.5.2)
83
- rack (2.2.3)
84
- rack-test (1.1.0)
85
- rack (>= 1.0, < 3)
86
- rails (5.2.4.4)
87
- actioncable (= 5.2.4.4)
88
- actionmailer (= 5.2.4.4)
89
- actionpack (= 5.2.4.4)
90
- actionview (= 5.2.4.4)
91
- activejob (= 5.2.4.4)
92
- activemodel (= 5.2.4.4)
93
- activerecord (= 5.2.4.4)
94
- activestorage (= 5.2.4.4)
95
- activesupport (= 5.2.4.4)
85
+ racc (1.6.0)
86
+ rack (2.2.4)
87
+ rack-test (2.0.2)
88
+ rack (>= 1.3)
89
+ rails (5.2.8.1)
90
+ actioncable (= 5.2.8.1)
91
+ actionmailer (= 5.2.8.1)
92
+ actionpack (= 5.2.8.1)
93
+ actionview (= 5.2.8.1)
94
+ activejob (= 5.2.8.1)
95
+ activemodel (= 5.2.8.1)
96
+ activerecord (= 5.2.8.1)
97
+ activestorage (= 5.2.8.1)
98
+ activesupport (= 5.2.8.1)
96
99
  bundler (>= 1.3.0)
97
- railties (= 5.2.4.4)
100
+ railties (= 5.2.8.1)
98
101
  sprockets-rails (>= 2.0.0)
99
102
  rails-dom-testing (2.0.3)
100
103
  activesupport (>= 4.2.0)
101
104
  nokogiri (>= 1.6)
102
- rails-html-sanitizer (1.3.0)
105
+ rails-html-sanitizer (1.4.3)
103
106
  loofah (~> 2.3)
104
- railties (5.2.4.4)
105
- actionpack (= 5.2.4.4)
106
- activesupport (= 5.2.4.4)
107
+ railties (5.2.8.1)
108
+ actionpack (= 5.2.8.1)
109
+ activesupport (= 5.2.8.1)
107
110
  method_source
108
111
  rake (>= 0.8.7)
109
112
  thor (>= 0.19.0, < 2.0)
110
- rake (13.0.3)
113
+ rake (13.0.6)
114
+ rbtree (0.4.5)
111
115
  redcarpet (3.5.1)
112
- rspec (3.10.0)
113
- rspec-core (~> 3.10.0)
114
- rspec-expectations (~> 3.10.0)
115
- rspec-mocks (~> 3.10.0)
116
- rspec-core (3.10.1)
117
- rspec-support (~> 3.10.0)
118
- rspec-expectations (3.10.1)
116
+ rspec (3.12.0)
117
+ rspec-core (~> 3.12.0)
118
+ rspec-expectations (~> 3.12.0)
119
+ rspec-mocks (~> 3.12.0)
120
+ rspec-core (3.12.0)
121
+ rspec-support (~> 3.12.0)
122
+ rspec-expectations (3.12.0)
119
123
  diff-lcs (>= 1.2.0, < 2.0)
120
- rspec-support (~> 3.10.0)
121
- rspec-mocks (3.10.1)
124
+ rspec-support (~> 3.12.0)
125
+ rspec-mocks (3.12.0)
122
126
  diff-lcs (>= 1.2.0, < 2.0)
123
- rspec-support (~> 3.10.0)
124
- rspec-rails (4.0.2)
125
- actionpack (>= 4.2)
126
- activesupport (>= 4.2)
127
- railties (>= 4.2)
127
+ rspec-support (~> 3.12.0)
128
+ rspec-rails (5.1.2)
129
+ actionpack (>= 5.2)
130
+ activesupport (>= 5.2)
131
+ railties (>= 5.2)
128
132
  rspec-core (~> 3.10)
129
133
  rspec-expectations (~> 3.10)
130
134
  rspec-mocks (~> 3.10)
131
135
  rspec-support (~> 3.10)
132
- rspec-support (3.10.1)
133
- rspec_junit_formatter (0.4.1)
134
- rspec-core (>= 2, < 4, != 2.12.0)
135
- sprockets (4.0.2)
136
+ rspec-support (3.12.0)
137
+ set (1.0.3)
138
+ sorted_set (1.0.3)
139
+ rbtree
140
+ set (~> 1.0)
141
+ sprockets (4.1.1)
136
142
  concurrent-ruby (~> 1.0)
137
143
  rack (> 1, < 3)
138
- sprockets-rails (3.2.2)
139
- actionpack (>= 4.0)
140
- activesupport (>= 4.0)
144
+ sprockets-rails (3.4.2)
145
+ actionpack (>= 5.2)
146
+ activesupport (>= 5.2)
141
147
  sprockets (>= 3.0.0)
142
- stackprof (0.2.16)
143
- thor (1.0.1)
148
+ stackprof (0.2.22)
149
+ thor (1.2.1)
144
150
  thread_safe (0.3.6)
145
151
  tomparse (0.4.2)
146
- tzinfo (1.2.9)
152
+ tzinfo (1.2.10)
147
153
  thread_safe (~> 0.1)
148
- websocket-driver (0.7.3)
154
+ webrick (1.7.0)
155
+ websocket-driver (0.7.5)
149
156
  websocket-extensions (>= 0.1.0)
150
157
  websocket-extensions (0.1.5)
151
- yard (0.9.26)
158
+ yard (0.9.28)
159
+ webrick (~> 1.7.0)
152
160
  yard-tomdoc (0.7.1)
153
161
  tomparse (>= 0.4.0)
154
162
  yard
155
163
 
156
164
  PLATFORMS
157
- x86_64-darwin-19
165
+ ruby
166
+ x86_64-darwin
158
167
  x86_64-linux
159
168
 
160
169
  DEPENDENCIES
@@ -163,15 +172,14 @@ DEPENDENCIES
163
172
  genspec (>= 0.3.0)
164
173
  github-markup
165
174
  rails (~> 5.2.0)
166
- railties (>= 4.2, < 6.2)
175
+ railties (>= 5.1, < 7.1)
167
176
  rake
168
177
  redcarpet
169
178
  rspec (>= 3)
170
179
  rspec-rails
171
- rspec_junit_formatter
172
180
  stackprof
173
181
  yard
174
182
  yard-tomdoc
175
183
 
176
184
  BUNDLED WITH
177
- 2.2.5
185
+ 2.3.25
@@ -1,4 +1,4 @@
1
1
  eval_gemfile 'common.rb'
2
2
 
3
3
  gem 'rails', '~> 6.0.0'
4
- gem 'genspec', github: 'bquorning/genspec', branch: 'rails-6'
4
+ gem 'genspec', github: 'zendesk/genspec', branch: 'rails-7'