forked from corthmann/bigcommerce-oauth-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
bigcommerce-oauth-api.gemspec
26 lines (24 loc) · 1.26 KB
/
bigcommerce-oauth-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
require File.expand_path('../lib/bigcommerce-oauth-api/version', __FILE__)
Gem::Specification.new do |s|
s.name = 'bigcommerce-oauth-api'
s.version = BigcommerceOAuthAPI::VERSION.dup
s.date = '2017-07-09'
s.summary = "Ruby client library for Bigcommerce APIs with OAuth and basic authentication support"
s.description = "Connect Ruby applications to Bigcommerce APIs through OAuth or basic authentication"
s.authors = ["Christian Orthmann"]
s.email = 'christian.orthmann@gmail.com'
s.require_path = 'lib'
s.files = `git ls-files`.split("\n") - %w(.rvmrc .gitignore)
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n") - %w(.rvmrc .gitignore)
s.homepage = 'http://rubygems.org/gems/bigcommerce-oauth-api'
s.license = 'MIT'
s.add_development_dependency('rake', '~> 12')
s.add_development_dependency('rspec', '~> 3')
s.add_development_dependency('webmock', '~> 3')
s.add_development_dependency('simplecov', '~> 0')
s.add_development_dependency('simplecov-rcov', '~> 0')
s.add_development_dependency('yard', '~> 0')
s.add_runtime_dependency('faraday', '~> 0.12')
s.add_runtime_dependency('faraday_middleware', '~> 0.13.1')
s.add_runtime_dependency('activesupport', '>= 3.0.0', '< 6.0.0')
end