operationable 0.3.1 → 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
  SHA1:
3
- metadata.gz: dda1a088a4f86bd2c423a35b629bec4ace91cc01
4
- data.tar.gz: 70fdcb19c888dd5fcc19165d068e06907b341ee5
3
+ metadata.gz: f604843ce9dfd14fa65505a764ca64ba7db621f8
4
+ data.tar.gz: 11f4bd95302fc3b8580d333e17d56fdf2f1ad45c
5
5
  SHA512:
6
- metadata.gz: e15a0b221702498945f2a0eca3f852b97fdc9e3660df544842ba007dc985dbe1bbbe16df8cd54d52d1ae5732bd94038b9b1afed046466b8deb110c4fabb264dd
7
- data.tar.gz: 4468c4c3c754aac78032b09b89fd1f544e668a741b9adc93cfe306492dc92f548d2a69cc758110b25ebe725544faa8ae779fbe42d132c000f81c787646b81665
6
+ metadata.gz: f7822dde3a5d044b8c5c7844a8dc22242a32e4487102f53a9856cb0a772293de771f46056eff144221f92f25bc03626be3a97f268f2e1c59e7dd6a366b8104ec
7
+ data.tar.gz: 08118da4160440c14b731ec32a6683077cb271fbcf1f0838b248fa7e1dd1af82e4effda3c492c264bc33d1a13a23110410a582e2f6de48b30f9e56da994541aa
@@ -22,7 +22,6 @@ require 'operationable/runners/serial'
22
22
  require 'operationable/runners/separate'
23
23
 
24
24
  require 'jobs/operation_job'
25
- require 'models/operation_callback'
26
25
 
27
26
  require 'operations/create'
28
27
  require 'operations/destroy'
@@ -1,3 +1,3 @@
1
1
  module Operationable
2
- VERSION = "0.3.1"
2
+ VERSION = "0.3.2"
3
3
  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.3.1
4
+ version: 0.3.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Kirill Suhodolov
@@ -114,7 +114,6 @@ files:
114
114
  - bin/console
115
115
  - bin/setup
116
116
  - lib/jobs/operation_job.rb
117
- - lib/models/operation_callback.rb
118
117
  - lib/operationable.rb
119
118
  - lib/operationable/builder.rb
120
119
  - lib/operationable/callback.rb
@@ -1,16 +0,0 @@
1
- # == Schema Information
2
- #
3
- # Table name: operation_callbacks
4
- #
5
- # id :integer not null, primary key
6
- # status :string
7
- # message :text
8
- # uuid :string
9
- # q_options :json
10
- # props :json
11
- # created_at :datetime not null
12
- # updated_at :datetime not null
13
- #
14
-
15
- class OperationCallback < ActiveRecord::Base
16
- end