Skip to content

Commit

Permalink
bump version to 2.0.0.beta.9
Browse files Browse the repository at this point in the history
  • Loading branch information
dchelimsky committed May 27, 2010
1 parent 57ba637 commit deb44f1
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 8 deletions.
2 changes: 1 addition & 1 deletion VERSION
@@ -1 +1 @@
2.0.0.beta.8
2.0.0.beta.9
19 changes: 12 additions & 7 deletions rspec-rails.gemspec
Expand Up @@ -5,11 +5,11 @@

Gem::Specification.new do |s|
s.name = %q{rspec-rails}
s.version = "2.0.0.beta.8"
s.version = "2.0.0.beta.9"

s.required_rubygems_version = Gem::Requirement.new("> 1.3.1") if s.respond_to? :required_rubygems_version=
s.authors = ["David Chelimsky", "Chad Humphries"]
s.date = %q{2010-05-18}
s.date = %q{2010-05-27}
s.description = %q{RSpec-2 for Rails-3}
s.email = %q{dchelimsky@gmail.com;chad.humphries@gmail.com}
s.extra_rdoc_files = [
Expand Down Expand Up @@ -69,6 +69,7 @@ Gem::Specification.new do |s|
"lib/rspec/rails/adapters.rb",
"lib/rspec/rails/example.rb",
"lib/rspec/rails/example/controller_example_group.rb",
"lib/rspec/rails/example/helper_example_group.rb",
"lib/rspec/rails/example/mailer_example_group.rb",
"lib/rspec/rails/example/request_example_group.rb",
"lib/rspec/rails/example/view_example_group.rb",
Expand All @@ -78,14 +79,17 @@ Gem::Specification.new do |s|
"lib/rspec/rails/mocks.rb",
"lib/rspec/rails/monkey.rb",
"lib/rspec/rails/monkey/action_controller/test_case.rb",
"lib/rspec/rails/monkey/action_view/test_case.rb",
"lib/rspec/rails/monkey/active_support/notifications/fanout.rb",
"lib/rspec/rails/null_resolver.rb",
"lib/rspec/rails/tasks/rspec.rake",
"lib/rspec/rails/transactional_database_support.rb",
"lib/rspec/rails/version.rb",
"lib/rspec/rails/view_assigns.rb",
"lib/rspec/rails/view_rendering.rb",
"rspec-rails.gemspec",
"spec/rspec/rails/example/controller_example_group_spec.rb",
"spec/rspec/rails/example/helper_example_group_spec.rb",
"spec/rspec/rails/example/mailer_example_group_spec.rb",
"spec/rspec/rails/example/request_example_group_spec.rb",
"spec/rspec/rails/example/view_example_group_spec.rb",
Expand All @@ -107,7 +111,7 @@ Gem::Specification.new do |s|
s.homepage = %q{http://github.com/rspec/rspec-rails}
s.post_install_message = %q{**************************************************
Thank you for installing rspec-rails-2.0.0.beta.8!
Thank you for installing rspec-rails-2.0.0.beta.9!
This version of rspec-rails only works with
versions of rails >= 3.0.0.pre.
Expand All @@ -122,9 +126,10 @@ Gem::Specification.new do |s|
s.require_paths = ["lib"]
s.rubyforge_project = %q{rspec}
s.rubygems_version = %q{1.3.6}
s.summary = %q{rspec-rails-2.0.0.beta.8}
s.summary = %q{rspec-rails-2.0.0.beta.9}
s.test_files = [
"spec/rspec/rails/example/controller_example_group_spec.rb",
"spec/rspec/rails/example/helper_example_group_spec.rb",
"spec/rspec/rails/example/mailer_example_group_spec.rb",
"spec/rspec/rails/example/request_example_group_spec.rb",
"spec/rspec/rails/example/view_example_group_spec.rb",
Expand All @@ -146,14 +151,14 @@ Gem::Specification.new do |s|
s.specification_version = 3

if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
s.add_runtime_dependency(%q<rspec>, ["= 2.0.0.beta.8"])
s.add_runtime_dependency(%q<rspec>, ["= 2.0.0.beta.9"])
s.add_runtime_dependency(%q<webrat>, [">= 0.7.0"])
else
s.add_dependency(%q<rspec>, ["= 2.0.0.beta.8"])
s.add_dependency(%q<rspec>, ["= 2.0.0.beta.9"])
s.add_dependency(%q<webrat>, [">= 0.7.0"])
end
else
s.add_dependency(%q<rspec>, ["= 2.0.0.beta.8"])
s.add_dependency(%q<rspec>, ["= 2.0.0.beta.9"])
s.add_dependency(%q<webrat>, [">= 0.7.0"])
end
end
Expand Down

0 comments on commit deb44f1

Please sign in to comment.