-
Notifications
You must be signed in to change notification settings - Fork 241
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
1 parent
f1c48b8
commit bcbf065
Showing
1 changed file
with
12 additions
and
8 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,13 +4,16 @@ | |
# -*- encoding: utf-8 -*- | ||
|
||
Gem::Specification.new do |s| | ||
s.name = "jenkins_api_client" | ||
s.version = "0.10.0" | ||
s.name = %q{jenkins_api_client} | ||
s.version = "0.11.0" | ||
|
||
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version= | ||
s.authors = ["Kannan Manickam"] | ||
s.date = "2013-04-25" | ||
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.date = %q{2013-06-09} | ||
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.email = ["[email protected]"] | ||
s.executables = ["jenkinscli"] | ||
s.files = [ | ||
|
@@ -57,15 +60,16 @@ Gem::Specification.new do |s| | |
"spec/unit_tests/system_spec.rb", | ||
"spec/unit_tests/view_spec.rb" | ||
] | ||
s.homepage = "https://github.com/arangamani/jenkins_api_client" | ||
s.homepage = %q{https://github.com/arangamani/jenkins_api_client} | ||
s.require_paths = ["lib"] | ||
s.rubygems_version = "1.8.25" | ||
s.summary = "Jenkins JSON API Client" | ||
s.rubygems_version = %q{1.3.6} | ||
s.summary = %q{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::VERSION) >= Gem::Version.new('1.2.0') then | ||
if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then | ||
s.add_runtime_dependency(%q<nokogiri>, [">= 0"]) | ||
s.add_runtime_dependency(%q<thor>, [">= 0.16.0"]) | ||
s.add_runtime_dependency(%q<json>, [">= 0"]) | ||
|