forked from waynerobinson/xeroizer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
xeroizer.gemspec
42 lines (39 loc) · 1.72 KB
/
xeroizer.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
37
38
39
40
41
42
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'xeroizer/version'
Gem::Specification.new do |s|
s.name = "xeroizer"
s.version = Xeroizer::VERSION.dup
s.authors = ["Wayne Robinson"]
s.email = ["[email protected]", "[email protected]"]
s.summary = "Ruby Library for Xero accounting API"
s.description = "Ruby library for the Xero accounting API. Originally developed by Wayne Robinson, now maintained by the Xero API Team & Xero/Ruby developer community."
s.homepage = "http://github.com/waynerobinson/xeroizer"
s.licenses = ["MIT"]
s.metadata = {
"bug_tracker_uri" => "https://github.com/waynerobinson/xeroizer/issues",
"changelog_uri" => "https://github.com/waynerobinson/xeroizer/releases",
"source_code_uri" => "https://github.com/waynerobinson/xeroizer",
"documentation_uri" => "https://developer.xero.com/documentation/",
"mailing_list_uri" => "https://developer.xero.com/subscribe-to-the-xero-api-developer-mailing-list"
}
s.files = Dir["LICENSE.txt", "README.md", 'lib/**/*']
s.test_files = `git ls-files -- test/*`.split("\n")
s.require_paths = ["lib"]
s.add_development_dependency "bundler", "~> 1.5"
s.add_development_dependency "rake"
s.add_development_dependency "mocha"
s.add_development_dependency "shoulda"
s.add_development_dependency "test-unit"
s.add_development_dependency "turn"
s.add_development_dependency "ansi"
s.add_development_dependency "redcarpet"
s.add_development_dependency "yard"
s.add_dependency "builder", ">= 2.1.2"
s.add_dependency "oauth", ">= 0.4.5"
s.add_dependency "activesupport"
s.add_dependency "nokogiri"
s.add_dependency "tzinfo"
s.add_dependency "i18n"
end