capistrano-gitflow 1.4.1 → 1.4.2
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/capistrano-gitflow.gemspec +3 -3
- data/lib/capistrano/gitflow.rb +1 -1
- metadata +4 -4
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.4.
|
|
1
|
+
1.4.2
|
data/capistrano-gitflow.gemspec
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
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{capistrano-gitflow}
|
|
8
|
-
s.version = "1.4.
|
|
8
|
+
s.version = "1.4.2"
|
|
9
9
|
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
11
11
|
s.authors = ["Joshua Nichols"]
|
|
12
|
-
s.date = %q{2010-
|
|
12
|
+
s.date = %q{2010-11-30}
|
|
13
13
|
s.description = %q{Capistrano recipe for a deployment workflow based on git tags}
|
|
14
14
|
s.email = %q{josh@technicalpickles.com}
|
|
15
15
|
s.extra_rdoc_files = [
|
data/lib/capistrano/gitflow.rb
CHANGED
|
@@ -75,7 +75,7 @@ Please make sure you have pulled and pushed all code before deploying:
|
|
|
75
75
|
# make sure we have any other deployment tags that have been pushed by others so our auto-increment code doesn't create conflicting tags
|
|
76
76
|
`git fetch`
|
|
77
77
|
|
|
78
|
-
send "tag_#{stage}"
|
|
78
|
+
send "tag_#{stage}" if respond_to?(stage)
|
|
79
79
|
|
|
80
80
|
system "git push --tags origin #{local_branch}"
|
|
81
81
|
if $? != 0
|
metadata
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: capistrano-gitflow
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
hash:
|
|
4
|
+
hash: 3
|
|
5
5
|
prerelease: false
|
|
6
6
|
segments:
|
|
7
7
|
- 1
|
|
8
8
|
- 4
|
|
9
|
-
-
|
|
10
|
-
version: 1.4.
|
|
9
|
+
- 2
|
|
10
|
+
version: 1.4.2
|
|
11
11
|
platform: ruby
|
|
12
12
|
authors:
|
|
13
13
|
- Joshua Nichols
|
|
@@ -15,7 +15,7 @@ autorequire:
|
|
|
15
15
|
bindir: bin
|
|
16
16
|
cert_chain: []
|
|
17
17
|
|
|
18
|
-
date: 2010-
|
|
18
|
+
date: 2010-11-30 00:00:00 -05:00
|
|
19
19
|
default_executable:
|
|
20
20
|
dependencies:
|
|
21
21
|
- !ruby/object:Gem::Dependency
|