forked from bigcommerce/bigcommerce-api-ruby
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbigcommerce.gemspec
More file actions
26 lines (21 loc) · 843 Bytes
/
bigcommerce.gemspec
File metadata and controls
26 lines (21 loc) · 843 Bytes
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
# frozen_string_literal: true
$LOAD_PATH.unshift(File.expand_path('lib', __dir__))
require 'bigcommerce/version'
Gem::Specification.new do |s|
s.name = 'bigcommerce'
s.version = Bigcommerce::VERSION
s.platform = Gem::Platform::RUBY
s.required_ruby_version = '>= 2.7.5'
s.license = 'MIT'
s.authors = ['BigCommerce Engineering']
s.homepage = 'https://github.com/bigcommerce/bigcommerce-api-ruby'
s.summary = 'Ruby client library for the BigCommerce API'
s.description = s.summary
s.metadata['rubygems_mfa_required'] = 'true'
s.require_paths = ['lib']
s.files = Dir['README.md', 'lib/**/*', 'bigcommerce.gemspec']
s.add_dependency 'faraday', '>= 1.1.0', '< 3'
s.add_dependency 'faraday_middleware', '>= 1.1.0', '< 3'
s.add_dependency 'hashie', '>= 3.4', '~> 4'
s.add_dependency 'jwt', '>= 1.5.4', '~> 2'
end