belly 0.3.2 → 0.3.3
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/.belly +1 -1
- data/Rakefile +1 -1
- data/VERSION +1 -1
- data/belly.gemspec +4 -2
- data/lib/belly/cli/rerun_cucumber.rb +15 -0
- data/lib/belly/cucumber_rerun.rb +11 -0
- metadata +6 -4
data/.belly
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
hub:
|
|
1
|
+
hub: belly.heroku.com:80
|
|
2
2
|
project: belly-gem
|
data/Rakefile
CHANGED
|
@@ -8,7 +8,7 @@ begin
|
|
|
8
8
|
gem.summary = %Q{Client app for the incredible new belly web service, coming soon.}
|
|
9
9
|
gem.description = %Q{Client app for the incredible new belly web service, coming soon.}
|
|
10
10
|
gem.email = "matt@mattwynne.net"
|
|
11
|
-
gem.homepage = "http://
|
|
11
|
+
gem.homepage = "http://belly.heroku.com"
|
|
12
12
|
gem.authors = ["Matt Wynne"]
|
|
13
13
|
gem.add_development_dependency "rspec"
|
|
14
14
|
gem.add_development_dependency "cucumber"
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.3.
|
|
1
|
+
0.3.3
|
data/belly.gemspec
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
|
|
6
6
|
Gem::Specification.new do |s|
|
|
7
7
|
s.name = %q{belly}
|
|
8
|
-
s.version = "0.3.
|
|
8
|
+
s.version = "0.3.3"
|
|
9
9
|
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
11
11
|
s.authors = ["Matt Wynne"]
|
|
@@ -40,17 +40,19 @@ Gem::Specification.new do |s|
|
|
|
40
40
|
"lib/belly.rb",
|
|
41
41
|
"lib/belly/cli.rb",
|
|
42
42
|
"lib/belly/cli/init.rb",
|
|
43
|
+
"lib/belly/cli/rerun_cucumber.rb",
|
|
43
44
|
"lib/belly/client.rb",
|
|
44
45
|
"lib/belly/client/config.rb",
|
|
45
46
|
"lib/belly/client/default_config.rb",
|
|
46
47
|
"lib/belly/client/fakeweb_hack.rb",
|
|
47
48
|
"lib/belly/client/hub_proxy.rb",
|
|
49
|
+
"lib/belly/cucumber_rerun.rb",
|
|
48
50
|
"lib/belly/for/cucumber.rb",
|
|
49
51
|
"lib/belly/messages/cucumber_scenario_result_message.rb",
|
|
50
52
|
"spec/belly/project_initializer_spec.rb",
|
|
51
53
|
"spec/spec_helper.rb"
|
|
52
54
|
]
|
|
53
|
-
s.homepage = %q{http://
|
|
55
|
+
s.homepage = %q{http://belly.heroku.com}
|
|
54
56
|
s.rdoc_options = ["--charset=UTF-8"]
|
|
55
57
|
s.require_paths = ["lib"]
|
|
56
58
|
s.rubygems_version = %q{1.3.7}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
require 'belly/cucumber_rerun'
|
|
2
|
+
|
|
3
|
+
options = Trollop::options do
|
|
4
|
+
banner <<-EOF
|
|
5
|
+
This is the help for the rerun:cucumber command. To see all commands availlable, type belly --help
|
|
6
|
+
|
|
7
|
+
Usage: belly rerun:cucumber
|
|
8
|
+
|
|
9
|
+
Show the Cucumber scenarios that need to be rerun
|
|
10
|
+
|
|
11
|
+
EOF
|
|
12
|
+
opt :name, "Name of the project", :default => File.basename(Dir.pwd)
|
|
13
|
+
end
|
|
14
|
+
|
|
15
|
+
Belly::CucumberRerun.new(options).run(Trollop)
|
metadata
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: belly
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
hash:
|
|
4
|
+
hash: 21
|
|
5
5
|
prerelease: false
|
|
6
6
|
segments:
|
|
7
7
|
- 0
|
|
8
8
|
- 3
|
|
9
|
-
-
|
|
10
|
-
version: 0.3.
|
|
9
|
+
- 3
|
|
10
|
+
version: 0.3.3
|
|
11
11
|
platform: ruby
|
|
12
12
|
authors:
|
|
13
13
|
- Matt Wynne
|
|
@@ -77,17 +77,19 @@ files:
|
|
|
77
77
|
- lib/belly.rb
|
|
78
78
|
- lib/belly/cli.rb
|
|
79
79
|
- lib/belly/cli/init.rb
|
|
80
|
+
- lib/belly/cli/rerun_cucumber.rb
|
|
80
81
|
- lib/belly/client.rb
|
|
81
82
|
- lib/belly/client/config.rb
|
|
82
83
|
- lib/belly/client/default_config.rb
|
|
83
84
|
- lib/belly/client/fakeweb_hack.rb
|
|
84
85
|
- lib/belly/client/hub_proxy.rb
|
|
86
|
+
- lib/belly/cucumber_rerun.rb
|
|
85
87
|
- lib/belly/for/cucumber.rb
|
|
86
88
|
- lib/belly/messages/cucumber_scenario_result_message.rb
|
|
87
89
|
- spec/belly/project_initializer_spec.rb
|
|
88
90
|
- spec/spec_helper.rb
|
|
89
91
|
has_rdoc: true
|
|
90
|
-
homepage: http://
|
|
92
|
+
homepage: http://belly.heroku.com
|
|
91
93
|
licenses: []
|
|
92
94
|
|
|
93
95
|
post_install_message:
|