-
Notifications
You must be signed in to change notification settings - Fork 17
/
pco_api.gemspec
25 lines (20 loc) · 1.02 KB
/
pco_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
$:.push File.expand_path('../lib', __FILE__)
require 'pco/api/version'
Gem::Specification.new do |s|
s.name = "pco_api"
s.version = PCO::API::VERSION
s.homepage = "https://github.com/planningcenter/pco_api_ruby"
s.summary = "API wrapper for api.planningcenteronline.com"
s.description = "pco_api is a gem for working with the RESTful JSON API at api.planningcenteronline.com using HTTP basic auth or OAuth 2.0. This library can talk to any endpoint the API provides, since it is written to build endpoint URLs dynamically using method_missing."
s.author = "Planning Center Online"
s.license = "MIT"
s.email = "[email protected]"
s.required_ruby_version = '>= 2.0.0'
s.files = Dir["lib/**/*", "README.md"]
s.test_files = Dir["spec/**/*"]
s.add_dependency "faraday", "> 2.0"
s.add_dependency "faraday-excon", "~> 2.1"
s.add_development_dependency "rspec", "~> 3.2"
s.add_development_dependency "webmock", "~> 1.21"
s.add_development_dependency "pry", "~> 0.10"
end