-
Notifications
You must be signed in to change notification settings - Fork 310
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
11 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
module Xeroizer | ||
VERSION = "2.17.0".freeze | ||
VERSION = "2.18.0".freeze | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,13 +6,19 @@ require 'xeroizer/version' | |
Gem::Specification.new do |s| | ||
s.name = "xeroizer" | ||
s.version = Xeroizer::VERSION.dup | ||
s.date = "2016-03-01" | ||
s.authors = ["Wayne Robinson"] | ||
s.email = "[email protected]" | ||
s.summary = "Xero library" | ||
s.description = "Ruby library for the Xero accounting system API." | ||
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") | ||
|