-
Notifications
You must be signed in to change notification settings - Fork 316
/
github_api.gemspec
33 lines (28 loc) · 1.53 KB
/
github_api.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
27
28
29
30
31
32
33
# frozen_string_literal: true
require_relative "lib/github_api/version"
Gem::Specification.new do |gem|
gem.name = "github_api"
gem.version = Github::VERSION
gem.authors = ["Piotr Murach"]
gem.email = ["[email protected]"]
gem.homepage = "http://piotrmurach.github.io/github/"
gem.summary = "Ruby client for the official GitHub API"
gem.description = %q{ Ruby client that supports all of the GitHub API methods. It"s build in a modular way, that is, you can either instantiate the whole api wrapper Github.new or use parts of it e.i. Github::Client::Repos.new if working solely with repositories is your main concern. Intuitive query methods allow you easily call API endpoints. }
gem.license = "MIT"
gem.required_ruby_version = ">= 2.0.0"
gem.files = Dir["lib/**/*"]
gem.require_paths = %w[ lib ]
gem.extra_rdoc_files = ["LICENSE.txt", "README.md", "CHANGELOG.md"]
gem.add_dependency "addressable", "~> 2.4"
gem.add_dependency "hashie", "~> 3.5", ">= 3.5.2"
gem.add_dependency "faraday", ">= 0.8", "< 2"
gem.add_dependency "oauth2", "~> 1.0"
gem.add_dependency "descendants_tracker", "~> 0.0.4"
gem.add_development_dependency "bundler", ">= 1.5.0"
gem.add_development_dependency "rake"
gem.add_development_dependency "cucumber", "~> 2.1"
gem.add_development_dependency "rspec", "~> 3"
gem.add_development_dependency "rspec-its","~> 1"
gem.add_development_dependency "vcr", "~> 3.0.3"
gem.add_development_dependency "webmock", "~> 3.8"
end