-
Notifications
You must be signed in to change notification settings - Fork 240
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[CI skip] - updated gemspec for v0.13.0
- Loading branch information
1 parent
9713b81
commit 99c99bb
Showing
1 changed file
with
9 additions
and
12 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 |
---|---|---|
|
@@ -4,16 +4,13 @@ | |
# -*- encoding: utf-8 -*- | ||
|
||
Gem::Specification.new do |s| | ||
s.name = %q{jenkins_api_client} | ||
s.version = "0.12.1" | ||
s.name = "jenkins_api_client" | ||
s.version = "0.13.0" | ||
|
||
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version= | ||
s.authors = ["Kannan Manickam"] | ||
s.date = %q{2013-06-26} | ||
s.default_executable = %q{jenkinscli} | ||
s.description = %q{ | ||
This is a simple and easy-to-use Jenkins Api client with features focused on | ||
automating Job configuration programaticaly and so forth} | ||
s.date = "2013-07-10" | ||
s.description = "\nThis is a simple and easy-to-use Jenkins Api client with features focused on\nautomating Job configuration programaticaly and so forth" | ||
s.email = ["[email protected]"] | ||
s.executables = ["jenkinscli"] | ||
s.files = [ | ||
|
@@ -26,6 +23,7 @@ automating Job configuration programaticaly and so forth} | |
"LICENCE", | ||
"README.md", | ||
"Rakefile", | ||
"Vagrantfile", | ||
"bin/jenkinscli", | ||
"config/login.yml.example", | ||
"java_deps/jenkins-cli.jar", | ||
|
@@ -67,16 +65,15 @@ automating Job configuration programaticaly and so forth} | |
"travis/spec.yml", | ||
"travis/user_config.xml" | ||
] | ||
s.homepage = %q{https://github.com/arangamani/jenkins_api_client} | ||
s.homepage = "https://github.com/arangamani/jenkins_api_client" | ||
s.require_paths = ["lib"] | ||
s.rubygems_version = %q{1.3.6} | ||
s.summary = %q{Jenkins JSON API Client} | ||
s.rubygems_version = "1.8.23" | ||
s.summary = "Jenkins JSON API Client" | ||
|
||
if s.respond_to? :specification_version then | ||
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION | ||
s.specification_version = 3 | ||
|
||
if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then | ||
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then | ||
s.add_runtime_dependency(%q<nokogiri>, ["~> 1.5.0"]) | ||
s.add_runtime_dependency(%q<thor>, [">= 0.16.0"]) | ||
s.add_runtime_dependency(%q<json>, [">= 0"]) | ||
|