auto_tagger 0.2.3 → 0.2.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/VERSION +1 -1
- data/auto_tagger.gemspec +77 -63
- data/lib/auto_tagger/base.rb +11 -1
- data/spec/auto_tagger/base_spec.rb +46 -22
- metadata +108 -13
- data/.gitignore +0 -10
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.2.
|
|
1
|
+
0.2.4
|
data/auto_tagger.gemspec
CHANGED
|
@@ -1,96 +1,110 @@
|
|
|
1
1
|
# Generated by jeweler
|
|
2
2
|
# DO NOT EDIT THIS FILE DIRECTLY
|
|
3
|
-
# Instead, edit Jeweler::Tasks in Rakefile, and run
|
|
3
|
+
# Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
|
|
4
4
|
# -*- encoding: utf-8 -*-
|
|
5
5
|
|
|
6
6
|
Gem::Specification.new do |s|
|
|
7
7
|
s.name = %q{auto_tagger}
|
|
8
|
-
s.version = "0.2.
|
|
8
|
+
s.version = "0.2.4"
|
|
9
9
|
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
11
|
-
s.authors = [
|
|
12
|
-
s.date = %q{2010-
|
|
13
|
-
s.default_executable = %q{autotag}
|
|
11
|
+
s.authors = [%q{Jeff Dean}, %q{Brian Takita}, %q{Mike Grafton}, %q{Bruce Krysiak}, %q{Pat Nakajima}, %q{Jay Zeschin}, %q{Mike Barinek}, %q{Sarah Mei}, %q{Mike Dalessio}, %q{Dave Yeu}]
|
|
12
|
+
s.date = %q{2010-09-10}
|
|
14
13
|
s.email = %q{jeff@zilkey.com}
|
|
15
|
-
s.executables = [
|
|
14
|
+
s.executables = [%q{autotag}]
|
|
16
15
|
s.extra_rdoc_files = [
|
|
17
16
|
"README.md"
|
|
18
17
|
]
|
|
19
18
|
s.files = [
|
|
20
19
|
".document",
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
"spec/spec_helper.rb"
|
|
20
|
+
"CHANGELOG",
|
|
21
|
+
"Gemfile",
|
|
22
|
+
"Gemfile.lock",
|
|
23
|
+
"MIT-LICENSE",
|
|
24
|
+
"README.md",
|
|
25
|
+
"Rakefile",
|
|
26
|
+
"VERSION",
|
|
27
|
+
"auto_tagger.gemspec",
|
|
28
|
+
"bin/autotag",
|
|
29
|
+
"features/autotag.feature",
|
|
30
|
+
"features/deployment.feature",
|
|
31
|
+
"features/step_definitions/autotag_steps.rb",
|
|
32
|
+
"features/step_definitions/deployment_steps.rb",
|
|
33
|
+
"features/step_definitions/shared_steps.rb",
|
|
34
|
+
"features/support/env.rb",
|
|
35
|
+
"features/support/step_helpers.rb",
|
|
36
|
+
"features/templates/cap_ext_deploy.erb",
|
|
37
|
+
"features/templates/deploy.erb",
|
|
38
|
+
"features/templates/stage.erb",
|
|
39
|
+
"lib/auto_tagger.rb",
|
|
40
|
+
"lib/auto_tagger/base.rb",
|
|
41
|
+
"lib/auto_tagger/capistrano_helper.rb",
|
|
42
|
+
"lib/auto_tagger/command_line.rb",
|
|
43
|
+
"lib/auto_tagger/commander.rb",
|
|
44
|
+
"lib/auto_tagger/configuration.rb",
|
|
45
|
+
"lib/auto_tagger/deprecator.rb",
|
|
46
|
+
"lib/auto_tagger/git/ref.rb",
|
|
47
|
+
"lib/auto_tagger/git/ref_set.rb",
|
|
48
|
+
"lib/auto_tagger/git/repo.rb",
|
|
49
|
+
"lib/auto_tagger/options.rb",
|
|
50
|
+
"lib/auto_tagger/recipes.rb",
|
|
51
|
+
"spec/auto_tagger/base_spec.rb",
|
|
52
|
+
"spec/auto_tagger/capistrano_helper_spec.rb",
|
|
53
|
+
"spec/auto_tagger/command_line_spec.rb",
|
|
54
|
+
"spec/auto_tagger/commander_spec.rb",
|
|
55
|
+
"spec/auto_tagger/configuration_spec.rb",
|
|
56
|
+
"spec/auto_tagger/git/ref_set_spec.rb",
|
|
57
|
+
"spec/auto_tagger/git/ref_spec.rb",
|
|
58
|
+
"spec/auto_tagger/git/repo_spec.rb",
|
|
59
|
+
"spec/auto_tagger/options_spec.rb",
|
|
60
|
+
"spec/auto_tagger/recipes_spec.rb",
|
|
61
|
+
"spec/spec_helper.rb"
|
|
64
62
|
]
|
|
65
63
|
s.homepage = %q{http://github.com/zilkey/auto_tagger}
|
|
66
|
-
s.
|
|
67
|
-
s.
|
|
68
|
-
s.rubygems_version = %q{1.3.7}
|
|
64
|
+
s.require_paths = [%q{lib}]
|
|
65
|
+
s.rubygems_version = %q{1.8.8}
|
|
69
66
|
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}
|
|
70
67
|
s.test_files = [
|
|
71
68
|
"spec/auto_tagger/base_spec.rb",
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
69
|
+
"spec/auto_tagger/capistrano_helper_spec.rb",
|
|
70
|
+
"spec/auto_tagger/command_line_spec.rb",
|
|
71
|
+
"spec/auto_tagger/commander_spec.rb",
|
|
72
|
+
"spec/auto_tagger/configuration_spec.rb",
|
|
73
|
+
"spec/auto_tagger/git/ref_set_spec.rb",
|
|
74
|
+
"spec/auto_tagger/git/ref_spec.rb",
|
|
75
|
+
"spec/auto_tagger/git/repo_spec.rb",
|
|
76
|
+
"spec/auto_tagger/options_spec.rb",
|
|
77
|
+
"spec/auto_tagger/recipes_spec.rb",
|
|
78
|
+
"spec/spec_helper.rb"
|
|
82
79
|
]
|
|
83
80
|
|
|
84
81
|
if s.respond_to? :specification_version then
|
|
85
|
-
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
|
|
86
82
|
s.specification_version = 3
|
|
87
83
|
|
|
88
84
|
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
|
|
85
|
+
s.add_runtime_dependency(%q<rake>, ["= 0.8.7"])
|
|
86
|
+
s.add_runtime_dependency(%q<rspec>, ["= 2.0.0.beta.19"])
|
|
87
|
+
s.add_runtime_dependency(%q<cucumber>, ["= 0.8.5"])
|
|
88
|
+
s.add_runtime_dependency(%q<capistrano>, ["= 2.5.18"])
|
|
89
|
+
s.add_runtime_dependency(%q<capistrano-ext>, ["= 1.2.1"])
|
|
90
|
+
s.add_runtime_dependency(%q<jeweler>, ["= 1.4.0"])
|
|
89
91
|
s.add_runtime_dependency(%q<capistrano>, [">= 2.5.3"])
|
|
90
92
|
else
|
|
93
|
+
s.add_dependency(%q<rake>, ["= 0.8.7"])
|
|
94
|
+
s.add_dependency(%q<rspec>, ["= 2.0.0.beta.19"])
|
|
95
|
+
s.add_dependency(%q<cucumber>, ["= 0.8.5"])
|
|
96
|
+
s.add_dependency(%q<capistrano>, ["= 2.5.18"])
|
|
97
|
+
s.add_dependency(%q<capistrano-ext>, ["= 1.2.1"])
|
|
98
|
+
s.add_dependency(%q<jeweler>, ["= 1.4.0"])
|
|
91
99
|
s.add_dependency(%q<capistrano>, [">= 2.5.3"])
|
|
92
100
|
end
|
|
93
101
|
else
|
|
102
|
+
s.add_dependency(%q<rake>, ["= 0.8.7"])
|
|
103
|
+
s.add_dependency(%q<rspec>, ["= 2.0.0.beta.19"])
|
|
104
|
+
s.add_dependency(%q<cucumber>, ["= 0.8.5"])
|
|
105
|
+
s.add_dependency(%q<capistrano>, ["= 2.5.18"])
|
|
106
|
+
s.add_dependency(%q<capistrano-ext>, ["= 1.2.1"])
|
|
107
|
+
s.add_dependency(%q<jeweler>, ["= 1.4.0"])
|
|
94
108
|
s.add_dependency(%q<capistrano>, [">= 2.5.3"])
|
|
95
109
|
end
|
|
96
110
|
end
|
data/lib/auto_tagger/base.rb
CHANGED
|
@@ -29,7 +29,7 @@ module AutoTagger
|
|
|
29
29
|
|
|
30
30
|
def last_ref_from_previous_stage
|
|
31
31
|
return unless previous_stage
|
|
32
|
-
|
|
32
|
+
ordered_refs_for_stage(previous_stage).last
|
|
33
33
|
end
|
|
34
34
|
|
|
35
35
|
def create_ref(commit = nil)
|
|
@@ -114,6 +114,16 @@ module AutoTagger
|
|
|
114
114
|
end
|
|
115
115
|
end
|
|
116
116
|
|
|
117
|
+
def ordered_refs_for_stage(stage)
|
|
118
|
+
ref_path = Regexp.escape(configuration.ref_path)
|
|
119
|
+
matcher = /refs\/#{ref_path}\/#{Regexp.escape(stage)}\/(.*)/
|
|
120
|
+
refs_for_stage(stage).sort do |ref1, ref2|
|
|
121
|
+
name1 = ref1.name.match(matcher)[1].gsub(configuration.date_separator, "")
|
|
122
|
+
name2 = ref2.name.match(matcher)[1].gsub(configuration.date_separator, "")
|
|
123
|
+
name1.to_i <=> name2.to_i
|
|
124
|
+
end
|
|
125
|
+
end
|
|
126
|
+
|
|
117
127
|
private
|
|
118
128
|
|
|
119
129
|
def refs_to_remove
|
|
@@ -42,6 +42,30 @@ describe AutoTagger::Base do
|
|
|
42
42
|
ref = AutoTagger::Git::Ref.new(base.repo, "41dee06050450ac", "refs/tags/ci/2003")
|
|
43
43
|
base.last_ref_from_previous_stage.name.should == "refs/tags/ci/2003"
|
|
44
44
|
end
|
|
45
|
+
|
|
46
|
+
it "should return the last ref with correct order (git show-ref is not ordered)" do
|
|
47
|
+
refs = %Q{
|
|
48
|
+
a80af49962c95a92df59a527a3ce60e22da290fc refs/tags/ci/1002
|
|
49
|
+
0e892ad1b308dd86c40f5fd60b3cddd58022d93e refs/tags/ci/997
|
|
50
|
+
b8d7ce86f1c6440080e0c315c7cc1c0fe702127f refs/tags/ci/999
|
|
51
|
+
}
|
|
52
|
+
base = AutoTagger::Base.new :stages => ["ci", "demo", "production"], :stage => "demo"
|
|
53
|
+
base.repo.stub(:read).and_return(refs)
|
|
54
|
+
ref = AutoTagger::Git::Ref.new(base.repo, "a80af49962c95a92df59a527a3ce60e22da290fc", "refs/tags/ci/1002")
|
|
55
|
+
base.last_ref_from_previous_stage.name.should == "refs/tags/ci/1002"
|
|
56
|
+
end
|
|
57
|
+
|
|
58
|
+
it "should return the last ref with correct order using other date separator(git show-ref is not ordered)" do
|
|
59
|
+
refs = %Q{
|
|
60
|
+
a80af49962c95a92df59a527a3ce60e22da290fc refs/tags/ci/2011-09-09-18-17-43
|
|
61
|
+
0e892ad1b308dd86c40f5fd60b3cddd58022d93e refs/tags/ci/2011-09-09-19-17-43
|
|
62
|
+
b8d7ce86f1c6440080e0c315c7cc1c0fe702127f refs/tags/ci/2011-09-08-18-17-43
|
|
63
|
+
}
|
|
64
|
+
base = AutoTagger::Base.new :stages => ["ci", "demo", "production"], :stage => "demo", :date_separator => "-"
|
|
65
|
+
base.repo.stub(:read).and_return(refs)
|
|
66
|
+
ref = AutoTagger::Git::Ref.new(base.repo, "a80af49962c95a92df59a527a3ce60e22da290fc", "refs/tags/ci/2011-09-09-19-17-43")
|
|
67
|
+
base.last_ref_from_previous_stage.name.should == "refs/tags/ci/2011-09-09-19-17-43"
|
|
68
|
+
end
|
|
45
69
|
end
|
|
46
70
|
|
|
47
71
|
describe "#create_ref" do
|
|
@@ -127,9 +151,9 @@ describe AutoTagger::Base do
|
|
|
127
151
|
base.repo.stub(:exec) { true }
|
|
128
152
|
base.stub(:refs_for_stage) do
|
|
129
153
|
[
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
154
|
+
AutoTagger::Git::Ref.new(base.repo, "abc123", "refs/tags/ci/2008"),
|
|
155
|
+
AutoTagger::Git::Ref.new(base.repo, "abc123", "refs/tags/ci/2009"),
|
|
156
|
+
AutoTagger::Git::Ref.new(base.repo, "abc123", "refs/tags/ci/2010")
|
|
133
157
|
]
|
|
134
158
|
end
|
|
135
159
|
base.repo.should_receive(:exec).with("update-ref -d refs/tags/ci/2008")
|
|
@@ -149,7 +173,7 @@ describe AutoTagger::Base do
|
|
|
149
173
|
|
|
150
174
|
it "does not push if there are no tags" do
|
|
151
175
|
base = AutoTagger::Base.new :stage => "ci"
|
|
152
|
-
base.stub(:refs_for_stage).with("ci") {[]}
|
|
176
|
+
base.stub(:refs_for_stage).with("ci") { [] }
|
|
153
177
|
base.repo.should_not_receive(:exec)
|
|
154
178
|
base.delete_on_remote
|
|
155
179
|
end
|
|
@@ -159,9 +183,9 @@ describe AutoTagger::Base do
|
|
|
159
183
|
base.repo.stub(:exec) { true }
|
|
160
184
|
base.stub(:refs_for_stage).with("ci") do
|
|
161
185
|
[
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
186
|
+
AutoTagger::Git::Ref.new(base.repo, "abc123", "refs/tags/ci/2008"),
|
|
187
|
+
AutoTagger::Git::Ref.new(base.repo, "abc123", "refs/tags/ci/2009"),
|
|
188
|
+
AutoTagger::Git::Ref.new(base.repo, "abc123", "refs/tags/ci/2010")
|
|
165
189
|
]
|
|
166
190
|
end
|
|
167
191
|
base.repo.should_receive(:exec).with("push origin :refs/tags/ci/2008 :refs/tags/ci/2009")
|
|
@@ -222,15 +246,15 @@ describe AutoTagger::Base do
|
|
|
222
246
|
base = AutoTagger::Base.new :stage => "ci"
|
|
223
247
|
base.repo.stub(:exec) { true }
|
|
224
248
|
refs = [
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
249
|
+
AutoTagger::Git::Ref.new(base.repo, "abc123", "refs/auto_tags/ci/2008"),
|
|
250
|
+
AutoTagger::Git::Ref.new(base.repo, "abc123", "refs/tags/ci/2009"),
|
|
251
|
+
AutoTagger::Git::Ref.new(base.repo, "abc123", "refs/tags/2009"),
|
|
252
|
+
AutoTagger::Git::Ref.new(base.repo, "abc123", "refs/tags-ci/2009"),
|
|
253
|
+
AutoTagger::Git::Ref.new(base.repo, "abc123", "refs/heads/master")
|
|
230
254
|
]
|
|
231
255
|
base.repo.stub(:refs) { mock("RefSet", :all => refs) }
|
|
232
256
|
base.refs_for_stage("ci").should == [
|
|
233
|
-
|
|
257
|
+
AutoTagger::Git::Ref.new(base.repo, "abc123", "refs/tags/ci/2009")
|
|
234
258
|
]
|
|
235
259
|
end
|
|
236
260
|
end
|
|
@@ -249,18 +273,18 @@ describe AutoTagger::Base do
|
|
|
249
273
|
base = AutoTagger::Base.new :stage => "ci", :stages => ["ci", "demo", "production"]
|
|
250
274
|
base.repo.stub(:exec) { true }
|
|
251
275
|
refs = [
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
276
|
+
AutoTagger::Git::Ref.new(base.repo, "abc123", "refs/tags/ci/2008"),
|
|
277
|
+
AutoTagger::Git::Ref.new(base.repo, "abc123", "refs/tags/ci/2009"),
|
|
278
|
+
AutoTagger::Git::Ref.new(base.repo, "abc123", "refs/tags/demo/2008"),
|
|
279
|
+
AutoTagger::Git::Ref.new(base.repo, "abc123", "refs/tags/demo/2009"),
|
|
280
|
+
AutoTagger::Git::Ref.new(base.repo, "abc123", "refs/tags/production/2008"),
|
|
281
|
+
AutoTagger::Git::Ref.new(base.repo, "abc123", "refs/tags/production/2009")
|
|
258
282
|
]
|
|
259
283
|
base.repo.stub(:refs) { mock("RefSet", :all => refs) }
|
|
260
284
|
base.release_tag_entries.should == [
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
285
|
+
AutoTagger::Git::Ref.new(base.repo, "abc123", "refs/tags/ci/2009"),
|
|
286
|
+
AutoTagger::Git::Ref.new(base.repo, "abc123", "refs/tags/demo/2009"),
|
|
287
|
+
AutoTagger::Git::Ref.new(base.repo, "abc123", "refs/tags/production/2009")
|
|
264
288
|
]
|
|
265
289
|
end
|
|
266
290
|
end
|
metadata
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: auto_tagger
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
hash:
|
|
5
|
-
prerelease:
|
|
4
|
+
hash: 31
|
|
5
|
+
prerelease:
|
|
6
6
|
segments:
|
|
7
7
|
- 0
|
|
8
8
|
- 2
|
|
9
|
-
-
|
|
10
|
-
version: 0.2.
|
|
9
|
+
- 4
|
|
10
|
+
version: 0.2.4
|
|
11
11
|
platform: ruby
|
|
12
12
|
authors:
|
|
13
13
|
- Jeff Dean
|
|
@@ -24,13 +24,108 @@ autorequire:
|
|
|
24
24
|
bindir: bin
|
|
25
25
|
cert_chain: []
|
|
26
26
|
|
|
27
|
-
date: 2010-
|
|
28
|
-
default_executable: autotag
|
|
27
|
+
date: 2010-09-10 00:00:00 Z
|
|
29
28
|
dependencies:
|
|
30
29
|
- !ruby/object:Gem::Dependency
|
|
30
|
+
requirement: &id001 !ruby/object:Gem::Requirement
|
|
31
|
+
none: false
|
|
32
|
+
requirements:
|
|
33
|
+
- - "="
|
|
34
|
+
- !ruby/object:Gem::Version
|
|
35
|
+
hash: 49
|
|
36
|
+
segments:
|
|
37
|
+
- 0
|
|
38
|
+
- 8
|
|
39
|
+
- 7
|
|
40
|
+
version: 0.8.7
|
|
41
|
+
version_requirements: *id001
|
|
42
|
+
name: rake
|
|
43
|
+
prerelease: false
|
|
44
|
+
type: :runtime
|
|
45
|
+
- !ruby/object:Gem::Dependency
|
|
46
|
+
requirement: &id002 !ruby/object:Gem::Requirement
|
|
47
|
+
none: false
|
|
48
|
+
requirements:
|
|
49
|
+
- - "="
|
|
50
|
+
- !ruby/object:Gem::Version
|
|
51
|
+
hash: 62196421
|
|
52
|
+
segments:
|
|
53
|
+
- 2
|
|
54
|
+
- 0
|
|
55
|
+
- 0
|
|
56
|
+
- beta
|
|
57
|
+
- 19
|
|
58
|
+
version: 2.0.0.beta.19
|
|
59
|
+
version_requirements: *id002
|
|
60
|
+
name: rspec
|
|
61
|
+
prerelease: false
|
|
62
|
+
type: :runtime
|
|
63
|
+
- !ruby/object:Gem::Dependency
|
|
64
|
+
requirement: &id003 !ruby/object:Gem::Requirement
|
|
65
|
+
none: false
|
|
66
|
+
requirements:
|
|
67
|
+
- - "="
|
|
68
|
+
- !ruby/object:Gem::Version
|
|
69
|
+
hash: 53
|
|
70
|
+
segments:
|
|
71
|
+
- 0
|
|
72
|
+
- 8
|
|
73
|
+
- 5
|
|
74
|
+
version: 0.8.5
|
|
75
|
+
version_requirements: *id003
|
|
76
|
+
name: cucumber
|
|
77
|
+
prerelease: false
|
|
78
|
+
type: :runtime
|
|
79
|
+
- !ruby/object:Gem::Dependency
|
|
80
|
+
requirement: &id004 !ruby/object:Gem::Requirement
|
|
81
|
+
none: false
|
|
82
|
+
requirements:
|
|
83
|
+
- - "="
|
|
84
|
+
- !ruby/object:Gem::Version
|
|
85
|
+
hash: 63
|
|
86
|
+
segments:
|
|
87
|
+
- 2
|
|
88
|
+
- 5
|
|
89
|
+
- 18
|
|
90
|
+
version: 2.5.18
|
|
91
|
+
version_requirements: *id004
|
|
31
92
|
name: capistrano
|
|
32
93
|
prerelease: false
|
|
33
|
-
|
|
94
|
+
type: :runtime
|
|
95
|
+
- !ruby/object:Gem::Dependency
|
|
96
|
+
requirement: &id005 !ruby/object:Gem::Requirement
|
|
97
|
+
none: false
|
|
98
|
+
requirements:
|
|
99
|
+
- - "="
|
|
100
|
+
- !ruby/object:Gem::Version
|
|
101
|
+
hash: 29
|
|
102
|
+
segments:
|
|
103
|
+
- 1
|
|
104
|
+
- 2
|
|
105
|
+
- 1
|
|
106
|
+
version: 1.2.1
|
|
107
|
+
version_requirements: *id005
|
|
108
|
+
name: capistrano-ext
|
|
109
|
+
prerelease: false
|
|
110
|
+
type: :runtime
|
|
111
|
+
- !ruby/object:Gem::Dependency
|
|
112
|
+
requirement: &id006 !ruby/object:Gem::Requirement
|
|
113
|
+
none: false
|
|
114
|
+
requirements:
|
|
115
|
+
- - "="
|
|
116
|
+
- !ruby/object:Gem::Version
|
|
117
|
+
hash: 7
|
|
118
|
+
segments:
|
|
119
|
+
- 1
|
|
120
|
+
- 4
|
|
121
|
+
- 0
|
|
122
|
+
version: 1.4.0
|
|
123
|
+
version_requirements: *id006
|
|
124
|
+
name: jeweler
|
|
125
|
+
prerelease: false
|
|
126
|
+
type: :runtime
|
|
127
|
+
- !ruby/object:Gem::Dependency
|
|
128
|
+
requirement: &id007 !ruby/object:Gem::Requirement
|
|
34
129
|
none: false
|
|
35
130
|
requirements:
|
|
36
131
|
- - ">="
|
|
@@ -41,8 +136,10 @@ dependencies:
|
|
|
41
136
|
- 5
|
|
42
137
|
- 3
|
|
43
138
|
version: 2.5.3
|
|
139
|
+
version_requirements: *id007
|
|
140
|
+
name: capistrano
|
|
141
|
+
prerelease: false
|
|
44
142
|
type: :runtime
|
|
45
|
-
version_requirements: *id001
|
|
46
143
|
description:
|
|
47
144
|
email: jeff@zilkey.com
|
|
48
145
|
executables:
|
|
@@ -53,7 +150,6 @@ extra_rdoc_files:
|
|
|
53
150
|
- README.md
|
|
54
151
|
files:
|
|
55
152
|
- .document
|
|
56
|
-
- .gitignore
|
|
57
153
|
- CHANGELOG
|
|
58
154
|
- Gemfile
|
|
59
155
|
- Gemfile.lock
|
|
@@ -96,13 +192,12 @@ files:
|
|
|
96
192
|
- spec/auto_tagger/options_spec.rb
|
|
97
193
|
- spec/auto_tagger/recipes_spec.rb
|
|
98
194
|
- spec/spec_helper.rb
|
|
99
|
-
has_rdoc: true
|
|
100
195
|
homepage: http://github.com/zilkey/auto_tagger
|
|
101
196
|
licenses: []
|
|
102
197
|
|
|
103
198
|
post_install_message:
|
|
104
|
-
rdoc_options:
|
|
105
|
-
|
|
199
|
+
rdoc_options: []
|
|
200
|
+
|
|
106
201
|
require_paths:
|
|
107
202
|
- lib
|
|
108
203
|
required_ruby_version: !ruby/object:Gem::Requirement
|
|
@@ -126,7 +221,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
126
221
|
requirements: []
|
|
127
222
|
|
|
128
223
|
rubyforge_project:
|
|
129
|
-
rubygems_version: 1.
|
|
224
|
+
rubygems_version: 1.8.8
|
|
130
225
|
signing_key:
|
|
131
226
|
specification_version: 3
|
|
132
227
|
summary: Helps you automatically create tags for each stage in a multi-stage deploment and deploy from the latest tag from the previous environment
|