operationable 0.5.9 → 0.6.0

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: b8a9a0947682e52763c64425d876e66a0b047660ee95353dbd460f162a36ed89
4
- data.tar.gz: 0e10242ee817cf195149fafc3d1dc109621eaf24095e1ce1ea770ecbe8bdaf06
3
+ metadata.gz: f6bff99a4127dd088f6dcdb10f5154a656b8ef38e973e093f1baf0549345b013
4
+ data.tar.gz: 16e3b3e25db3e866c74786755d81d4e0da719f3818225ec2876908800878256b
5
5
  SHA512:
6
- metadata.gz: e2809c4540c92f8cb7b1cb8089af964ffda4d0b6cbdc20ecbbc6abd7b86859fbcd016d1afd97375747e11ce2d0f12389cd3f47259a28b3b7338d0aa65d95314a
7
- data.tar.gz: 35f512f67954f80a88f9f47a4f0873bc28de97c50f500109f66b1dfaaf7a529297feef55008b2af32d8d2e0a1231556c6492881798fa9632dc0ddae6e7f9641e
6
+ metadata.gz: 99f7acd7e979e1ffc81d77b463083b8bad7c538644b1a731e9b96f8014dfe50306810d044649cd61b28381a46b51061d5501d5c84a1de870838e9ab63e0fa35b
7
+ data.tar.gz: deef42f047c38584d5d31ef6c8cf56a179efefc5455c34029ef5df061a23ec84df611caae4d82fcf820df3929cb6821875b5f9f3b9c0a6120e612800e7a826cc
data/lib/operationable.rb CHANGED
@@ -15,9 +15,9 @@ require 'operationable/runners/base'
15
15
  require 'operationable/runners/serial'
16
16
  require 'operationable/runners/separate'
17
17
 
18
- require 'operations/create'
19
- require 'operations/destroy'
20
- require 'operations/update'
18
+ # require 'operations/create'
19
+ # require 'operations/destroy'
20
+ # require 'operations/update'
21
21
 
22
22
  module Operationable
23
23
  class Operation
@@ -1,3 +1,3 @@
1
1
  module Operationable
2
- VERSION = "0.5.9"
2
+ VERSION = "0.6.0"
3
3
  end
@@ -1,8 +1,8 @@
1
- # frozen_string_literal: true
2
- module Operations
3
- class Create < ::Operationable::Operation
4
- def persist
5
- record.save
6
- end
7
- end
8
- end
1
+ # # frozen_string_literal: true
2
+ # module Operations
3
+ # class Create < ::Operationable::Operation
4
+ # def persist
5
+ # record.save
6
+ # end
7
+ # end
8
+ # end
@@ -1,8 +1,8 @@
1
- # frozen_string_literal: true
2
- module Operations
3
- class Destroy < ::Operationable::Operation
4
- def persist
5
- record.destroy
6
- end
7
- end
8
- end
1
+ # # frozen_string_literal: true
2
+ # module Operations
3
+ # class Destroy < ::Operationable::Operation
4
+ # def persist
5
+ # record.destroy
6
+ # end
7
+ # end
8
+ # end
@@ -1,8 +1,8 @@
1
- # frozen_string_literal: true
2
- module Operations
3
- class Update < ::Operationable::Operation
4
- def persist
5
- record.save
6
- end
7
- end
8
- end
1
+ # # frozen_string_literal: true
2
+ # module Operations
3
+ # class Update < ::Operationable::Operation
4
+ # def persist
5
+ # record.save
6
+ # end
7
+ # end
8
+ # end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: operationable
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.9
4
+ version: 0.6.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Kirill Suhodolov
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2020-12-02 00:00:00.000000000 Z
12
+ date: 2021-03-18 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: bundler