forked from weareswat/invoicexpress-gem
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinvoicexpress.gemspec
26 lines (23 loc) · 949 Bytes
/
invoicexpress.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
lib = File.expand_path("../lib", __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'invoicexpress/version'
Gem::Specification.new do |spec|
spec.add_development_dependency 'bundler', '~> 1.0'
spec.add_dependency 'faraday', '~> 0.8'
spec.add_dependency 'faraday_middleware', '~> 0.9'
spec.add_dependency 'happymapper', '~> 0.4'
spec.authors = ["Think Orange"]
spec.description = %q{Simple wrapper for invoicexpress.com API}
spec.email = ['[email protected]']
spec.files = %w(CHANGELOG.md README.md Rakefile invoicexpress.gemspec)
spec.files += Dir.glob("lib/**/*.rb")
spec.files += Dir.glob("spec/**/*")
spec.homepage = "http://invoicexpress.pt"
spec.licenses = ['MIT']
spec.name = 'invoicexpress'
spec.require_paths = ['lib']
spec.required_rubygems_version = '>= 1.3.6'
spec.summary = spec.description
spec.test_files = Dir.glob("spec/**/*")
spec.version = Invoicexpress::VERSION
end