erb-processor 1.0.12 → 1.0.14
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.rubocop.yml +1 -6
- data/.ruby-version +1 -0
- data/CHANGELOG.md +98 -0
- data/Gemfile +4 -1
- data/Gemfile.lock +40 -51
- data/Guardfile +7 -7
- data/Rakefile +2 -2
- data/erb-processor.gemspec +1 -1
- data/lib/erb/processor/version.rb +1 -1
- metadata +2 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 1fc0a45f7ad5d75b69942b6667956339273271194bb87ce4dac1804550ed7845
|
|
4
|
+
data.tar.gz: 808115d667f82c6797b9d009929f3badf8261f2c220128ed441e9a85be89c8c2
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 2654836c58d9dcfd44e23ebf8a76117aa9f0dcbd2cb0d0bb32d9cbfa734c45ab4b160c91b1ffeb97bb9b92e7750965d3a771d01a20fb168ad4f2a88c10233039
|
|
7
|
+
data.tar.gz: 7ab0c2f79e36304eddec6d471506bb053590fcdf7462bf1d64e6240b9f0c980c396b2e0544f28b264ffea8d7e29f302d2a944134c06f7933abce6ec4bde8c8f2
|
data/.rubocop.yml
CHANGED
|
@@ -6,8 +6,6 @@ plugins:
|
|
|
6
6
|
- rubocop-performance
|
|
7
7
|
- rubocop-rails
|
|
8
8
|
- rubocop-rake
|
|
9
|
-
|
|
10
|
-
require:
|
|
11
9
|
- rubocop-rspec
|
|
12
10
|
- rubocop-rspec_rails
|
|
13
11
|
|
|
@@ -15,7 +13,4 @@ Layout/LineLength:
|
|
|
15
13
|
Max: 120
|
|
16
14
|
|
|
17
15
|
Style/StringLiterals:
|
|
18
|
-
EnforcedStyle: double_quotes
|
|
19
|
-
|
|
20
|
-
Capybara:
|
|
21
|
-
Enabled: false
|
|
16
|
+
EnforcedStyle: double_quotes
|
data/.ruby-version
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
3.4.8
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,103 @@
|
|
|
1
1
|
## [Unreleased]
|
|
2
2
|
|
|
3
|
+
- fix(gemspec): correct required Ruby version to >= 3.4.7 for dependabot
|
|
4
|
+
|
|
5
|
+
## [1.0.13] - 2026-01-01
|
|
6
|
+
|
|
7
|
+
- build(deps): bump version to 1.0.13.
|
|
8
|
+
- build(deps): use `--all` flag for bundle update in Rakefile
|
|
9
|
+
- build(deps): update multiple gem versions in Gemfile.lock
|
|
10
|
+
|
|
11
|
+
## [1.0.12] - 2025-12-24
|
|
12
|
+
|
|
13
|
+
- build(deps): bump version to 1.0.12.
|
|
14
|
+
- chore(deps): add Dependabot configuration for weekly bundler updates
|
|
15
|
+
- build(deps): update dependencies and gem versions, add rubocop-rspec_rails config
|
|
16
|
+
|
|
17
|
+
## [1.0.11] - 2025-11-29
|
|
18
|
+
|
|
19
|
+
- build(deps): bump version to 1.0.11.
|
|
20
|
+
- build(deps): update multiple gems in Gemfile.lock
|
|
21
|
+
- fix: correct placeholder syntax in version bump message
|
|
22
|
+
|
|
23
|
+
## [1.0.10] - 2025-11-19
|
|
24
|
+
|
|
25
|
+
- build(deps): bump version to 1.0.10.
|
|
26
|
+
- Modified the gem bump commit message to be conventional
|
|
27
|
+
- build(deps): bump erb-processor to 1.0.9
|
|
28
|
+
- chore: add bundler-audit gem and update Rakefile for dependency audits
|
|
29
|
+
- Bump erb-processor to 1.0.8
|
|
30
|
+
- Updated gems
|
|
31
|
+
|
|
32
|
+
## [1.0.7] - 2025-10-17
|
|
33
|
+
|
|
34
|
+
- Bump erb-processor to 1.0.7
|
|
35
|
+
- chore: clarify environment task with description in Rakefile
|
|
36
|
+
- Bump erb-processor to 1.0.6
|
|
37
|
+
- chore: Added rake task for more automated gem update
|
|
38
|
+
- chore: update dependencies, refactor specs for clarity, and improve gem configuration
|
|
39
|
+
|
|
40
|
+
## [1.0.5] - 2025-08-01
|
|
41
|
+
|
|
42
|
+
- Bumped to version 1.0.5
|
|
43
|
+
- Updated all the gems to latest versions
|
|
44
|
+
- Added a rake upgrade task
|
|
45
|
+
|
|
46
|
+
## [1.0.4] - 2025-06-14
|
|
47
|
+
|
|
48
|
+
- Removed signing from the expired certificate
|
|
49
|
+
- Updated the gems to the latest version.
|
|
50
|
+
|
|
51
|
+
## [1.0.3] - 2025-03-24
|
|
52
|
+
|
|
53
|
+
- Bump the bundler group across 1 directory with 2 updates
|
|
54
|
+
- Added dependabot badge
|
|
55
|
+
- Updated the gems and set ruby 3.4 as required version
|
|
56
|
+
- Ignoring JetBrains IDE files
|
|
57
|
+
- Fix the badge to access the build
|
|
58
|
+
- Fixing incorrect status badge link.
|
|
59
|
+
- Added ruby 3.2 to the GitHub matrix
|
|
60
|
+
- Releasing 1.0.3 with new certificate
|
|
61
|
+
- bumping to version 1.0.3
|
|
62
|
+
- Updated gems to remove ruby-git vulnerabilities
|
|
63
|
+
|
|
64
|
+
## [1.0.2] - 2022-06-29
|
|
65
|
+
|
|
66
|
+
- Made the purpose of the Java example more explicit.
|
|
67
|
+
|
|
68
|
+
## [1.0.2] - 2022-06-28
|
|
69
|
+
|
|
70
|
+
- Reordering the template documentation
|
|
71
|
+
- Updated the template format documentation
|
|
72
|
+
- Improved generated method name
|
|
73
|
+
- Bumped version to 1.0.2
|
|
74
|
+
- Improved the documentation w/ a Java template
|
|
75
|
+
- Fixed Rubocop warnings
|
|
76
|
+
- Updated the Gem.lock file to match version 1.0.1 of the gem
|
|
77
|
+
- Using HTTPS instead of HTTP for rubygems.org
|
|
78
|
+
|
|
79
|
+
## [1.0.1] - 2022-06-27
|
|
80
|
+
|
|
81
|
+
- Added certificate to sign the gem
|
|
82
|
+
- Updated the gem dependencies
|
|
83
|
+
- Specified rubygems.org as the push host
|
|
84
|
+
|
|
85
|
+
## [1.0.0] - 2022-06-25
|
|
86
|
+
|
|
87
|
+
- Removed editor backup file
|
|
88
|
+
- Bumped to version 1.0.0
|
|
89
|
+
- Now ignoring /checksums folder
|
|
90
|
+
- Tweaked README.rd headers
|
|
91
|
+
- Switched Guard Cucumber execution to default arguments and only disabled notifications
|
|
92
|
+
- Fixed broken Guard Cucumber execution
|
|
93
|
+
- Renamed Erb to ERB to be consistent w/ the ERB class
|
|
94
|
+
- Improved scenario name
|
|
95
|
+
- Improved the README.md formatting and information
|
|
96
|
+
- Fix Github Action workflow syntax error
|
|
97
|
+
- Limiting the matrix execution to Ruby 3.1
|
|
98
|
+
- Switched to ruby-setup checkout@v3
|
|
99
|
+
|
|
3
100
|
## [0.1.0] - 2022-06-22
|
|
4
101
|
|
|
5
102
|
- Initial release
|
|
103
|
+
- Boilerplate Ruby gem code tree structure w/ no change
|
data/Gemfile
CHANGED
|
@@ -10,10 +10,13 @@ gem "rake"
|
|
|
10
10
|
|
|
11
11
|
gem "rspec"
|
|
12
12
|
|
|
13
|
-
gem "panolint"
|
|
14
13
|
gem "rubocop"
|
|
14
|
+
gem "rubocop-capybara", require: false
|
|
15
15
|
gem "rubocop-performance", require: false
|
|
16
|
+
gem "rubocop-rails", require: false
|
|
17
|
+
gem "rubocop-rake", require: false
|
|
16
18
|
gem "rubocop-rspec", require: false
|
|
19
|
+
gem "rubocop-rspec_rails", require: false
|
|
17
20
|
|
|
18
21
|
gem "aruba" # , :git => 'https://github.com/cucumber/aruba.git' # 'https://github
|
|
19
22
|
gem "bundler"
|
data/Gemfile.lock
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
PATH
|
|
2
2
|
remote: .
|
|
3
3
|
specs:
|
|
4
|
-
erb-processor (1.0.
|
|
4
|
+
erb-processor (1.0.14)
|
|
5
5
|
logging
|
|
6
6
|
|
|
7
7
|
GEM
|
|
8
8
|
remote: https://rubygems.org/
|
|
9
9
|
specs:
|
|
10
|
-
activesupport (8.1.
|
|
10
|
+
activesupport (8.1.2)
|
|
11
11
|
base64
|
|
12
12
|
bigdecimal
|
|
13
13
|
concurrent-ruby (~> 1.0, >= 1.3.1)
|
|
@@ -30,8 +30,7 @@ GEM
|
|
|
30
30
|
thor (~> 1.0)
|
|
31
31
|
ast (2.4.3)
|
|
32
32
|
base64 (0.3.0)
|
|
33
|
-
bigdecimal (
|
|
34
|
-
brakeman (5.4.1)
|
|
33
|
+
bigdecimal (4.0.1)
|
|
35
34
|
builder (3.3.0)
|
|
36
35
|
bundler-audit (0.9.3)
|
|
37
36
|
bundler (>= 1.2.0)
|
|
@@ -53,9 +52,9 @@ GEM
|
|
|
53
52
|
multi_test (~> 1.1)
|
|
54
53
|
sys-uname (~> 1.3)
|
|
55
54
|
cucumber-ci-environment (11.0.0)
|
|
56
|
-
cucumber-core (16.
|
|
57
|
-
cucumber-gherkin (>
|
|
58
|
-
cucumber-messages (>
|
|
55
|
+
cucumber-core (16.1.1)
|
|
56
|
+
cucumber-gherkin (> 36, < 40)
|
|
57
|
+
cucumber-messages (> 31, < 33)
|
|
59
58
|
cucumber-tag-expressions (> 6, < 9)
|
|
60
59
|
cucumber-cucumber-expressions (18.0.1)
|
|
61
60
|
bigdecimal
|
|
@@ -72,35 +71,31 @@ GEM
|
|
|
72
71
|
docile (1.4.1)
|
|
73
72
|
drb (2.2.3)
|
|
74
73
|
erb (6.0.1)
|
|
75
|
-
faraday (1.
|
|
74
|
+
faraday (1.8.0)
|
|
76
75
|
faraday-em_http (~> 1.0)
|
|
77
76
|
faraday-em_synchrony (~> 1.0)
|
|
78
77
|
faraday-excon (~> 1.1)
|
|
79
|
-
faraday-httpclient (~> 1.0)
|
|
80
|
-
faraday-multipart (~> 1.0)
|
|
78
|
+
faraday-httpclient (~> 1.0.1)
|
|
81
79
|
faraday-net_http (~> 1.0)
|
|
82
|
-
faraday-net_http_persistent (~> 1.
|
|
80
|
+
faraday-net_http_persistent (~> 1.1)
|
|
83
81
|
faraday-patron (~> 1.0)
|
|
84
82
|
faraday-rack (~> 1.0)
|
|
85
|
-
|
|
83
|
+
multipart-post (>= 1.2, < 3)
|
|
86
84
|
ruby2_keywords (>= 0.0.4)
|
|
87
85
|
faraday-em_http (1.0.0)
|
|
88
86
|
faraday-em_synchrony (1.0.1)
|
|
89
87
|
faraday-excon (1.1.0)
|
|
90
88
|
faraday-httpclient (1.0.1)
|
|
91
|
-
faraday-multipart (1.1.1)
|
|
92
|
-
multipart-post (~> 2.0)
|
|
93
89
|
faraday-net_http (1.0.2)
|
|
94
90
|
faraday-net_http_persistent (1.2.0)
|
|
95
91
|
faraday-patron (1.0.0)
|
|
96
92
|
faraday-rack (1.0.0)
|
|
97
|
-
|
|
98
|
-
ffi (1.17.
|
|
99
|
-
ffi (1.17.2-x86_64-linux-gnu)
|
|
93
|
+
ffi (1.17.3)
|
|
94
|
+
ffi (1.17.3-x86_64-linux-gnu)
|
|
100
95
|
formatador (1.2.3)
|
|
101
96
|
reline
|
|
102
97
|
gem-release (2.2.4)
|
|
103
|
-
git (4.0
|
|
98
|
+
git (4.1.0)
|
|
104
99
|
activesupport (>= 5.0)
|
|
105
100
|
addressable (~> 2.8)
|
|
106
101
|
process_executer (~> 4.0)
|
|
@@ -180,18 +175,18 @@ GEM
|
|
|
180
175
|
method_source (1.1.0)
|
|
181
176
|
mini_mime (1.1.5)
|
|
182
177
|
mini_portile2 (2.8.9)
|
|
183
|
-
minitest (6.0.
|
|
178
|
+
minitest (6.0.1)
|
|
184
179
|
prism (~> 1.5)
|
|
185
|
-
multi_json (1.
|
|
180
|
+
multi_json (1.19.1)
|
|
186
181
|
multi_test (1.1.0)
|
|
187
|
-
multi_xml (0.
|
|
188
|
-
bigdecimal (
|
|
182
|
+
multi_xml (0.8.1)
|
|
183
|
+
bigdecimal (>= 3.1, < 5)
|
|
189
184
|
multipart-post (2.4.1)
|
|
190
185
|
nenv (0.3.0)
|
|
191
|
-
nokogiri (1.
|
|
186
|
+
nokogiri (1.19.0)
|
|
192
187
|
mini_portile2 (~> 2.8.2)
|
|
193
188
|
racc (~> 1.4)
|
|
194
|
-
nokogiri (1.
|
|
189
|
+
nokogiri (1.19.0-x86_64-linux-gnu)
|
|
195
190
|
racc (~> 1.4)
|
|
196
191
|
notiffany (0.1.3)
|
|
197
192
|
nenv (~> 0.1)
|
|
@@ -203,27 +198,21 @@ GEM
|
|
|
203
198
|
multi_xml (~> 0.5)
|
|
204
199
|
rack (>= 1.2, < 4)
|
|
205
200
|
ostruct (0.6.3)
|
|
206
|
-
panolint (0.1.6)
|
|
207
|
-
brakeman (>= 4.8, < 6.0)
|
|
208
|
-
rubocop (>= 0.83, < 2.0)
|
|
209
|
-
rubocop-performance (~> 1.5)
|
|
210
|
-
rubocop-rails (~> 2.5)
|
|
211
|
-
rubocop-rake (~> 0.5)
|
|
212
|
-
rubocop-rspec (~> 2.0)
|
|
213
201
|
parallel (1.27.0)
|
|
214
202
|
parser (3.3.10.0)
|
|
215
203
|
ast (~> 2.4.1)
|
|
216
204
|
racc
|
|
217
205
|
prism (1.7.0)
|
|
218
|
-
process_executer (4.0.
|
|
206
|
+
process_executer (4.0.2)
|
|
219
207
|
track_open_instances (~> 0.1)
|
|
220
|
-
pry (0.
|
|
208
|
+
pry (0.16.0)
|
|
221
209
|
coderay (~> 1.1)
|
|
222
210
|
method_source (~> 1.0)
|
|
211
|
+
reline (>= 0.6.0)
|
|
223
212
|
psych (5.3.1)
|
|
224
213
|
date
|
|
225
214
|
stringio
|
|
226
|
-
public_suffix (7.0.
|
|
215
|
+
public_suffix (7.0.2)
|
|
227
216
|
racc (1.8.1)
|
|
228
217
|
rack (3.2.4)
|
|
229
218
|
rainbow (3.1.1)
|
|
@@ -232,7 +221,7 @@ GEM
|
|
|
232
221
|
rb-inotify (0.11.1)
|
|
233
222
|
ffi (~> 1.0)
|
|
234
223
|
rchardet (1.10.0)
|
|
235
|
-
rdoc (7.0.
|
|
224
|
+
rdoc (7.0.3)
|
|
236
225
|
erb
|
|
237
226
|
psych (>= 4.0.0)
|
|
238
227
|
tsort
|
|
@@ -255,7 +244,7 @@ GEM
|
|
|
255
244
|
diff-lcs (>= 1.2.0, < 2.0)
|
|
256
245
|
rspec-support (~> 3.13.0)
|
|
257
246
|
rspec-support (3.13.6)
|
|
258
|
-
rubocop (1.82.
|
|
247
|
+
rubocop (1.82.1)
|
|
259
248
|
json (~> 2.3)
|
|
260
249
|
language_server-protocol (~> 3.17.0.2)
|
|
261
250
|
lint_roller (~> 1.1.0)
|
|
@@ -266,20 +255,17 @@ GEM
|
|
|
266
255
|
rubocop-ast (>= 1.48.0, < 2.0)
|
|
267
256
|
ruby-progressbar (~> 1.7)
|
|
268
257
|
unicode-display_width (>= 2.4.0, < 4.0)
|
|
269
|
-
rubocop-ast (1.
|
|
258
|
+
rubocop-ast (1.49.0)
|
|
270
259
|
parser (>= 3.3.7.2)
|
|
271
|
-
prism (~> 1.
|
|
260
|
+
prism (~> 1.7)
|
|
272
261
|
rubocop-capybara (2.22.1)
|
|
273
262
|
lint_roller (~> 1.1)
|
|
274
263
|
rubocop (~> 1.72, >= 1.72.1)
|
|
275
|
-
rubocop-factory_bot (2.28.0)
|
|
276
|
-
lint_roller (~> 1.1)
|
|
277
|
-
rubocop (~> 1.72, >= 1.72.1)
|
|
278
264
|
rubocop-performance (1.26.1)
|
|
279
265
|
lint_roller (~> 1.1)
|
|
280
266
|
rubocop (>= 1.75.0, < 2.0)
|
|
281
267
|
rubocop-ast (>= 1.47.1, < 2.0)
|
|
282
|
-
rubocop-rails (2.34.
|
|
268
|
+
rubocop-rails (2.34.3)
|
|
283
269
|
activesupport (>= 4.2.0)
|
|
284
270
|
lint_roller (~> 1.1)
|
|
285
271
|
rack (>= 1.1)
|
|
@@ -288,13 +274,13 @@ GEM
|
|
|
288
274
|
rubocop-rake (0.7.1)
|
|
289
275
|
lint_roller (~> 1.1)
|
|
290
276
|
rubocop (>= 1.72.1)
|
|
291
|
-
rubocop-rspec (
|
|
292
|
-
|
|
293
|
-
rubocop
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
rubocop (~>
|
|
277
|
+
rubocop-rspec (3.9.0)
|
|
278
|
+
lint_roller (~> 1.1)
|
|
279
|
+
rubocop (~> 1.81)
|
|
280
|
+
rubocop-rspec_rails (2.32.0)
|
|
281
|
+
lint_roller (~> 1.1)
|
|
282
|
+
rubocop (~> 1.72, >= 1.72.1)
|
|
283
|
+
rubocop-rspec (~> 3.5)
|
|
298
284
|
ruby-progressbar (1.13.0)
|
|
299
285
|
ruby2_keywords (0.0.5)
|
|
300
286
|
securerandom (0.4.1)
|
|
@@ -319,7 +305,7 @@ GEM
|
|
|
319
305
|
memoist3 (~> 1.0.0)
|
|
320
306
|
syslog (0.3.0)
|
|
321
307
|
logger
|
|
322
|
-
thor (1.
|
|
308
|
+
thor (1.5.0)
|
|
323
309
|
thread_safe (0.3.6)
|
|
324
310
|
track_open_instances (0.1.15)
|
|
325
311
|
tsort (0.2.0)
|
|
@@ -349,7 +335,6 @@ DEPENDENCIES
|
|
|
349
335
|
guard-rubocop
|
|
350
336
|
guard-yard
|
|
351
337
|
juwelier
|
|
352
|
-
panolint
|
|
353
338
|
rack
|
|
354
339
|
rake
|
|
355
340
|
rdoc
|
|
@@ -358,8 +343,12 @@ DEPENDENCIES
|
|
|
358
343
|
rspec-expectations
|
|
359
344
|
rspec-given
|
|
360
345
|
rubocop
|
|
346
|
+
rubocop-capybara
|
|
361
347
|
rubocop-performance
|
|
348
|
+
rubocop-rails
|
|
349
|
+
rubocop-rake
|
|
362
350
|
rubocop-rspec
|
|
351
|
+
rubocop-rspec_rails
|
|
363
352
|
shoulda
|
|
364
353
|
simplecov
|
|
365
354
|
syslog
|
data/Guardfile
CHANGED
|
@@ -17,7 +17,7 @@
|
|
|
17
17
|
#
|
|
18
18
|
# and, you'll have to watch "config/Guardfile" instead of "Guardfile"
|
|
19
19
|
|
|
20
|
-
guard
|
|
20
|
+
guard "bundler" do
|
|
21
21
|
require "guard/bundler"
|
|
22
22
|
require "guard/bundler/verify"
|
|
23
23
|
helper = Guard::Bundler::Verify.new
|
|
@@ -30,7 +30,7 @@ guard :bundler do
|
|
|
30
30
|
end
|
|
31
31
|
|
|
32
32
|
group :red_green_refactor, halt_on_fail: true do
|
|
33
|
-
guard
|
|
33
|
+
guard "rspec", cmd: "bundle exec rspec" do
|
|
34
34
|
require "guard/rspec/dsl"
|
|
35
35
|
dsl = Guard::RSpec::Dsl.new(self)
|
|
36
36
|
|
|
@@ -47,11 +47,6 @@ group :red_green_refactor, halt_on_fail: true do
|
|
|
47
47
|
dsl.watch_spec_files_for(ruby.lib_files)
|
|
48
48
|
end
|
|
49
49
|
|
|
50
|
-
guard :rubocop, cli: ["--format", "clang", "--autocorrect"] do
|
|
51
|
-
watch(/.+\.rb$/)
|
|
52
|
-
watch(%r{(?:.+/)?\.rubocop(?:_todo)?\.yml$}) { |m| File.dirname(m[0]) }
|
|
53
|
-
end
|
|
54
|
-
|
|
55
50
|
cucumber_options = {
|
|
56
51
|
notification: false
|
|
57
52
|
}
|
|
@@ -64,6 +59,11 @@ group :red_green_refactor, halt_on_fail: true do
|
|
|
64
59
|
Dir[File.join("**/#{m[1]}.feature")][0] || "features"
|
|
65
60
|
end
|
|
66
61
|
end
|
|
62
|
+
|
|
63
|
+
guard "rubocop", cli: ["--format", "clang", "--autocorrect"] do
|
|
64
|
+
watch(/.+\.rb$/)
|
|
65
|
+
watch(%r{(?:.+/)?\.rubocop(?:_todo)?\.yml$}) { |m| m[0] ? File.dirname(m[0]) : "." }
|
|
66
|
+
end
|
|
67
67
|
end
|
|
68
68
|
|
|
69
69
|
guard "yard" do
|
data/Rakefile
CHANGED
|
@@ -38,13 +38,13 @@ task :environment do
|
|
|
38
38
|
end
|
|
39
39
|
# rubocop:enable Rails/RakeEnvironment
|
|
40
40
|
|
|
41
|
-
task default: %i[spec rubocop
|
|
41
|
+
task default: %i[spec cucumber rubocop]
|
|
42
42
|
|
|
43
43
|
desc "Upgrade gems, including bundler and gem"
|
|
44
44
|
task upgrade: :environment do
|
|
45
45
|
sh "gem update --system"
|
|
46
46
|
sh "gem update"
|
|
47
47
|
sh "bundle update --bundler"
|
|
48
|
-
sh "bundle update"
|
|
48
|
+
sh "bundle update --all"
|
|
49
49
|
sh "bundle audit"
|
|
50
50
|
end
|
data/erb-processor.gemspec
CHANGED
|
@@ -16,7 +16,7 @@ Gem::Specification.new do |spec|
|
|
|
16
16
|
END_OF_DESCRIPTION
|
|
17
17
|
spec.homepage = "https://github.com/cbroult/erb-processor"
|
|
18
18
|
spec.license = "MIT"
|
|
19
|
-
spec.required_ruby_version = ">=
|
|
19
|
+
spec.required_ruby_version = ">= #{File.read('.ruby-version').strip}"
|
|
20
20
|
|
|
21
21
|
spec.metadata["allowed_push_host"] = "https://rubygems.org"
|
|
22
22
|
spec.metadata["homepage_uri"] = spec.homepage
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: erb-processor
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.0.
|
|
4
|
+
version: 1.0.14
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Christophe Broult
|
|
@@ -36,6 +36,7 @@ extra_rdoc_files: []
|
|
|
36
36
|
files:
|
|
37
37
|
- ".rspec"
|
|
38
38
|
- ".rubocop.yml"
|
|
39
|
+
- ".ruby-version"
|
|
39
40
|
- CHANGELOG.md
|
|
40
41
|
- CODE_OF_CONDUCT.md
|
|
41
42
|
- Gemfile
|