forked from paulsingh/angellist-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
angellist_api.gemspec
31 lines (25 loc) · 1.32 KB
/
angellist_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
$:.push File.expand_path("../lib", __FILE__)
require "angellist_api/version"
# Describe your gem and declare its dependencies:
Gem::Specification.new do |s|
s.name = "angellist_api"
s.version = AngellistApi::VERSION
s.authors = ["Paul Singh", "Ches Martin"]
s.email = ["[email protected]", "[email protected]"]
s.homepage = "https://github.com/paulsingh/angellist-api"
s.summary = "Ruby wrapper for the Angellist API."
s.description = "Ruby wrapper for the Angellist API. The AngelList API provides developers with a RESTful interface to the AngelList data set. Some endpoints are public and require no authentication."
s.files = Dir["lib/**/*"] + ["MIT-LICENSE", "Rakefile", "README.md", "CHANGELOG.md"]
s.test_files = Dir["spec/**/*"]
s.add_dependency 'hashie', '>= 1.1.0'
s.add_dependency 'faraday', '~> 0.7'
s.add_dependency 'faraday_middleware', '~> 0.7'
s.add_dependency 'multi_json', '~> 1.0'
s.add_development_dependency "rdiscount", "~> 2.0"
s.add_development_dependency "rspec", "~> 3.2"
s.add_development_dependency "simplecov", "~> 0.7"
s.add_development_dependency "timecop", "~> 0.6"
s.add_development_dependency "vcr", "~> 2.1"
s.add_development_dependency "webmock", "~> 1.21"
s.add_development_dependency "yard", "~> 0.8"
end