typed_operation 0.1.0 → 0.2.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/typed_operation/base.rb +3 -0
- data/lib/typed_operation/version.rb +1 -1
- data/lib/typed_operation.rb +2 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 53850ead13d940ad019c674a59e7831ba89da9ec70168d6a81de50711f343523
|
4
|
+
data.tar.gz: e76a1321066eff1a9034aeaab66140d58732eeab7adf30ff8d51f455ce68f483
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 057de15499ac13647de16cd3905d23ddf390b00d0951449061e1fc30020ba0c2e546d1c1f38495911012177604740f5c3947426c94ee9dd9763f94df9629ae17
|
7
|
+
data.tar.gz: f73dd9c04f0e5c3f87861c4d086059d595c296cc85783a85d9c13ef03f04ff7f87f46a4ec0b5cb1f9e9123d9f23ee0274a61d89f534ac666ad778db2f592dee0
|
data/lib/typed_operation/base.rb
CHANGED
data/lib/typed_operation.rb
CHANGED
@@ -1,8 +1,9 @@
|
|
1
1
|
require "typed_operation/version"
|
2
2
|
require "typed_operation/railtie"
|
3
3
|
require "typed_operation/base"
|
4
|
-
require "typed_operation/prepared"
|
5
4
|
require "typed_operation/partially_applied"
|
5
|
+
require "typed_operation/prepared"
|
6
|
+
|
6
7
|
|
7
8
|
module TypedOperation
|
8
9
|
# Your code goes here...
|