lita-rubygems-webhooks 0.1

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 ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: d1286ee4490691dff2a28822468356ba59ca97cc
4
+ data.tar.gz: 2d206963caeddafae57d4962a85cc1fa87468acf
5
+ SHA512:
6
+ metadata.gz: 4fcabf92dd42bb92e95f022de4cec231890a91b2a376d9aea4e17c539108968cd3323e07679542493f420f1c15c59b19676a879df1f3017f8eae8fdf2e216c40
7
+ data.tar.gz: de2e09bcf5c251b0b06e3f28309956a89e5de979f17cee186172520eb49ceefda938124bece79356c93dd83c29f26f7ebb836a3a9e780f30d3125f4d0a5c507a
data/.gitignore ADDED
@@ -0,0 +1,10 @@
1
+ /.bundle/
2
+ /.byebug_history
3
+ /.yardoc
4
+ /Gemfile.lock
5
+ /_yardoc/
6
+ /coverage/
7
+ /doc/
8
+ /pkg/
9
+ /spec/reports/
10
+ /tmp/
data/.gitlab-ci.yml ADDED
@@ -0,0 +1,15 @@
1
+ image: ruby:2.3.1
2
+
3
+ services:
4
+ - redis
5
+
6
+ before_script:
7
+ - bundle install
8
+
9
+ test:rspec:
10
+ script:
11
+ - bundle exec rspec
12
+
13
+ test:rubocop:
14
+ script:
15
+ - bundle exec rubocop
data/.rspec ADDED
@@ -0,0 +1,2 @@
1
+ --format documentation
2
+ --color
data/.rubocop.yml ADDED
@@ -0,0 +1,20 @@
1
+ AllCops:
2
+ TargetRubyVersion: 2.3
3
+ Exclude:
4
+ - '*.gemspec'
5
+ - 'Gemfile*'
6
+ - 'Rakefile'
7
+ - 'bin/*'
8
+
9
+ Metrics/LineLength:
10
+ Max: 120
11
+
12
+ Metrics/AbcSize:
13
+ Max: 30
14
+
15
+ Metrics/ModuleLength:
16
+ Max: 500
17
+
18
+ Documentation:
19
+ Enabled: false
20
+ # naughty, but will enable later
data/.ruby-version ADDED
@@ -0,0 +1 @@
1
+ 2.3.1
data/.travis.yml ADDED
@@ -0,0 +1,5 @@
1
+ sudo: false
2
+ language: ruby
3
+ rvm:
4
+ - 2.3.0
5
+ before_install: gem install bundler -v 1.12.5
@@ -0,0 +1,49 @@
1
+ # Contributor Code of Conduct
2
+
3
+ As contributors and maintainers of this project, and in the interest of
4
+ fostering an open and welcoming community, we pledge to respect all people who
5
+ contribute through reporting issues, posting feature requests, updating
6
+ documentation, submitting pull requests or patches, and other activities.
7
+
8
+ We are committed to making participation in this project a harassment-free
9
+ experience for everyone, regardless of level of experience, gender, gender
10
+ identity and expression, sexual orientation, disability, personal appearance,
11
+ body size, race, ethnicity, age, religion, or nationality.
12
+
13
+ Examples of unacceptable behavior by participants include:
14
+
15
+ * The use of sexualized language or imagery
16
+ * Personal attacks
17
+ * Trolling or insulting/derogatory comments
18
+ * Public or private harassment
19
+ * Publishing other's private information, such as physical or electronic
20
+ addresses, without explicit permission
21
+ * Other unethical or unprofessional conduct
22
+
23
+ Project maintainers have the right and responsibility to remove, edit, or
24
+ reject comments, commits, code, wiki edits, issues, and other contributions
25
+ that are not aligned to this Code of Conduct, or to ban temporarily or
26
+ permanently any contributor for other behaviors that they deem inappropriate,
27
+ threatening, offensive, or harmful.
28
+
29
+ By adopting this Code of Conduct, project maintainers commit themselves to
30
+ fairly and consistently applying these principles to every aspect of managing
31
+ this project. Project maintainers who do not follow or enforce the Code of
32
+ Conduct may be permanently removed from the project team.
33
+
34
+ This code of conduct applies both within project spaces and in public spaces
35
+ when an individual is representing the project or its community.
36
+
37
+ Instances of abusive, harassing, or otherwise unacceptable behavior may be
38
+ reported by contacting a project maintainer at adam.buckland@rightscale.com. All
39
+ complaints will be reviewed and investigated and will result in a response that
40
+ is deemed necessary and appropriate to the circumstances. Maintainers are
41
+ obligated to maintain confidentiality with regard to the reporter of an
42
+ incident.
43
+
44
+ This Code of Conduct is adapted from the [Contributor Covenant][homepage],
45
+ version 1.3.0, available at
46
+ [http://contributor-covenant.org/version/1/3/0/][version]
47
+
48
+ [homepage]: http://contributor-covenant.org
49
+ [version]: http://contributor-covenant.org/version/1/3/0/
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in lita-rubygems-webhooks.gemspec
4
+ gemspec
data/LICENSE.txt ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2016 Adam Buckland
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in
13
+ all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
+ THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,62 @@
1
+ # Lita-Rubygems-Webhooks
2
+
3
+ Lita-Rubygems-Webhooks allows a Lita bot to register and receive webhooks from Rubygems, alerting a chat channel when new versions of gems are released
4
+
5
+ ## Installation
6
+
7
+ Add this line to your application's Gemfile:
8
+
9
+ ```ruby
10
+ gem 'lita-rubygems-webhooks'
11
+ ```
12
+
13
+ And then execute:
14
+
15
+ $ bundle
16
+
17
+ Or install it yourself as:
18
+
19
+ $ gem install lita-rubygems-webhooks
20
+
21
+ ## Webhooks Registration
22
+
23
+ The RubyGems platform requires that webhooks be registered via it's [API](http://guides.rubygems.org/rubygems-org-api/) so therefore the Lita handler has to register it's own webhooks upon startup. This plugin therefore requires API credentials in order to operate. The bot will _only_ register & deregister webhooks that are associated with it's domain/URL
24
+
25
+ ## Configuration
26
+
27
+ ### Required attributes
28
+ - `api_key` (`String`) - The RubyGems API key to register webhooks with RubyGems (see above)
29
+ - `domain` (`String`) - The domain/IP address of the Lita bot, used for registering itself with RubyGems. URLS will be created of the form `http://#{domain}/rubygems`
30
+ - `gems` (`Array<String>`) - A list of gems to watch for new pushes
31
+ - `alert_channel` (`String`) - The chat channel to send messages to when new versions are published
32
+
33
+ ### Example
34
+ ```
35
+ Lita.configure do |config|
36
+ config.handlers.rubygems_webhooks.api_key = "d34db33f"
37
+ config.handlers.rubygems_webhooks.domain = 'lita.example.com'
38
+ config.handlers.rubygems_webhooks.gems = ["rails"]
39
+ config.handlers.rubygems_webhooks.alert_channel = 'shell'
40
+ end
41
+ ```
42
+
43
+ ## Usage
44
+
45
+ 1. Setup which gems and room you wish to register for RubyGems observations
46
+ 2. The bot can respond with which gems it is watching with a direct message/command of `rubygems`
47
+
48
+ ## Development
49
+
50
+ After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
51
+
52
+ To install this gem onto your local machine, run `bundle exec rake install`.
53
+
54
+ ## Contributing
55
+
56
+ Bug reports and pull requests are welcome on [GitLab](https://gitlab.com/adambuckland/lita-rubygems-webhooks).
57
+
58
+
59
+ ## License
60
+
61
+ The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).
62
+
data/Rakefile ADDED
@@ -0,0 +1,6 @@
1
+ require 'bundler/gem_tasks'
2
+ require 'rspec/core/rake_task'
3
+
4
+ RSpec::Core::RakeTask.new(:spec)
5
+
6
+ task default: :spec
data/bin/console ADDED
@@ -0,0 +1,14 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require 'bundler/setup'
4
+ require 'lita/rubygems/webhooks'
5
+
6
+ # You can add fixtures and/or initialization code here to make experimenting
7
+ # with your gem easier. You can also use a different console, if you like.
8
+
9
+ # (If you use this, don't forget to add pry to your Gemfile!)
10
+ # require "pry"
11
+ # Pry.start
12
+
13
+ require 'irb'
14
+ IRB.start
data/bin/setup ADDED
@@ -0,0 +1,8 @@
1
+ #!/usr/bin/env bash
2
+ set -euo pipefail
3
+ IFS=$'\n\t'
4
+ set -vx
5
+
6
+ bundle install
7
+
8
+ # Do any other automated setup that you need to do here
@@ -0,0 +1,89 @@
1
+ # frozen_string_literal: true
2
+ require 'gems'
3
+
4
+ module Lita
5
+ module Handlers
6
+ module RubyGemsWebhooks
7
+ module Registrar
8
+ class << self
9
+ attr_accessor :registrar_config
10
+ end
11
+
12
+ def self.configure
13
+ self.registrar_config ||= {}
14
+ yield(self.registrar_config)
15
+ Gems.configure do |config|
16
+ config.key = self.registrar_config['api_key']
17
+ end
18
+ end
19
+
20
+ def self.configure_web_hooks
21
+ remote_hooks = web_hooks
22
+ desired_hooks = self.registrar_config['hooks']
23
+ current_hooks = filter_webhooks(remote_hooks, self.registrar_config['domain'])
24
+
25
+ new_hooks = desired_hooks - current_hooks
26
+ old_hooks = current_hooks - desired_hooks
27
+
28
+ register_hooks(new_hooks, self.registrar_config['domain'])
29
+ deregister_hooks(old_hooks, self.registrar_config['domain'])
30
+ end
31
+
32
+ def self.register_hooks(gem_names, domain)
33
+ gem_names.each do |gem_name|
34
+ register_hook(gem_name, domain)
35
+ end
36
+ end
37
+
38
+ def self.deregister_hooks(gem_names, domain)
39
+ gem_names.each do |gem_name|
40
+ deregister_hook(gem_name, domain)
41
+ end
42
+ end
43
+
44
+ def self.register_hook(gem_name, domain)
45
+ Gems.add_web_hook(gem_name, webhook_url(domain))
46
+ end
47
+
48
+ def self.deregister_hook(gem_name, domain)
49
+ Gems.remove_web_hook(gem_name, webhook_url(domain))
50
+ end
51
+
52
+ def self.web_hooks
53
+ Gems.web_hooks
54
+ end
55
+
56
+ # Example output
57
+ # {
58
+ # "rails": [
59
+ # {
60
+ # "failure_count": 0,
61
+ # "url": "http://3195fa79.ngrok.io/payload"
62
+ # },
63
+ # {
64
+ # "failure_count": 0,
65
+ # "url": "http:/google.com/payload"
66
+ # }
67
+ # ]
68
+ # }
69
+ def self.filter_webhooks(hooks, domain, registered: true)
70
+ hooks.select do |_, gem_hooks|
71
+ if registered
72
+ gem_hooks.any? { |hook| hook['url'].include?(domain) }
73
+ else
74
+ !gem_hooks.any? { |hook| hook['url'].include?(domain) }
75
+ end
76
+ end.keys.map(&:to_s)
77
+ end
78
+
79
+ def self.webhook_url(domain)
80
+ "http://#{domain}/rubygems"
81
+ end
82
+
83
+ def self.clear_config
84
+ self.registrar_config = {}
85
+ end
86
+ end
87
+ end
88
+ end
89
+ end
@@ -0,0 +1,93 @@
1
+ # frozen_string_literal: true
2
+ require 'digest'
3
+ require 'json'
4
+
5
+ module Lita
6
+ module Handlers
7
+ module RubyGemsWebhooks
8
+ class WebhookHandler < Lita::Handler
9
+ class << self
10
+ def name
11
+ 'RubygemsWebhooks'
12
+ end
13
+ end
14
+
15
+ # Rubygems API key
16
+ config :api_key, type: String, required: true
17
+ # Domain of the Lita bot, where webhooks will be registered to
18
+ config :domain, type: String, required: true
19
+ # Array of gems to track
20
+ config :gems, type: Array, required: true
21
+ # (Optional) Chat channel to alert
22
+ config :alert_channel, type: String, required: true
23
+
24
+ route 'rubygems', :respond, command: true
25
+
26
+ on :loaded, :start_registrar
27
+
28
+ http.post('/rubygems', :handle_webhook)
29
+
30
+ def respond(response)
31
+ response.reply index_message
32
+ end
33
+
34
+ def handle_webhook(request, response)
35
+ gem_info = JSON.parse(request.body.read)
36
+ auth_header = request.env['HTTP_AUTHORIZATION']
37
+ unless authentic_token?(auth_header, gem_info['name'], gem_info['version'], config.api_key)
38
+ return handle_unauthentic_token(response)
39
+ end
40
+ target = Source.new(room: config.alert_channel)
41
+ robot.send_messages(target, update_message(gem_info))
42
+ response.status = 200
43
+ response
44
+ end
45
+
46
+ def start_registrar(_payload)
47
+ Registrar.configure do |configuration|
48
+ configuration['api_key'] = config.api_key
49
+ configuration['domain'] = config.domain
50
+ configuration['hooks'] = config.gems
51
+ end
52
+ Registrar.configure_web_hooks
53
+ end
54
+
55
+ private
56
+
57
+ # An authentic Authorization token will be the SHA2 of
58
+ # gem_name, gem_version and API key
59
+ def authentic_token?(presented_token, gem_name, gem_version, api_key)
60
+ false if [presented_token, gem_name, gem_version, api_key].include?(nil)
61
+ expected_token = Digest::SHA256.new
62
+ expected_token << (gem_name + gem_version + api_key)
63
+ expected_token == presented_token
64
+ end
65
+
66
+ def handle_unauthentic_token(response)
67
+ response.status = 403
68
+ response
69
+ end
70
+
71
+ def index_message
72
+ <<~EOS
73
+ #{robot.name} is currently observing the following gems:
74
+ #{'- ' + gems.join("\n- ")}
75
+ EOS
76
+ end
77
+
78
+ def update_message(gem_info)
79
+ <<~EOS
80
+ #{gem_info['name']} gem has been updated!
81
+ #{gem_info['info']}
82
+ New version: #{gem_info['version']}
83
+ EOS
84
+ end
85
+
86
+ def gems
87
+ config.gems
88
+ end
89
+ end
90
+ Lita.register_handler(WebhookHandler)
91
+ end
92
+ end
93
+ end
@@ -0,0 +1,14 @@
1
+ # frozen_string_literal: true
2
+ module Lita
3
+ module Handlers
4
+ module RubyGemsWebhooks
5
+ class << self
6
+ end
7
+ end
8
+ end
9
+ end
10
+
11
+ require_relative 'rubygems_webhooks/webhook_handler'
12
+ require_relative 'rubygems_webhooks/registrar'
13
+
14
+ # Lita::Handlers::RubyGemsWebhooks::Registrar.configure_web_hooks
@@ -0,0 +1,4 @@
1
+ # frozen_string_literal: true
2
+ require 'lita'
3
+
4
+ require_relative 'lita/handlers/rubygems_webhooks'
@@ -0,0 +1,30 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+
5
+ Gem::Specification.new do |spec|
6
+ spec.name = 'lita-rubygems-webhooks'
7
+ spec.version = '0.1'
8
+ spec.authors = ['Adam Buckland']
9
+ spec.email = ['adam.buckland@rightscale.com']
10
+
11
+ spec.summary = 'A Lita plugin to register and receive RubyGems webhooks'
12
+ spec.homepage = 'https://gitlab.com/adambuckland/lita-rubygems-webhooks'
13
+ spec.license = 'MIT'
14
+ spec.metadata = { "lita_plugin_type" => "handler" }
15
+
16
+ spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
17
+ spec.bindir = 'exe'
18
+ spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
19
+ spec.require_paths = ['lib']
20
+
21
+ spec.add_development_dependency 'bundler', '~> 1.12'
22
+ spec.add_development_dependency 'rake', '~> 10.0'
23
+ spec.add_development_dependency 'rspec', '~> 3.0'
24
+ spec.add_development_dependency 'rubocop', '~> 0.41'
25
+ spec.add_development_dependency 'rack-test', '~> 0.6'
26
+ spec.add_development_dependency 'byebug', '~> 9.0'
27
+
28
+ spec.add_runtime_dependency 'lita', '>= 4.7'
29
+ spec.add_runtime_dependency 'gems', '~> 0.8'
30
+ end
metadata ADDED
@@ -0,0 +1,175 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: lita-rubygems-webhooks
3
+ version: !ruby/object:Gem::Version
4
+ version: '0.1'
5
+ platform: ruby
6
+ authors:
7
+ - Adam Buckland
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2016-07-25 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: bundler
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '1.12'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '1.12'
27
+ - !ruby/object:Gem::Dependency
28
+ name: rake
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '10.0'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '10.0'
41
+ - !ruby/object:Gem::Dependency
42
+ name: rspec
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: '3.0'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: '3.0'
55
+ - !ruby/object:Gem::Dependency
56
+ name: rubocop
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - "~>"
60
+ - !ruby/object:Gem::Version
61
+ version: '0.41'
62
+ type: :development
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - "~>"
67
+ - !ruby/object:Gem::Version
68
+ version: '0.41'
69
+ - !ruby/object:Gem::Dependency
70
+ name: rack-test
71
+ requirement: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - "~>"
74
+ - !ruby/object:Gem::Version
75
+ version: '0.6'
76
+ type: :development
77
+ prerelease: false
78
+ version_requirements: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - "~>"
81
+ - !ruby/object:Gem::Version
82
+ version: '0.6'
83
+ - !ruby/object:Gem::Dependency
84
+ name: byebug
85
+ requirement: !ruby/object:Gem::Requirement
86
+ requirements:
87
+ - - "~>"
88
+ - !ruby/object:Gem::Version
89
+ version: '9.0'
90
+ type: :development
91
+ prerelease: false
92
+ version_requirements: !ruby/object:Gem::Requirement
93
+ requirements:
94
+ - - "~>"
95
+ - !ruby/object:Gem::Version
96
+ version: '9.0'
97
+ - !ruby/object:Gem::Dependency
98
+ name: lita
99
+ requirement: !ruby/object:Gem::Requirement
100
+ requirements:
101
+ - - ">="
102
+ - !ruby/object:Gem::Version
103
+ version: '4.7'
104
+ type: :runtime
105
+ prerelease: false
106
+ version_requirements: !ruby/object:Gem::Requirement
107
+ requirements:
108
+ - - ">="
109
+ - !ruby/object:Gem::Version
110
+ version: '4.7'
111
+ - !ruby/object:Gem::Dependency
112
+ name: gems
113
+ requirement: !ruby/object:Gem::Requirement
114
+ requirements:
115
+ - - "~>"
116
+ - !ruby/object:Gem::Version
117
+ version: '0.8'
118
+ type: :runtime
119
+ prerelease: false
120
+ version_requirements: !ruby/object:Gem::Requirement
121
+ requirements:
122
+ - - "~>"
123
+ - !ruby/object:Gem::Version
124
+ version: '0.8'
125
+ description:
126
+ email:
127
+ - adam.buckland@rightscale.com
128
+ executables: []
129
+ extensions: []
130
+ extra_rdoc_files: []
131
+ files:
132
+ - ".gitignore"
133
+ - ".gitlab-ci.yml"
134
+ - ".rspec"
135
+ - ".rubocop.yml"
136
+ - ".ruby-version"
137
+ - ".travis.yml"
138
+ - CODE_OF_CONDUCT.md
139
+ - Gemfile
140
+ - LICENSE.txt
141
+ - README.md
142
+ - Rakefile
143
+ - bin/console
144
+ - bin/setup
145
+ - lib/lita/handlers/rubygems_webhooks.rb
146
+ - lib/lita/handlers/rubygems_webhooks/registrar.rb
147
+ - lib/lita/handlers/rubygems_webhooks/webhook_handler.rb
148
+ - lib/lita_rubygems_webhooks.rb
149
+ - lita-rubygems-webhooks.gemspec
150
+ homepage: https://gitlab.com/adambuckland/lita-rubygems-webhooks
151
+ licenses:
152
+ - MIT
153
+ metadata:
154
+ lita_plugin_type: handler
155
+ post_install_message:
156
+ rdoc_options: []
157
+ require_paths:
158
+ - lib
159
+ required_ruby_version: !ruby/object:Gem::Requirement
160
+ requirements:
161
+ - - ">="
162
+ - !ruby/object:Gem::Version
163
+ version: '0'
164
+ required_rubygems_version: !ruby/object:Gem::Requirement
165
+ requirements:
166
+ - - ">="
167
+ - !ruby/object:Gem::Version
168
+ version: '0'
169
+ requirements: []
170
+ rubyforge_project:
171
+ rubygems_version: 2.5.1
172
+ signing_key:
173
+ specification_version: 4
174
+ summary: A Lita plugin to register and receive RubyGems webhooks
175
+ test_files: []