erb-processor 1.0.13 → 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 +19 -27
- data/Guardfile +7 -7
- data/Rakefile +1 -1
- 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)
|
|
@@ -31,7 +31,6 @@ GEM
|
|
|
31
31
|
ast (2.4.3)
|
|
32
32
|
base64 (0.3.0)
|
|
33
33
|
bigdecimal (4.0.1)
|
|
34
|
-
brakeman (5.4.1)
|
|
35
34
|
builder (3.3.0)
|
|
36
35
|
bundler-audit (0.9.3)
|
|
37
36
|
bundler (>= 1.2.0)
|
|
@@ -96,7 +95,7 @@ GEM
|
|
|
96
95
|
formatador (1.2.3)
|
|
97
96
|
reline
|
|
98
97
|
gem-release (2.2.4)
|
|
99
|
-
git (4.0
|
|
98
|
+
git (4.1.0)
|
|
100
99
|
activesupport (>= 5.0)
|
|
101
100
|
addressable (~> 2.8)
|
|
102
101
|
process_executer (~> 4.0)
|
|
@@ -180,7 +179,7 @@ GEM
|
|
|
180
179
|
prism (~> 1.5)
|
|
181
180
|
multi_json (1.19.1)
|
|
182
181
|
multi_test (1.1.0)
|
|
183
|
-
multi_xml (0.8.
|
|
182
|
+
multi_xml (0.8.1)
|
|
184
183
|
bigdecimal (>= 3.1, < 5)
|
|
185
184
|
multipart-post (2.4.1)
|
|
186
185
|
nenv (0.3.0)
|
|
@@ -199,19 +198,12 @@ GEM
|
|
|
199
198
|
multi_xml (~> 0.5)
|
|
200
199
|
rack (>= 1.2, < 4)
|
|
201
200
|
ostruct (0.6.3)
|
|
202
|
-
panolint (0.1.6)
|
|
203
|
-
brakeman (>= 4.8, < 6.0)
|
|
204
|
-
rubocop (>= 0.83, < 2.0)
|
|
205
|
-
rubocop-performance (~> 1.5)
|
|
206
|
-
rubocop-rails (~> 2.5)
|
|
207
|
-
rubocop-rake (~> 0.5)
|
|
208
|
-
rubocop-rspec (~> 2.0)
|
|
209
201
|
parallel (1.27.0)
|
|
210
202
|
parser (3.3.10.0)
|
|
211
203
|
ast (~> 2.4.1)
|
|
212
204
|
racc
|
|
213
205
|
prism (1.7.0)
|
|
214
|
-
process_executer (4.0.
|
|
206
|
+
process_executer (4.0.2)
|
|
215
207
|
track_open_instances (~> 0.1)
|
|
216
208
|
pry (0.16.0)
|
|
217
209
|
coderay (~> 1.1)
|
|
@@ -220,7 +212,7 @@ GEM
|
|
|
220
212
|
psych (5.3.1)
|
|
221
213
|
date
|
|
222
214
|
stringio
|
|
223
|
-
public_suffix (7.0.
|
|
215
|
+
public_suffix (7.0.2)
|
|
224
216
|
racc (1.8.1)
|
|
225
217
|
rack (3.2.4)
|
|
226
218
|
rainbow (3.1.1)
|
|
@@ -269,14 +261,11 @@ GEM
|
|
|
269
261
|
rubocop-capybara (2.22.1)
|
|
270
262
|
lint_roller (~> 1.1)
|
|
271
263
|
rubocop (~> 1.72, >= 1.72.1)
|
|
272
|
-
rubocop-factory_bot (2.28.0)
|
|
273
|
-
lint_roller (~> 1.1)
|
|
274
|
-
rubocop (~> 1.72, >= 1.72.1)
|
|
275
264
|
rubocop-performance (1.26.1)
|
|
276
265
|
lint_roller (~> 1.1)
|
|
277
266
|
rubocop (>= 1.75.0, < 2.0)
|
|
278
267
|
rubocop-ast (>= 1.47.1, < 2.0)
|
|
279
|
-
rubocop-rails (2.34.
|
|
268
|
+
rubocop-rails (2.34.3)
|
|
280
269
|
activesupport (>= 4.2.0)
|
|
281
270
|
lint_roller (~> 1.1)
|
|
282
271
|
rack (>= 1.1)
|
|
@@ -285,13 +274,13 @@ GEM
|
|
|
285
274
|
rubocop-rake (0.7.1)
|
|
286
275
|
lint_roller (~> 1.1)
|
|
287
276
|
rubocop (>= 1.72.1)
|
|
288
|
-
rubocop-rspec (
|
|
289
|
-
|
|
290
|
-
rubocop
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
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)
|
|
295
284
|
ruby-progressbar (1.13.0)
|
|
296
285
|
ruby2_keywords (0.0.5)
|
|
297
286
|
securerandom (0.4.1)
|
|
@@ -316,7 +305,7 @@ GEM
|
|
|
316
305
|
memoist3 (~> 1.0.0)
|
|
317
306
|
syslog (0.3.0)
|
|
318
307
|
logger
|
|
319
|
-
thor (1.
|
|
308
|
+
thor (1.5.0)
|
|
320
309
|
thread_safe (0.3.6)
|
|
321
310
|
track_open_instances (0.1.15)
|
|
322
311
|
tsort (0.2.0)
|
|
@@ -346,7 +335,6 @@ DEPENDENCIES
|
|
|
346
335
|
guard-rubocop
|
|
347
336
|
guard-yard
|
|
348
337
|
juwelier
|
|
349
|
-
panolint
|
|
350
338
|
rack
|
|
351
339
|
rake
|
|
352
340
|
rdoc
|
|
@@ -355,8 +343,12 @@ DEPENDENCIES
|
|
|
355
343
|
rspec-expectations
|
|
356
344
|
rspec-given
|
|
357
345
|
rubocop
|
|
346
|
+
rubocop-capybara
|
|
358
347
|
rubocop-performance
|
|
348
|
+
rubocop-rails
|
|
349
|
+
rubocop-rake
|
|
359
350
|
rubocop-rspec
|
|
351
|
+
rubocop-rspec_rails
|
|
360
352
|
shoulda
|
|
361
353
|
simplecov
|
|
362
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
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
|