-
Notifications
You must be signed in to change notification settings - Fork 89
/
xero_gateway.gemspec
36 lines (30 loc) · 1.28 KB
/
xero_gateway.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
32
33
34
35
36
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'xero_gateway/version'
Gem::Specification.new do |s|
s.name = "xero_gateway"
s.version = XeroGateway::VERSION
s.summary = "Enables Ruby based applications to communicate with the Xero API"
s.email = ["[email protected]", "[email protected]"]
s.homepage = "http://github.com/xero-gateway/xero_gateway"
s.description = "Enables Ruby based applications to communicate with the Xero API"
s.authors = ["Tim Connor", "Nik Wakelin", "Jared Armstrong"]
s.license = "MIT"
s.files = ["Gemfile", "LICENSE", "Rakefile", "README.md", "xero_gateway.gemspec"] + Dir['**/*.rb'] + Dir['**/*.crt']
s.add_dependency "builder", ">= 3.2.2"
s.add_dependency "oauth", ">= 0.3.6"
if RUBY_VERSION > "1.9.3"
s.add_dependency "activesupport"
else
s.add_dependency "activesupport", "< 5"
end
s.add_development_dependency "bundler"
s.add_development_dependency "rake"
s.add_development_dependency "minitest"
s.add_development_dependency "test-unit"
s.add_development_dependency "mocha"
s.add_development_dependency "shoulda"
s.add_development_dependency "libxml-ruby", "2.7.0"
s.add_development_dependency "byebug"
end