Skip to content

Commit

Permalink
rename to jpi.gem
Browse files Browse the repository at this point in the history
  • Loading branch information
cowboyd committed Dec 19, 2011
1 parent 37c63ba commit aa864f5
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 7 deletions.
10 changes: 4 additions & 6 deletions jenkins-plugin.gemspec → jpi.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -3,17 +3,15 @@ $:.push File.expand_path("../lib", __FILE__)
require "jenkins/plugin/version"

Gem::Specification.new do |s|
s.name = "jenkins-plugin"
s.name = "jpi"
s.version = Jenkins::Plugin::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ["Charles Lowell"]
s.authors = ["Charles Lowell", "Jørgen P. Tjernø", "Kohsuke Kawaguchi"]
s.email = ["cowboyd@thefrontside.net"]
s.homepage = "http://github.com/cowboyd/jenkins-plugin"
s.homepage = "https://github.com/jenkinsci/jpi.rb"
s.summary = %q{Tools for creating and building Jenkins Ruby plugins}
s.description = %q{Allows you to generate a new Ruby plugin project, build it, test it in Jenkins and release it to the Jenkins Update Center.}

s.rubyforge_project = "jenkins-plugin"

s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
Expand All @@ -22,7 +20,7 @@ Gem::Specification.new do |s|
s.add_dependency "rubyzip"
s.add_dependency "thor"
s.add_dependency "jenkins-war", ">= 1.427"
s.add_dependency "bundler", "~> 1.1.rc"
s.add_dependency "bundler", "~> 1.1.rc2"
s.add_dependency "jenkins-plugin-runtime", "~> 0.1.13"

s.add_development_dependency "rspec", "~> 2.0"
Expand Down
2 changes: 1 addition & 1 deletion lib/jenkins/plugin/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module Jenkins
class Plugin
VERSION = "0.1.16"
VERSION = "0.3.0"
end
end

0 comments on commit aa864f5

Please sign in to comment.