async_request 0.0.2 → 0.0.3

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: 5432ced3626cdbb31445a280765d615bc3868307
4
- data.tar.gz: 64488e701cba1eea0d951757e06de4f9494b5573
3
+ metadata.gz: 56c2ed8ad18a3f77d0877f49e48a03fe483913b9
4
+ data.tar.gz: d25f602245f8241cba3ab10b886490fcb908656f
5
5
  SHA512:
6
- metadata.gz: 8908245821def4e90e844150fead4796c0d318b5e0165cb6e2a363c1c3c494744f8e54961b44df4f1c5a1991771b5e2ec598628ab0f5687a57b3356cd2f124b5
7
- data.tar.gz: f91c5cfc6bd39bba80193a494fcada950cb3a6e43b291f73866f899603c1787abf3d7ab18aecdacfa2c2d06eb439638d91f86216fc0af94473284f4a8f26ddc6
6
+ metadata.gz: ff165c050e044873a1b4f00e111b146666702d383ab45eb2262a27e722f159287208d0f1e50a53a6b8a3711c41f3d9da8448aea275b3446398d01bdd8d754708
7
+ data.tar.gz: fdb7508f2fd53604ef011dae3985a43ab2300fd12b2d56a744dd463daf6a951772508b78ea128d778596a689ae86825fe0d5e4a1ab57b22f225aa05759b49b58
@@ -1,3 +1,3 @@
1
1
  module AsyncRequest
2
- VERSION = "0.0.2"
2
+ VERSION = "0.0.3"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: async_request
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.2
4
+ version: 0.0.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Matias De Santi
@@ -171,7 +171,6 @@ files:
171
171
  - app/views/layouts/async_request/application.html.erb
172
172
  - app/workers/async_request/job_processor.rb
173
173
  - config/routes.rb
174
- - db/migrate/20160411190611_create_async_request_jobs.rb
175
174
  - lib/async_request.rb
176
175
  - lib/async_request/engine.rb
177
176
  - lib/async_request/version.rb
@@ -1,16 +0,0 @@
1
- class CreateAsyncRequestJobs < ActiveRecord::Migration
2
- def change
3
- create_table :async_request_jobs do |t|
4
- t.string :worker
5
- t.integer :status
6
- t.integer :status_code
7
- t.text :response
8
- t.string :uid
9
- t.text :params
10
-
11
- t.timestamps null: false
12
- end
13
- add_index :async_request_jobs, :status
14
- add_index :async_request_jobs, :uid, unique: true
15
- end
16
- end