-
Notifications
You must be signed in to change notification settings - Fork 6
/
omg_pull_request.gemspec
25 lines (22 loc) · 1.17 KB
/
omg_pull_request.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
# -*- encoding: utf-8 -*-
require File.expand_path('../lib/omg_pull_request/version', __FILE__)
Gem::Specification.new do |gem|
gem.authors = ["Ken Mazaika", "Jean Charles Sisk", "Master William Desmarais", "Ian Asaff"]
gem.email = ["[email protected]"]
gem.description = %q{Have tests run automatically for your Github Pull Request}
gem.summary = %q{Have tests run automatically for your Github Pull Request}
gem.homepage = "http://github.com/where/omg_pull_request"
gem.files = `git ls-files`.split($\)
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
gem.name = "omg_pull_request"
gem.require_paths = ["lib"]
gem.version = OmgPullRequest::VERSION
gem.add_runtime_dependency(%q<aws-s3>, ">= 0.6.3")
gem.add_runtime_dependency(%q<faraday>, ">= 0.8.4")
gem.add_runtime_dependency(%q<github_api>, ">= 0.8.2")
gem.add_runtime_dependency(%q<uuid>, ">= 2.3.5")
gem.add_runtime_dependency(%q<rake>, ">= 0.9.2.2")
gem.add_runtime_dependency(%q<activesupport>, ">= 3.1.0")
gem.add_runtime_dependency(%q<i18n>, ">= 0.6.0")
end