forked from bigcommerce/bigcommerce-api-ruby
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbigcommerce.gemspec
21 lines (20 loc) · 947 Bytes
/
bigcommerce.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# -*- encoding: utf-8 -*-
require File.expand_path('../lib/bigcommerce/version', __FILE__)
Gem::Specification.new do |s|
s.name = "bigcommerce"
s.version = BigCommerce::VERSION
s.date = Time.now.strftime("%Y-%m-%d")
s.summary = "Enables Ruby applications to communicate with the BigCommerce API"
s.email = "[email protected]"
s.homepage = "http://github.com/bigcommerce/bigcommerce-api-ruby"
s.description = "Enables Ruby applications to communicate with the BigCommerce API V2 (currently in beta trial)."
s.has_rdoc = false
s.authors = ["BigCommerce"]
s.files = ["LICENSE", "Rakefile", "README.md", "bigcommerce.gemspec"] + Dir['./**/*.rb'] + Dir['./**/*.crt']
s.add_dependency('json')
s.add_dependency('activesupport')
s.add_development_dependency("rake")
s.add_development_dependency("fakeweb")
s.add_development_dependency("mocha")
s.add_development_dependency("rspec", '~> 2.11')
end