composable_operations 0.3.0 → 0.3.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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 35bf16a747c65f1dcd6f9e7003f6fb574d86b4b5
4
- data.tar.gz: d456bb506cef1eb336fbf82d3d80718d28e0c648
3
+ metadata.gz: bb6d4feb567aaa5715d0cc18f4ce0fa9cb657f40
4
+ data.tar.gz: 90adbd786dc02ad45e48ba828d0a9d6f205a4d19
5
5
  SHA512:
6
- metadata.gz: caaec98652d28e2f1af2856a93adef45536ce173ff04e632362e5d97e64c22c7d415bc6a2206da36889675d3435e30222fd96bf7be3cc003e300d03c6a262609
7
- data.tar.gz: 84498a024f0c4564ef33dd276566090d0898d8fadc10e8a4eff7680e70721140943ba5d1c19dc365e8682d87d8010c513979856d1cc378af7eba983c39c879f7
6
+ metadata.gz: 907056386820c76604a5cf0e9fcb99351b970b568b1fa24600a2240eaeb2a4a79db2c06fa0e3611d79a3f64591ff08e3ca3736b885f48b6fc261120a171cefdb
7
+ data.tar.gz: d5213f41b0f34e2f1e601159b836ed53e3175e78420a0da6769e3523133c4463723ff79a3e6311aeb6153328b75e34875c12e43d43c892203ea0d7ad646c7a38
data/README.md CHANGED
@@ -210,7 +210,7 @@ StrictDateParser.perform("") # => ComposableOperations::OperationError: no times
210
210
  Operations and composed operations support
211
211
  [SmartProperties](http://github.com/t6d/smart_properties) to conveniently
212
212
  provide additional settings upon initialization of an operation. In the
213
- example, below an operation is defined that indents a given string. The indent
213
+ example below, an operation is defined that indents a given string. The indent
214
214
  is set to 2 by default but can easily be changed by supplying an options hash
215
215
  to the initializer.
216
216
 
@@ -231,6 +231,20 @@ end
231
231
  Indention.perform("Hello World", indent: 4) # => " Hello World"
232
232
  ```
233
233
 
234
+ Operations that are part of an composed operation can be configured by calling
235
+ the `.use` method with a hash of options as the second argument. See the
236
+ listing below for an example.
237
+
238
+ ```ruby
239
+ class SomeComposedOperation < ComposableOperations::ComposedOperation
240
+
241
+ # ...
242
+ use Indention, indent: 4
243
+ # ...
244
+
245
+ end
246
+ ```
247
+
234
248
  ## Contributing
235
249
 
236
250
  1. Fork it
@@ -1,3 +1,3 @@
1
1
  module ComposableOperations
2
- VERSION = "0.3.0"
2
+ VERSION = "0.3.1"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: composable_operations
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.0
4
+ version: 0.3.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Konstantin Tennhard