git_test 0.0.12 → 0.0.13
Sign up to get free protection for your applications and to get access to all the features.
- data/bin/git_test +1 -2
- data/lib/git_test_version.rb +1 -1
- metadata +3 -3
data/bin/git_test
CHANGED
@@ -99,13 +99,12 @@ command :push do |c|
|
|
99
99
|
c.arg_name 'push_before_test'
|
100
100
|
c.switch [:b,:before]
|
101
101
|
|
102
|
-
|
103
102
|
c.action do |global_options,options,args|
|
104
103
|
begin
|
105
104
|
global_options.merge! options
|
106
105
|
runner = GitTest::Runner.new(global_options)
|
107
106
|
runner.fetch!
|
108
|
-
runner.push!
|
107
|
+
runner.push! if options[:before]
|
109
108
|
runner.test!
|
110
109
|
runner.write_report!
|
111
110
|
if runner.test_failed?
|
data/lib/git_test_version.rb
CHANGED
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: git_test
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
4
|
+
hash: 5
|
5
5
|
prerelease:
|
6
6
|
segments:
|
7
7
|
- 0
|
8
8
|
- 0
|
9
|
-
-
|
10
|
-
version: 0.0.
|
9
|
+
- 13
|
10
|
+
version: 0.0.13
|
11
11
|
platform: ruby
|
12
12
|
authors:
|
13
13
|
- Richard Schneeman
|