-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathcapistrano-deploy-tagger.gemspec
More file actions
23 lines (18 loc) · 1 KB
/
capistrano-deploy-tagger.gemspec
File metadata and controls
23 lines (18 loc) · 1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
Gem::Specification.new do |s|
s.name = "capistrano-deploy-tagger"
s.version = "2.3.4"
s.platform = Gem::Platform::RUBY
s.authors = ["Ryan Conway"]
s.email = ["ryan.conway@forward.co.uk"]
s.homepage = "http://github.com/forward/capistrano-deploy-tagger"
s.summary = %q{Capistrano-Deploy-Tagger creates and updates certain tags in Git each time you perform a deploy.}
s.description = %q{Capistrano-Deploy-Tagger creates and updates certain tags in Git each time you perform a deploy. The first tag defaults to 'inproduction' and is always updated to refer to the revision that was just deployed. The second tag is a timestamp applied to every revision that is deployed to production.}
s.license = 'MIT'
s.rubyforge_project = "capistrano-deploy-tagger"
s.files = ["lib/capistrano/deploy/tagger.rb"]
s.require_paths = ["lib"]
s.add_dependency("capistrano", [">= 1.0.0"])
s.has_rdoc = false
end