forked from octokit/octokit.rb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoctokit.gemspec
26 lines (25 loc) · 1.14 KB
/
octokit.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
26
# encoding: utf-8
require File.expand_path('../lib/octokit/version', __FILE__)
Gem::Specification.new do |spec|
spec.add_development_dependency 'bundler', '~> 1.0'
spec.add_dependency 'addressable', '~> 2.2'
spec.add_dependency 'faraday', '~> 0.8'
spec.add_dependency 'faraday_middleware', '~> 0.9'
spec.add_dependency 'hashie', '~> 1.2'
spec.add_dependency 'multi_json', '~> 1.3'
spec.add_dependency 'netrc', '~> 0.7.7'
spec.authors = ["Wynn Netherland", "Erik Michaels-Ober", "Clint Shryock"]
spec.description = %q{Simple wrapper for the GitHub v3 API}
spec.files = %w(.document CHANGELOG.md CONTRIBUTING.md LICENSE.md README.md Rakefile octokit.gemspec)
spec.files += Dir.glob("lib/**/*.rb")
spec.files += Dir.glob("spec/**/*")
spec.homepage = 'https://github.com/pengwynn/octokit'
spec.licenses = ['MIT']
spec.name = 'octokit'
spec.require_paths = ['lib']
spec.required_rubygems_version = Gem::Requirement.new('>= 1.3.6')
spec.summary = spec.description
spec.test_files = Dir.glob("spec/**/*")
spec.version = Octokit::VERSION
end