forked from woocommerce/wc-api-ruby
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwoocommerce_api.gemspec
More file actions
27 lines (21 loc) · 914 Bytes
/
woocommerce_api.gemspec
File metadata and controls
27 lines (21 loc) · 914 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
27
# -*- encoding: utf-8 -*-
lib = File.expand_path("../lib", __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require "rubygems"
require "woocommerce_api/version"
Gem::Specification.new do |s|
s.name = "woocommerce_api"
s.version = WooCommerce::VERSION
s.date = "2016-12-14"
s.summary = "A Ruby wrapper for the WooCommerce API"
s.description = "This gem provide a wrapper to deal with the WooCommerce REST API"
s.license = "MIT"
s.authors = ["Claudio Sanches"]
s.email = "claudio@automattic.com"
s.files = Dir["lib/woocommerce_api.rb", "lib/woocommerce_api/*.rb"]
s.homepage = "https://github.com/woocommerce/wc-api-ruby"
s.rdoc_options = ["--charset=UTF-8"]
s.extra_rdoc_files = %w[README.md LICENSE]
s.add_runtime_dependency "httparty", "~> 0.14", ">= 0.14.0"
s.add_runtime_dependency "json", "~> 2.0", ">= 2.0.0"
end