openteam-capistrano 1.0.6 → 1.0.7
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/openteam/capistrano/tagging.rb +1 -1
- data/openteam-capistrano.gemspec +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 2118e3a116d85028dd8dcb0a388b3b0a0ebc429e
|
4
|
+
data.tar.gz: ae18b2480edcbbaa43bb0e4f59c1ce7c5bf0983c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: bb4313bfdb99718b3c769d930cd494db951091d487984bcf0ac47c25783f4ac36893f619314b4d1c663fa411be7f39d9bc0a29e26a96a5ec978c54ea660ab351
|
7
|
+
data.tar.gz: 068e905e78a96f9477d7d9e2eecfeef807cfeb041c5265f77e37aeee97794a41aa4bee0ee7f5eda6a75a00c69a647432fa80a5790551d098359e3a2757cb33b5
|
@@ -30,7 +30,7 @@ module Openteam
|
|
30
30
|
end
|
31
31
|
|
32
32
|
def stage_tags
|
33
|
-
@stage_tags ||= %x( git tag -l
|
33
|
+
@stage_tags ||= %x( git tag -l #{fetch(:branch)}* ).chomp.split("\n").grep(/^#{fetch(:stage)}-/)
|
34
34
|
end
|
35
35
|
|
36
36
|
def rotten_tags
|
data/openteam-capistrano.gemspec
CHANGED
@@ -4,7 +4,7 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
|
4
4
|
|
5
5
|
Gem::Specification.new do |gem|
|
6
6
|
gem.name = 'openteam-capistrano'
|
7
|
-
gem.version = '1.0.
|
7
|
+
gem.version = '1.0.7'
|
8
8
|
gem.authors = ["OpenTeam developers"]
|
9
9
|
gem.email = ["developers@openteam.ru"]
|
10
10
|
gem.description = %q{OpenTeam common capistrano3 recipe}
|