git-story-workflow 0.0.2 → 0.0.3

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: bf07f9f4c2ba53aa0f34cfd6bd62b50c35f03cdf
4
- data.tar.gz: b1e14858e8fb8006ed03f52dce06580132335d90
3
+ metadata.gz: da308f7c60110c38ac9dde8ea380a311a4d27971
4
+ data.tar.gz: d4ad902128e5a0edb5859e61b0b19bf1e945e95d
5
5
  SHA512:
6
- metadata.gz: 7e86b06c49a7154dd16d444788023df00ec7c63af4d517b7da3e5d30584366fdc4ee8d038716e5ee6468fb3d98d48bea1371e65af01d50a4d090071ec671313f
7
- data.tar.gz: 02fced5abd048bd96743f7c1605d17ed1f3d068ce3e5d6e3eb4b288aea483f8fd2b05f5cd7fe0fa2b0b7f251c5c75813c8f9e19f6ced63fb67ac59428fd04b91
6
+ metadata.gz: 00c67937d8b5cd2d49791b230d31231fa66e2ad573aa39f2ed8aa92f41e0a4f1e69993260a046b18d7426f7b084484119b9d3badc4ffc4c7c3a1bee146aae38b
7
+ data.tar.gz: '08b1948e2402424844fc68513830e9ab460fd54ad857491e8ee795e1c50151ffdcc56e8ca6b9938756947424e66907ad34939f107e98bcdffa473e70a1730d9e'
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.0.2
1
+ 0.0.3
@@ -1,9 +1,9 @@
1
1
  # -*- encoding: utf-8 -*-
2
- # stub: git-story-workflow 0.0.2 ruby lib
2
+ # stub: git-story-workflow 0.0.3 ruby lib
3
3
 
4
4
  Gem::Specification.new do |s|
5
5
  s.name = "git-story-workflow".freeze
6
- s.version = "0.0.2"
6
+ s.version = "0.0.3"
7
7
 
8
8
  s.required_rubygems_version = Gem::Requirement.new(">= 0".freeze) if s.respond_to? :required_rubygems_version=
9
9
  s.require_paths = ["lib".freeze]
data/lib/git/story/app.rb CHANGED
@@ -113,14 +113,14 @@ class Git::Story::App
113
113
  capture("git log #{opts} #{deploy_tags.last}..")
114
114
  end
115
115
 
116
- command doc: 'output diff since last production deploy tag'
116
+ command doc: '[REF] output diff since last production deploy tag'
117
117
  def deploy_diff(ref = nil)
118
118
  fetch_tags
119
119
  opts = '-u'
120
120
  capture("git diff --color #{opts} #{ref} #{deploy_tags.last}")
121
121
  end
122
122
 
123
- command doc: 'output migration diff since last production deploy tag'
123
+ command doc: '[REF] output migration diff since last production deploy tag'
124
124
  def deploy_migrate_diff(ref = nil)
125
125
  fetch_tags
126
126
  opts = '-u'
@@ -1,6 +1,6 @@
1
1
  module Git::Story
2
2
  # Git::Story version
3
- VERSION = '0.0.2'
3
+ VERSION = '0.0.3'
4
4
  VERSION_ARRAY = VERSION.split('.').map(&:to_i) # :nodoc:
5
5
  VERSION_MAJOR = VERSION_ARRAY[0] # :nodoc:
6
6
  VERSION_MINOR = VERSION_ARRAY[1] # :nodoc:
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: git-story-workflow
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.2
4
+ version: 0.0.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Florian Frank