-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathauto_tagger.gemspec
35 lines (29 loc) · 1.43 KB
/
auto_tagger.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
require File.expand_path('../lib/auto_tagger/version', __FILE__)
Gem::Specification.new do |s|
s.name = %q{auto_tagger}
s.version = AutoTagger::VERSION
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["Jeff Dean", "Brian Takita", "Mike Grafton", "Bruce Krysiak", "Pat Nakajima", "Jay Zeschin", "Mike Barinek", "Sarah Mei", "Mike Dalessio", "Dave Yeu", "Rachel Heaton", "Oren Weichselbaum"]
s.date = %q{2011-09-15}
s.default_executable = %q{autotag}
s.email = %q{[email protected]}
s.executables = ["autotag"]
s.extra_rdoc_files = ["README.md"]
s.files = Dir.glob("{bin,lib}/**/*") + %w(MIT-LICENSE README.md CHANGELOG)
s.homepage = %q{http://github.com/zilkey/auto_tagger}
s.rdoc_options = ["--charset=UTF-8"]
s.require_paths = ["lib"]
s.rubygems_version = %q{1.3.7}
s.summary = %q{Helps you automatically create tags for each stage in a multi-stage deploment and deploy from the latest tag from the previous environment}
s.test_files = Dir.glob("{spec,cucumber}/**/*")
if s.respond_to? :specification_version then
s.specification_version = 3
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
s.add_runtime_dependency(%q<capistrano>, [">= 2.5.3", "<=2.14.2"])
else
s.add_dependency(%q<capistrano>, [">= 2.5.3", "<=2.14.2"])
end
else
s.add_dependency(%q<capistrano>, [">= 2.5.3", "<=2.14.2"])
end
end