relevance-github_hook 0.5.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.
- data/History.txt +3 -0
- data/Manifest +15 -0
- data/README.txt +46 -0
- data/github_hook.gemspec +45 -0
- data/lib/github_hook.rb +20 -0
- data/spec/github_hook_spec.rb +47 -0
- data/spec/helper.rb +4 -0
- data/spec/payload.rb +35 -0
- data/spec/vendor/bacon-0.9.0/COPYING +18 -0
- data/spec/vendor/bacon-0.9.0/RDOX +35 -0
- data/spec/vendor/bacon-0.9.0/README +227 -0
- data/spec/vendor/bacon-0.9.0/Rakefile +133 -0
- data/spec/vendor/bacon-0.9.0/bin/bacon +110 -0
- data/spec/vendor/bacon-0.9.0/lib/bacon.rb +298 -0
- data/spec/vendor/bacon-0.9.0/test/spec_bacon.rb +310 -0
- metadata +74 -0
metadata
ADDED
@@ -0,0 +1,74 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: relevance-github_hook
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.5.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Rob Sanheim
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
|
12
|
+
date: 2008-05-09 00:00:00 -07:00
|
13
|
+
default_executable:
|
14
|
+
dependencies: []
|
15
|
+
|
16
|
+
description: Wrapper around the github post receive JSON payload.
|
17
|
+
email: opensource@thinkrelevance.com
|
18
|
+
executables: []
|
19
|
+
|
20
|
+
extensions: []
|
21
|
+
|
22
|
+
extra_rdoc_files:
|
23
|
+
- History.txt
|
24
|
+
- lib/github_hook.rb
|
25
|
+
- README.txt
|
26
|
+
files:
|
27
|
+
- History.txt
|
28
|
+
- lib/github_hook.rb
|
29
|
+
- Manifest
|
30
|
+
- README.txt
|
31
|
+
- spec/github_hook_spec.rb
|
32
|
+
- spec/helper.rb
|
33
|
+
- spec/payload.rb
|
34
|
+
- spec/vendor/bacon-0.9.0/bin/bacon
|
35
|
+
- spec/vendor/bacon-0.9.0/COPYING
|
36
|
+
- spec/vendor/bacon-0.9.0/lib/bacon.rb
|
37
|
+
- spec/vendor/bacon-0.9.0/Rakefile
|
38
|
+
- spec/vendor/bacon-0.9.0/RDOX
|
39
|
+
- spec/vendor/bacon-0.9.0/README
|
40
|
+
- spec/vendor/bacon-0.9.0/test/spec_bacon.rb
|
41
|
+
- github_hook.gemspec
|
42
|
+
has_rdoc: true
|
43
|
+
homepage: http://opensource.thinkrelevance.com/wiki/github_hook
|
44
|
+
post_install_message:
|
45
|
+
rdoc_options:
|
46
|
+
- --line-numbers
|
47
|
+
- --inline-source
|
48
|
+
- --title
|
49
|
+
- Github_hook
|
50
|
+
- --main
|
51
|
+
- README.txt
|
52
|
+
require_paths:
|
53
|
+
- lib
|
54
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
55
|
+
requirements:
|
56
|
+
- - ">="
|
57
|
+
- !ruby/object:Gem::Version
|
58
|
+
version: "0"
|
59
|
+
version:
|
60
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
61
|
+
requirements:
|
62
|
+
- - ">="
|
63
|
+
- !ruby/object:Gem::Version
|
64
|
+
version: "0"
|
65
|
+
version:
|
66
|
+
requirements: []
|
67
|
+
|
68
|
+
rubyforge_project: thinkrelevance
|
69
|
+
rubygems_version: 1.0.1
|
70
|
+
signing_key:
|
71
|
+
specification_version: 2
|
72
|
+
summary: Wrapper around the github post receive JSON payload.
|
73
|
+
test_files:
|
74
|
+
- spec/github_hook_spec.rb
|