Skip to content

Commit

Permalink
0.5.11 release
Browse files Browse the repository at this point in the history
  • Loading branch information
timcharper committed Aug 31, 2009
1 parent 00eaf6c commit f2c9274
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 11 deletions.
6 changes: 5 additions & 1 deletion History.txt
Original file line number Original file line Diff line number Diff line change
@@ -1,4 +1,4 @@
== 0.5.10 == 0.5.11


=== Bugfixes === Bugfixes


Expand All @@ -8,6 +8,10 @@


* refactoring. TestFramework class extracted from Server (should've been that way from the beginning). Runner no longer handling TestFramework selection logic, extracted that to a factory method. Hurray for refactoring. * refactoring. TestFramework class extracted from Server (should've been that way from the beginning). Runner no longer handling TestFramework selection logic, extracted that to a factory method. Hurray for refactoring.


== 0.5.10

Failed release. Github doesn't allow one to repent of a failed release, so, here it is. It's exactly the same as 0.5.9

== 0.5.9 == 0.5.9


=== Bugfixes === Bugfixes
Expand Down
2 changes: 1 addition & 1 deletion VERSION.yml
Original file line number Original file line Diff line number Diff line change
@@ -1,4 +1,4 @@
--- ---
:major: 0 :major: 0
:minor: 5 :minor: 5
:patch: 10 :patch: 11
24 changes: 15 additions & 9 deletions spork.gemspec
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@


Gem::Specification.new do |s| Gem::Specification.new do |s|
s.name = %q{spork} s.name = %q{spork}
s.version = "0.5.10" s.version = "0.5.11"


s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version= s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["Tim Harper"] s.authors = ["Tim Harper"]
Expand All @@ -23,6 +23,7 @@ Gem::Specification.new do |s|
"features/diagnostic_mode.feature", "features/diagnostic_mode.feature",
"features/rails_delayed_loading_workarounds.feature", "features/rails_delayed_loading_workarounds.feature",
"features/rspec_rails_integration.feature", "features/rspec_rails_integration.feature",
"features/steps/general_steps.rb",
"features/steps/rails_steps.rb", "features/steps/rails_steps.rb",
"features/steps/sandbox_steps.rb", "features/steps/sandbox_steps.rb",
"features/support/env.rb", "features/support/env.rb",
Expand All @@ -39,19 +40,22 @@ Gem::Specification.new do |s|
"lib/spork/forker.rb", "lib/spork/forker.rb",
"lib/spork/runner.rb", "lib/spork/runner.rb",
"lib/spork/server.rb", "lib/spork/server.rb",
"lib/spork/server/cucumber.rb", "lib/spork/test_framework.rb",
"lib/spork/server/rspec.rb", "lib/spork/test_framework/cucumber.rb",
"lib/spork/test_framework/rspec.rb",
"spec/spec_helper.rb", "spec/spec_helper.rb",
"spec/spork/app_framework/rails_spec.rb", "spec/spork/app_framework/rails_spec.rb",
"spec/spork/app_framework/unknown_spec.rb", "spec/spork/app_framework/unknown_spec.rb",
"spec/spork/app_framework_spec.rb", "spec/spork/app_framework_spec.rb",
"spec/spork/diagnoser_spec.rb", "spec/spork/diagnoser_spec.rb",
"spec/spork/forker_spec.rb", "spec/spork/forker_spec.rb",
"spec/spork/runner_spec.rb", "spec/spork/runner_spec.rb",
"spec/spork/server/cucumber_spec.rb",
"spec/spork/server/rspec_spec.rb",
"spec/spork/server_spec.rb", "spec/spork/server_spec.rb",
"spec/spork_spec.rb" "spec/spork/test_framework/cucumber_spec.rb",
"spec/spork/test_framework/rspec_spec.rb",
"spec/spork/test_framework_spec.rb",
"spec/spork_spec.rb",
"spec/support/fake_framework.rb"
] ]
s.homepage = %q{http://github.com/timcharper/spork} s.homepage = %q{http://github.com/timcharper/spork}
s.rdoc_options = ["--main", "README.rdoc"] s.rdoc_options = ["--main", "README.rdoc"]
Expand All @@ -67,10 +71,12 @@ Gem::Specification.new do |s|
"spec/spork/diagnoser_spec.rb", "spec/spork/diagnoser_spec.rb",
"spec/spork/forker_spec.rb", "spec/spork/forker_spec.rb",
"spec/spork/runner_spec.rb", "spec/spork/runner_spec.rb",
"spec/spork/server/cucumber_spec.rb",
"spec/spork/server/rspec_spec.rb",
"spec/spork/server_spec.rb", "spec/spork/server_spec.rb",
"spec/spork_spec.rb" "spec/spork/test_framework/cucumber_spec.rb",
"spec/spork/test_framework/rspec_spec.rb",
"spec/spork/test_framework_spec.rb",
"spec/spork_spec.rb",
"spec/support/fake_framework.rb"
] ]


if s.respond_to? :specification_version then if s.respond_to? :specification_version then
Expand Down

0 comments on commit f2c9274

Please sign in to comment.