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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: d4bac39a05ecc71585ed6c46db337f651709a909346fb8f1cd7ece14e4ec187f
4
- data.tar.gz: d0f676b4134992ce1000e2eb110ae13dc3bc5fcc9e0c2566b2ae3f5169b5fb61
3
+ metadata.gz: 7d95687c03ff63f39478acd38108b5c9753049e1a4564512b0b9b0b8ddae0f1c
4
+ data.tar.gz: b8e3677d732fd9dc60da608ed28c02152844fb0a8971de87f935c1c133db9836
5
5
  SHA512:
6
- metadata.gz: 76c5c681b64b7ec9789a1699b1d193391a0c80386a9585b11e8ad16e69b41acc7afa8789d4a802956d7c3a7eb834fa8c5d948416a2fdcca4a87585c5d54c20c9
7
- data.tar.gz: 3c3a9a05d9586f6db5d478b6772fce4369b9b447ecf189299a48874fc4dfacfcc221ef6bd87cbc0c379803e443dddb177577aac34d915cd7fb98b09870eb565d
6
+ metadata.gz: 487aa887cb88e954b4f3b5661b94a63552b387020899560babc9a02796fd12f7c1290442fbaaf70832ddd800a7038f07a357d713f2c3000d19ae820a6059a596
7
+ data.tar.gz: a521484e20dc201b5c39388d70e41df54aaef9a1aab041234e8aa2330f10ab9f08c04a1346029d3b9516e329f9bfaec93120391c3bccd17e59c402856700c61a
data/.gitignore CHANGED
@@ -11,3 +11,4 @@
11
11
  /vendor
12
12
  # rspec failure tracking
13
13
  .rspec_status
14
+ Gemfile.lock
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- site_hook (0.6.18)
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)
@@ -1,3 +1,3 @@
1
1
  module SiteHook
2
- VERSION = "0.6.19"
2
+ VERSION = "0.6.21"
3
3
  end
@@ -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 github webhook and execute a plugin}
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
- if spec.respond_to?(:metadata)
18
- spec.metadata['source_uri'] = 'https://github.com/IotaSpencer/site_hook'
19
- spec.metadata['tutorial'] = 'https://iotaspencer.me/projects/site_hook/'
20
- end
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.19
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-06 00:00:00.000000000 Z
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: '2.0'
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: '2.0'
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
- tutorial: https://iotaspencer.me/projects/site_hook/
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: '0'
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 github webhook and execute a plugin
333
+ summary: Catch a POST request from a git service webhook and build a jekyll site.
333
334
  test_files: []