forked from neovintage/zoho_invoice
-
Notifications
You must be signed in to change notification settings - Fork 1
/
zoho_invoice.gemspec
31 lines (26 loc) · 1.22 KB
/
zoho_invoice.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
28
29
30
31
# -*- encoding: utf-8 -*-
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'zoho_invoice/version'
Gem::Specification.new do |gem|
gem.name = "zoho_invoice"
gem.version = ZohoInvoice::VERSION
gem.authors = ["Rimas Silkaitis"]
gem.email = ["neovintage@gmail.com"]
gem.summary = %q{Zoho Invoice API}
gem.description = %q{Ruby wrapper for the Zoho Invoice API. Documentation for the Zoho Invoice API can be found at http://zoho.com}
gem.homepage = "https://github.com/neovintage/zoho_invoice"
gem.required_ruby_version = ">= 1.9.3"
gem.required_rubygems_version = ">= 1.3.6"
gem.add_development_dependency 'bundler', '~> 1.0'
gem.add_development_dependency 'awesome_print'
gem.add_runtime_dependency "faraday", ">= 0.8.0"
gem.add_runtime_dependency "faraday_middleware"
gem.add_runtime_dependency "nokogiri"
gem.add_runtime_dependency "multi_xml"
gem.add_runtime_dependency "activesupport"
gem.files = `git ls-files`.split($/)
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
gem.require_paths = ["lib"]
end