delayed_action 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 +4 -4
- data/lib/delayed_action/delayed_action_active_job.rb +1 -2
- data/lib/delayed_action/version.rb +1 -1
- metadata +26 -27
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 7e0cdff8b25f0069019d66fbaee9067afab8e9bd
|
|
4
|
+
data.tar.gz: 00a8ca2d07e8cf7a20a989105ae825261f4acd96
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c168a07b4401227abaed4034c1079769bb62b30ade39b738fac545197eec340c884c41b2cc5b198019977d0aca1a1b222a7fd6c3eeb0470f8335a5a606dedb87
|
|
7
|
+
data.tar.gz: b87eb67efa9d072a55de22168289067fec416f4b8cb4fbfaddb5038f5fd60ef7bdd80cf098a9a263528a9bd615646bb7058321273fdc24efa6ce42e693b503df
|
|
@@ -19,8 +19,7 @@ class DelayedActionActiveJob < ActiveJob::Base
|
|
|
19
19
|
else
|
|
20
20
|
path = "#{env["PATH_INFO"]}?force=true"
|
|
21
21
|
end
|
|
22
|
-
|
|
23
|
-
session.get path, nil, env
|
|
22
|
+
session.get path, env: env
|
|
24
23
|
result.update(result: session.response.body, content_type: session.response.content_type)
|
|
25
24
|
|
|
26
25
|
end
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: delayed_action
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Douglas Tarr
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2018-05-01 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rails
|
|
@@ -121,51 +121,50 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
121
121
|
version: '0'
|
|
122
122
|
requirements: []
|
|
123
123
|
rubyforge_project:
|
|
124
|
-
rubygems_version: 2.
|
|
124
|
+
rubygems_version: 2.5.1
|
|
125
125
|
signing_key:
|
|
126
126
|
specification_version: 4
|
|
127
127
|
summary: Add asynchronous queuing of HTTP requests in one line of code
|
|
128
128
|
test_files:
|
|
129
|
-
- test/controllers/delayed_action/delayed_action_results_controller_test.rb
|
|
130
129
|
- test/delayed_action_test.rb
|
|
130
|
+
- test/dummy/app/controllers/application_controller.rb
|
|
131
|
+
- test/dummy/app/views/layouts/application.html.erb
|
|
131
132
|
- test/dummy/app/assets/javascripts/application.js
|
|
132
133
|
- test/dummy/app/assets/stylesheets/application.css
|
|
133
|
-
- test/dummy/app/controllers/application_controller.rb
|
|
134
134
|
- test/dummy/app/helpers/application_helper.rb
|
|
135
|
-
- test/dummy/app/views/layouts/application.html.erb
|
|
136
|
-
- test/dummy/bin/bundle
|
|
137
|
-
- test/dummy/bin/rails
|
|
138
135
|
- test/dummy/bin/rake
|
|
139
136
|
- test/dummy/bin/setup
|
|
140
|
-
- test/dummy/
|
|
141
|
-
- test/dummy/
|
|
142
|
-
- test/dummy/config/
|
|
143
|
-
- test/dummy/config/
|
|
144
|
-
- test/dummy/config/
|
|
137
|
+
- test/dummy/bin/bundle
|
|
138
|
+
- test/dummy/bin/rails
|
|
139
|
+
- test/dummy/config/secrets.yml
|
|
140
|
+
- test/dummy/config/routes.rb
|
|
141
|
+
- test/dummy/config/locales/en.yml
|
|
145
142
|
- test/dummy/config/environments/production.rb
|
|
143
|
+
- test/dummy/config/environments/development.rb
|
|
146
144
|
- test/dummy/config/environments/test.rb
|
|
147
|
-
- test/dummy/config/
|
|
145
|
+
- test/dummy/config/environment.rb
|
|
146
|
+
- test/dummy/config/application.rb
|
|
147
|
+
- test/dummy/config/database.yml
|
|
148
|
+
- test/dummy/config/boot.rb
|
|
148
149
|
- test/dummy/config/initializers/backtrace_silencers.rb
|
|
149
|
-
- test/dummy/config/initializers/cookies_serializer.rb
|
|
150
|
-
- test/dummy/config/initializers/filter_parameter_logging.rb
|
|
151
|
-
- test/dummy/config/initializers/inflections.rb
|
|
152
150
|
- test/dummy/config/initializers/mime_types.rb
|
|
151
|
+
- test/dummy/config/initializers/filter_parameter_logging.rb
|
|
153
152
|
- test/dummy/config/initializers/session_store.rb
|
|
154
153
|
- test/dummy/config/initializers/wrap_parameters.rb
|
|
155
|
-
- test/dummy/config/
|
|
156
|
-
- test/dummy/config/
|
|
157
|
-
- test/dummy/config/
|
|
154
|
+
- test/dummy/config/initializers/assets.rb
|
|
155
|
+
- test/dummy/config/initializers/cookies_serializer.rb
|
|
156
|
+
- test/dummy/config/initializers/inflections.rb
|
|
158
157
|
- test/dummy/config.ru
|
|
159
|
-
- test/dummy/
|
|
160
|
-
- test/dummy/
|
|
161
|
-
- test/dummy/public/404.html
|
|
158
|
+
- test/dummy/Rakefile
|
|
159
|
+
- test/dummy/public/favicon.ico
|
|
162
160
|
- test/dummy/public/422.html
|
|
163
161
|
- test/dummy/public/500.html
|
|
164
|
-
- test/dummy/public/
|
|
165
|
-
- test/dummy/
|
|
162
|
+
- test/dummy/public/404.html
|
|
163
|
+
- test/dummy/db/development.sqlite3
|
|
164
|
+
- test/dummy/log/development.log
|
|
166
165
|
- test/dummy/README.rdoc
|
|
167
|
-
- test/fixtures/delayed_action/delayed_action_results.yml
|
|
168
166
|
- test/integration/navigation_test.rb
|
|
169
167
|
- test/models/delayed_action/delayed_action_result_test.rb
|
|
168
|
+
- test/fixtures/delayed_action/delayed_action_results.yml
|
|
170
169
|
- test/test_helper.rb
|
|
171
|
-
|
|
170
|
+
- test/controllers/delayed_action/delayed_action_results_controller_test.rb
|