opera 0.4.1 → 0.5.1

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.
data/CHANGELOG.md CHANGED
@@ -1,5 +1,18 @@
1
1
  # Opera Changelog
2
2
 
3
+ ### 0.5.1 - Apr 15, 2026
4
+
5
+ - Remove `Marshal.dump` from instruction execution for ~40-55% throughput improvement
6
+ - Fix `Config.development_mode?` referencing non-existent constant
7
+ - Remove implicit `Rails.application.config.x.reporter` lookup from Config
8
+ - Restructure README into quick-start guide with examples moved to `docs/examples/`
9
+ - Add benchmark script for operation performance testing
10
+
11
+ ### 0.5.0 - Apr 13, 2026
12
+
13
+ - Add `within` executor for wrapping one or more steps with a custom block method
14
+ - Remove `benchmark` executor
15
+
3
16
  ### 0.4.1 - Feb 18, 2026
4
17
  - Add parsed errors to default `output!` exception message
5
18
 
data/Gemfile CHANGED
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  source 'https://rubygems.org'
2
4
 
3
5
  # Specify your gem's dependencies in opera.gemspec
@@ -6,6 +8,13 @@ gemspec
6
8
  gem 'rake', '~> 13.2'
7
9
  gem 'rspec', '~> 3.13'
8
10
 
11
+ group :development do
12
+ gem 'rubocop'
13
+ gem 'rubocop-performance'
14
+ gem 'rubocop-rake'
15
+ gem 'rubocop-rspec'
16
+ end
17
+
9
18
  group :test, :development do
10
19
  gem 'dry-validation'
11
20
  gem 'pry'
data/Gemfile.lock CHANGED
@@ -1,11 +1,12 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- opera (0.4.1)
4
+ opera (0.5.1)
5
5
 
6
6
  GEM
7
7
  remote: https://rubygems.org/
8
8
  specs:
9
+ ast (2.4.3)
9
10
  bigdecimal (3.1.9)
10
11
  byebug (12.0.0)
11
12
  coderay (1.1.3)
@@ -46,15 +47,26 @@ GEM
46
47
  dry-initializer (~> 3.2)
47
48
  dry-schema (~> 1.14)
48
49
  zeitwerk (~> 2.6)
50
+ json (2.18.0)
51
+ language_server-protocol (3.17.0.5)
52
+ lint_roller (1.1.0)
49
53
  logger (1.7.0)
50
54
  method_source (1.1.0)
55
+ parallel (1.27.0)
56
+ parser (3.3.10.0)
57
+ ast (~> 2.4.1)
58
+ racc
59
+ prism (1.7.0)
51
60
  pry (0.15.2)
52
61
  coderay (~> 1.1)
53
62
  method_source (~> 1.0)
54
63
  pry-byebug (3.11.0)
55
64
  byebug (~> 12.0)
56
65
  pry (>= 0.13, < 0.16)
66
+ racc (1.8.1)
67
+ rainbow (3.1.1)
57
68
  rake (13.2.1)
69
+ regexp_parser (2.11.3)
58
70
  rspec (3.13.0)
59
71
  rspec-core (~> 3.13.0)
60
72
  rspec-expectations (~> 3.13.0)
@@ -68,6 +80,34 @@ GEM
68
80
  diff-lcs (>= 1.2.0, < 2.0)
69
81
  rspec-support (~> 3.13.0)
70
82
  rspec-support (3.13.3)
83
+ rubocop (1.82.1)
84
+ json (~> 2.3)
85
+ language_server-protocol (~> 3.17.0.2)
86
+ lint_roller (~> 1.1.0)
87
+ parallel (~> 1.10)
88
+ parser (>= 3.3.0.2)
89
+ rainbow (>= 2.2.2, < 4.0)
90
+ regexp_parser (>= 2.9.3, < 3.0)
91
+ rubocop-ast (>= 1.48.0, < 2.0)
92
+ ruby-progressbar (~> 1.7)
93
+ unicode-display_width (>= 2.4.0, < 4.0)
94
+ rubocop-ast (1.49.0)
95
+ parser (>= 3.3.7.2)
96
+ prism (~> 1.7)
97
+ rubocop-performance (1.26.1)
98
+ lint_roller (~> 1.1)
99
+ rubocop (>= 1.75.0, < 2.0)
100
+ rubocop-ast (>= 1.47.1, < 2.0)
101
+ rubocop-rake (0.7.1)
102
+ lint_roller (~> 1.1)
103
+ rubocop (>= 1.72.1)
104
+ rubocop-rspec (3.8.0)
105
+ lint_roller (~> 1.1)
106
+ rubocop (~> 1.81)
107
+ ruby-progressbar (1.13.0)
108
+ unicode-display_width (3.2.0)
109
+ unicode-emoji (~> 4.1)
110
+ unicode-emoji (4.1.0)
71
111
  zeitwerk (2.6.18)
72
112
 
73
113
  PLATFORMS
@@ -80,6 +120,10 @@ DEPENDENCIES
80
120
  pry-byebug
81
121
  rake (~> 13.2)
82
122
  rspec (~> 3.13)
123
+ rubocop
124
+ rubocop-performance
125
+ rubocop-rake
126
+ rubocop-rspec
83
127
 
84
128
  BUNDLED WITH
85
129
  2.3.3