site_hook 0.6.19 → 0.6.21
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/.gitignore +1 -0
- data/Gemfile.lock +2 -2
- data/lib/site_hook/version.rb +1 -1
- data/site_hook.gemspec +8 -8
- metadata +8 -7
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 7d95687c03ff63f39478acd38108b5c9753049e1a4564512b0b9b0b8ddae0f1c
|
|
4
|
+
data.tar.gz: b8e3677d732fd9dc60da608ed28c02152844fb0a8971de87f935c1c133db9836
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 487aa887cb88e954b4f3b5661b94a63552b387020899560babc9a02796fd12f7c1290442fbaaf70832ddd800a7038f07a357d713f2c3000d19ae820a6059a596
|
|
7
|
+
data.tar.gz: a521484e20dc201b5c39388d70e41df54aaef9a1aab041234e8aa2330f10ab9f08c04a1346029d3b9516e329f9bfaec93120391c3bccd17e59c402856700c61a
|
data/.gitignore
CHANGED
data/Gemfile.lock
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
PATH
|
|
2
2
|
remote: .
|
|
3
3
|
specs:
|
|
4
|
-
site_hook (0.6.
|
|
4
|
+
site_hook (0.6.19)
|
|
5
5
|
activesupport (~> 5.1)
|
|
6
6
|
git (~> 1.3)
|
|
7
7
|
haml (~> 5.0)
|
|
@@ -12,7 +12,7 @@ PATH
|
|
|
12
12
|
random_password (~> 0.1.1)
|
|
13
13
|
recursive-open-struct (~> 1.1)
|
|
14
14
|
sass (~> 3.5)
|
|
15
|
-
sinatra (~> 2.0, >= 2.0.2)
|
|
15
|
+
sinatra (~> 2.0.2, >= 2.0.2)
|
|
16
16
|
sinatra-contrib (~> 2.0, >= 2.0.2)
|
|
17
17
|
thin (~> 1.7)
|
|
18
18
|
thor (~> 0.20)
|
data/lib/site_hook/version.rb
CHANGED
data/site_hook.gemspec
CHANGED
|
@@ -8,17 +8,17 @@ Gem::Specification.new do |spec|
|
|
|
8
8
|
spec.authors = ['Ken Spencer']
|
|
9
9
|
spec.email = ['me@iotaspencer.me']
|
|
10
10
|
|
|
11
|
-
spec.summary = %q{Catch a
|
|
11
|
+
spec.summary = %q{Catch a POST request from a git service webhook and build a jekyll site.}
|
|
12
12
|
spec.homepage = 'https://iotaspencer.me/projects/site_hook/'
|
|
13
13
|
spec.license = 'MIT'
|
|
14
|
-
|
|
14
|
+
spec.required_ruby_version = '>= 2.3'
|
|
15
15
|
# Prevent pushing this gem to RubyGems.org. To allow pushes either set the 'allowed_push_host'
|
|
16
16
|
# to allow pushing to a single host or delete this section to allow pushing to any host.
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
17
|
+
spec.metadata = {
|
|
18
|
+
'source_uri' => 'https://github.com/IotaSpencer/site_hook',
|
|
19
|
+
'source_code_uri' => 'https://github.com/IotaSpencer/site_hook',
|
|
20
|
+
'tutorial_uri' => 'https://iotaspencer.me/projects/site_hook/'
|
|
21
|
+
}
|
|
22
22
|
spec.files = `git ls-files -z`.split("\x0").reject do |f|
|
|
23
23
|
f.match(%r{^(spec)/})
|
|
24
24
|
end
|
|
@@ -35,7 +35,7 @@ Gem::Specification.new do |spec|
|
|
|
35
35
|
spec.add_runtime_dependency 'random_password', '~> 0.1.1'
|
|
36
36
|
spec.add_runtime_dependency 'recursive-open-struct', '~> 1.1'
|
|
37
37
|
spec.add_runtime_dependency 'sass', '~> 3.5'
|
|
38
|
-
spec.add_runtime_dependency 'sinatra', '~> 2.0', '>= 2.0.2'
|
|
38
|
+
spec.add_runtime_dependency 'sinatra', '~> 2.0.2', '>= 2.0.2'
|
|
39
39
|
spec.add_runtime_dependency 'sinatra-contrib', '~> 2.0', '>= 2.0.2'
|
|
40
40
|
spec.add_runtime_dependency 'thin', '~> 1.7'
|
|
41
41
|
spec.add_runtime_dependency 'thor', '~> 0.20'
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: site_hook
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.6.
|
|
4
|
+
version: 0.6.21
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Ken Spencer
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2018-10-
|
|
11
|
+
date: 2018-10-10 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: activesupport
|
|
@@ -162,7 +162,7 @@ dependencies:
|
|
|
162
162
|
requirements:
|
|
163
163
|
- - "~>"
|
|
164
164
|
- !ruby/object:Gem::Version
|
|
165
|
-
version:
|
|
165
|
+
version: 2.0.2
|
|
166
166
|
- - ">="
|
|
167
167
|
- !ruby/object:Gem::Version
|
|
168
168
|
version: 2.0.2
|
|
@@ -172,7 +172,7 @@ dependencies:
|
|
|
172
172
|
requirements:
|
|
173
173
|
- - "~>"
|
|
174
174
|
- !ruby/object:Gem::Version
|
|
175
|
-
version:
|
|
175
|
+
version: 2.0.2
|
|
176
176
|
- - ">="
|
|
177
177
|
- !ruby/object:Gem::Version
|
|
178
178
|
version: 2.0.2
|
|
@@ -309,7 +309,8 @@ licenses:
|
|
|
309
309
|
- MIT
|
|
310
310
|
metadata:
|
|
311
311
|
source_uri: https://github.com/IotaSpencer/site_hook
|
|
312
|
-
|
|
312
|
+
source_code_uri: https://github.com/IotaSpencer/site_hook
|
|
313
|
+
tutorial_uri: https://iotaspencer.me/projects/site_hook/
|
|
313
314
|
post_install_message:
|
|
314
315
|
rdoc_options: []
|
|
315
316
|
require_paths:
|
|
@@ -318,7 +319,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
318
319
|
requirements:
|
|
319
320
|
- - ">="
|
|
320
321
|
- !ruby/object:Gem::Version
|
|
321
|
-
version: '
|
|
322
|
+
version: '2.3'
|
|
322
323
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
323
324
|
requirements:
|
|
324
325
|
- - ">="
|
|
@@ -329,5 +330,5 @@ rubyforge_project:
|
|
|
329
330
|
rubygems_version: 2.7.6
|
|
330
331
|
signing_key:
|
|
331
332
|
specification_version: 4
|
|
332
|
-
summary: Catch a
|
|
333
|
+
summary: Catch a POST request from a git service webhook and build a jekyll site.
|
|
333
334
|
test_files: []
|