Skip to content
This repository has been archived by the owner on Sep 1, 2020. It is now read-only.

Commit

Permalink
release v0.3.0 with nicer gemspec
Browse files Browse the repository at this point in the history
  • Loading branch information
mislav committed Nov 25, 2009
1 parent 192edfe commit 89a25c6
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 63 deletions.
34 changes: 0 additions & 34 deletions Rakefile

This file was deleted.

47 changes: 18 additions & 29 deletions git-deploy.gemspec
@@ -1,30 +1,19 @@
# -*- encoding: utf-8 -*- Gem::Specification.new do |gem|

gem.name = 'git-deploy'
Gem::Specification.new do |s| gem.version = '0.3.0'
s.name = %q{git-deploy} gem.date = Date.today.to_s
s.version = "0.2.0"

gem.add_dependency 'capistrano', '~> 2.5.9'
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["Mislav Marohni\304\207"] gem.summary = "Simple git push-based application deployment"
s.date = %q{2009-10-04} gem.description = "A tool to install useful git hooks on your remote repository to enable push-based, Heroku-like deployment on your host."
s.description = %q{git-deploy is a tool to install useful git hooks on your remote repository to enable git push-based, Heroku-like deployment on your host.}
s.email = %q{mislav.marohnic@gmail.com} gem.authors = ['Mislav Marohnić']
s.files = ["Rakefile", "lib/git_deploy.rb", "lib/hooks/post-receive.rb", "lib/hooks/post-reset.rb", "README.markdown"] gem.email = 'mislav.marohnic@gmail.com'
s.homepage = %q{http://github.com/mislav/git-deploy} gem.homepage = 'http://github.com/mislav/git-deploy'
s.require_paths = ["lib"]
s.rubygems_version = %q{1.3.5} gem.rubyforge_project = nil
s.summary = %q{Simple git push-based application deployment} gem.has_rdoc = false


if s.respond_to? :specification_version then gem.files = Dir['Rakefile', '{bin,lib,rails,test,spec}/**/*', 'README*', 'LICENSE*'] & `git ls-files`.split("\n")
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
s.specification_version = 3

if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
s.add_runtime_dependency(%q<capistrano>, ["~> 2.5.9"])
else
s.add_dependency(%q<capistrano>, ["~> 2.5.9"])
end
else
s.add_dependency(%q<capistrano>, ["~> 2.5.9"])
end
end end

0 comments on commit 89a25c6

Please sign in to comment.