belly 0.3.2 → 0.3.3

Sign up to get free protection for your applications and to get access to all the features.
data/.belly CHANGED
@@ -1,2 +1,2 @@
1
- hub: localhost:3000
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://github.com/mattwynne/belly-mouth"
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.0
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.2"
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://github.com/mattwynne/belly-mouth}
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)
@@ -0,0 +1,11 @@
1
+ module Belly
2
+ class CucumberRerun
3
+ def initialize(options)
4
+
5
+ end
6
+
7
+ def run(ui)
8
+ ui.die("I lied. I have no idea how to do this yet, sorry")
9
+ end
10
+ end
11
+ end
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: 23
4
+ hash: 21
5
5
  prerelease: false
6
6
  segments:
7
7
  - 0
8
8
  - 3
9
- - 2
10
- version: 0.3.2
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://github.com/mattwynne/belly-mouth
92
+ homepage: http://belly.heroku.com
91
93
  licenses: []
92
94
 
93
95
  post_install_message: