opera 0.3.0 → 0.3.2

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 704579e1a9f84d1966d10a7a7dab33b3c51d320a6f44fc968cc41d27e4ddb465
4
- data.tar.gz: 47cec8209bd334e31fc3906adf6fafabc48fb49438506e1eac3cc63df2739994
3
+ metadata.gz: 53aa374939d9a5722542314741fd410b9b14c0d0e12a5975be69d921c3ead00f
4
+ data.tar.gz: 96cd10034e01c43c4a279ab86cc774699e5f956319446b24c9efddfc7d8505b6
5
5
  SHA512:
6
- metadata.gz: b83cebe96114838b10845ae364ca6869b445d4a6a0171deb40875db0a719112a856820ace81929740b1914f52a8c083f24e4fe43e11acf3d8b519135da0a2a6b
7
- data.tar.gz: 815abc701e8f4634b47c868e9fed8f2b72682eb0fc408efad05afbc9f055f2f2d870c59caf84cafb46993cb5c75e6a2616c67684462fe38828d43b285cfa43e6
6
+ metadata.gz: d13fb5af0e76217ac1c290e229f6eb60ba3768f5c3ba30219413e279e8efd9022eddbd4c25d42664616b8c959be718ba9d6e1cfd5ece8150ea6aac625529e598
7
+ data.tar.gz: b889d38bf07f55010284322f1e20b5819ab655f9c939d60b1faaab3c97eab6433c15ba4bf648ff52e0d59b6b7f5d2cc99f149e0c1d255f5e7ec5c3815a804201
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Opera Changelog
2
2
 
3
+ ### 0.3.2 - December 16, 2024
4
+
5
+ - Fix issue with step method definition overriding context
6
+
7
+ ### 0.3.1 - October 10, 2024
8
+
9
+ - change minor ruby version to align it with specs
10
+
3
11
  ### 0.3.0 - September 20, 2024
4
12
 
5
13
  - add new syntax for context, params and dependencies readers and accessors
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- opera (0.3.0)
4
+ opera (0.3.2)
5
5
 
6
6
  GEM
7
7
  remote: https://rubygems.org/
@@ -16,6 +16,7 @@ module Opera
16
16
 
17
17
  INSTRUCTIONS.each do |instruction|
18
18
  define_method instruction do |method = nil, &blk|
19
+ self.check_method_availability!(method) if method
19
20
  instructions.concat(InnerBuilder.new.send(instruction, method, &blk))
20
21
  end
21
22
  end
data/lib/opera/version.rb CHANGED
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Opera
4
- VERSION = '0.3.0'
4
+ VERSION = '0.3.2'
5
5
  end
data/opera.gemspec CHANGED
@@ -9,7 +9,7 @@ Gem::Specification.new do |spec|
9
9
  spec.summary = 'Use simple DSL language to keep your Operations clean and maintainable'
10
10
  spec.homepage = 'https://github.com/Profinda/opera'
11
11
  spec.license = 'MIT'
12
- spec.required_ruby_version = Gem::Requirement.new('>= 2.3.0')
12
+ spec.required_ruby_version = Gem::Requirement.new('>= 3.0.0')
13
13
 
14
14
  spec.metadata['homepage_uri'] = spec.homepage
15
15
  spec.metadata['source_code_uri'] = spec.homepage
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: opera
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.0
4
+ version: 0.3.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - ProFinda Development Team
8
- autorequire:
8
+ autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2024-10-10 00:00:00.000000000 Z
11
+ date: 2024-12-16 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: dry-validation
@@ -52,7 +52,7 @@ dependencies:
52
52
  - - ">="
53
53
  - !ruby/object:Gem::Version
54
54
  version: '0'
55
- description:
55
+ description:
56
56
  email:
57
57
  - dev@profinda.com
58
58
  executables: []
@@ -101,7 +101,7 @@ metadata:
101
101
  homepage_uri: https://github.com/Profinda/opera
102
102
  source_code_uri: https://github.com/Profinda/opera
103
103
  changelog_uri: https://github.com/Profinda/opera/blob/master/CHANGELOG.md
104
- post_install_message:
104
+ post_install_message:
105
105
  rdoc_options: []
106
106
  require_paths:
107
107
  - lib
@@ -109,7 +109,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
109
109
  requirements:
110
110
  - - ">="
111
111
  - !ruby/object:Gem::Version
112
- version: 2.3.0
112
+ version: 3.0.0
113
113
  required_rubygems_version: !ruby/object:Gem::Requirement
114
114
  requirements:
115
115
  - - ">="
@@ -117,7 +117,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
117
117
  version: '0'
118
118
  requirements: []
119
119
  rubygems_version: 3.4.19
120
- signing_key:
120
+ signing_key:
121
121
  specification_version: 4
122
122
  summary: Use simple DSL language to keep your Operations clean and maintainable
123
123
  test_files: []