webhooker 0.3.0 → 0.4.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
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: d081dbd7fc79243fb66f3257ea35cabec51795c2
|
|
4
|
+
data.tar.gz: 837c8efd80566d388b3193067084ba72e19e16f7
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 11c119e8196432731f0e4b6d0fa2893b70090f4ab0d3e17cefbbe5d9ee99ca8743644e22e58a9c29f8c7539ded5d0b77b91021e4aa36222b3cbec54b194a29ef
|
|
7
|
+
data.tar.gz: a9dde55006b6ea4ddbf419e280dcf775ba163c60a8086738ef4421d602362e2345c0d57d13a7e2f7ccac9f57bc87965ebde5afdb42f8584e9c2384d4aa7e1d42
|
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
class CreateWebhookerSubscribers < ActiveRecord::Migration
|
|
1
|
+
class CreateWebhookerSubscribers < ActiveRecord::Migration[5.0]
|
|
2
2
|
def change
|
|
3
3
|
create_table :webhooker_subscribers do |t|
|
|
4
4
|
t.string :url
|
|
5
5
|
t.string :secret
|
|
6
6
|
|
|
7
|
-
t.timestamps
|
|
7
|
+
t.timestamps
|
|
8
8
|
end
|
|
9
9
|
end
|
|
10
10
|
end
|
data/lib/webhooker/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: webhooker
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.4.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- kayhide
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2016-08-18 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rails
|
|
@@ -16,14 +16,14 @@ dependencies:
|
|
|
16
16
|
requirements:
|
|
17
17
|
- - "~>"
|
|
18
18
|
- !ruby/object:Gem::Version
|
|
19
|
-
version:
|
|
19
|
+
version: '5.0'
|
|
20
20
|
type: :runtime
|
|
21
21
|
prerelease: false
|
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
|
23
23
|
requirements:
|
|
24
24
|
- - "~>"
|
|
25
25
|
- !ruby/object:Gem::Version
|
|
26
|
-
version:
|
|
26
|
+
version: '5.0'
|
|
27
27
|
- !ruby/object:Gem::Dependency
|
|
28
28
|
name: sass-rails
|
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -136,6 +136,20 @@ dependencies:
|
|
|
136
136
|
- - ">="
|
|
137
137
|
- !ruby/object:Gem::Version
|
|
138
138
|
version: '0'
|
|
139
|
+
- !ruby/object:Gem::Dependency
|
|
140
|
+
name: rails-controller-testing
|
|
141
|
+
requirement: !ruby/object:Gem::Requirement
|
|
142
|
+
requirements:
|
|
143
|
+
- - ">="
|
|
144
|
+
- !ruby/object:Gem::Version
|
|
145
|
+
version: '0'
|
|
146
|
+
type: :development
|
|
147
|
+
prerelease: false
|
|
148
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
149
|
+
requirements:
|
|
150
|
+
- - ">="
|
|
151
|
+
- !ruby/object:Gem::Version
|
|
152
|
+
version: '0'
|
|
139
153
|
- !ruby/object:Gem::Dependency
|
|
140
154
|
name: spring
|
|
141
155
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -265,6 +279,7 @@ files:
|
|
|
265
279
|
- app/controllers/webhooker/subscribers_controller.rb
|
|
266
280
|
- app/helpers/webhooker/application_helper.rb
|
|
267
281
|
- app/jobs/webhooker/trigger_job.rb
|
|
282
|
+
- app/models/webhooker/application_record.rb
|
|
268
283
|
- app/models/webhooker/subscriber.rb
|
|
269
284
|
- app/views/layouts/webhooker/_messages.html.slim
|
|
270
285
|
- app/views/layouts/webhooker/_paginate_info.html.slim
|
|
@@ -274,7 +289,7 @@ files:
|
|
|
274
289
|
- app/views/webhooker/subscribers/index.html.slim
|
|
275
290
|
- config/routes.rb
|
|
276
291
|
- config/spring.rb
|
|
277
|
-
- db/migrate/
|
|
292
|
+
- db/migrate/20160818115653_create_webhooker_subscribers.rb
|
|
278
293
|
- lib/tasks/webhooker_tasks.rake
|
|
279
294
|
- lib/webhooker.rb
|
|
280
295
|
- lib/webhooker/config.rb
|
|
@@ -301,7 +316,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
301
316
|
version: '0'
|
|
302
317
|
requirements: []
|
|
303
318
|
rubyforge_project:
|
|
304
|
-
rubygems_version: 2.
|
|
319
|
+
rubygems_version: 2.5.1
|
|
305
320
|
signing_key:
|
|
306
321
|
specification_version: 4
|
|
307
322
|
summary: Webhook engine for Rails applications.
|