forked from blindMoe/magento_client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmagento_client.gemspec
27 lines (23 loc) · 1.05 KB
/
magento_client.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
$:.push File.expand_path("../lib", __FILE__)
# Maintain your gem's version:
require "magento_client/version"
# Describe your gem and declare its dependencies:
Gem::Specification.new do |spec|
spec.name = "magento_client"
spec.version = MagentoClient::VERSION
spec.authors = ["Nicholas Fetchak"]
spec.email = ["[email protected]"]
spec.summary = "A Ruby interface to Magento's REST API"
spec.description = "A Ruby interface to Magento's REST API with automatic OAuth handshaking"
spec.homepage = "https://github.com/fetchak/magento_client"
spec.license = "MIT"
spec.files = `git ls-files -z`.split("\x0")
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
spec.require_paths = ["lib"]
spec.add_dependency "oauth", "~> 0"
spec.add_dependency "httparty", "~> 0"
spec.add_dependency "http-cookie", "~> 1.0"
spec.add_dependency "nokogiri", "~> 1.6"
spec.add_dependency "multi_json", "~> 1"
end