Skip to content

Commit

Permalink
bump to a6
Browse files Browse the repository at this point in the history
  • Loading branch information
dchelimsky committed Feb 15, 2010
1 parent c6285ad commit 1661704
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 12 deletions.
2 changes: 1 addition & 1 deletion lib/rspec/core/version.rb
Expand Up @@ -5,7 +5,7 @@ module Version # :nodoc:
MAJOR = 2 MAJOR = 2
MINOR = 0 MINOR = 0
TINY = 0 TINY = 0
PRE = 'a5' PRE = 'a6'


STRING = [MAJOR, MINOR, TINY, PRE].compact.join('.') STRING = [MAJOR, MINOR, TINY, PRE].compact.join('.')


Expand Down
23 changes: 12 additions & 11 deletions rspec-core.gemspec
Expand Up @@ -5,11 +5,11 @@


Gem::Specification.new do |s| Gem::Specification.new do |s|
s.name = %q{rspec-core} s.name = %q{rspec-core}
s.version = "2.0.0.a5" s.version = "2.0.0.a6"


s.required_rubygems_version = Gem::Requirement.new("> 1.3.1") if s.respond_to? :required_rubygems_version= s.required_rubygems_version = Gem::Requirement.new("> 1.3.1") if s.respond_to? :required_rubygems_version=
s.authors = ["Chad Humphries", "David Chelimsky"] s.authors = ["Chad Humphries", "David Chelimsky"]
s.date = %q{2010-02-11} s.date = %q{2010-02-15}
s.default_executable = %q{rspec} s.default_executable = %q{rspec}
s.description = %q{Rspec runner and example group classes} s.description = %q{Rspec runner and example group classes}
s.email = %q{dchelimsky@gmail.com;chad.humphries@gmail.com} s.email = %q{dchelimsky@gmail.com;chad.humphries@gmail.com}
Expand Down Expand Up @@ -91,15 +91,16 @@ Gem::Specification.new do |s|
"features-pending/mocks/stub_implementation.feature", "features-pending/mocks/stub_implementation.feature",
"features-pending/pending/pending_examples.feature", "features-pending/pending/pending_examples.feature",
"features-pending/runner/specify_line_number.feature", "features-pending/runner/specify_line_number.feature",
"features/before_and_after_blocks/around.feature",
"features/before_and_after_blocks/before_and_after_blocks.feature",
"features/command_line/example_name_option.feature", "features/command_line/example_name_option.feature",
"features/command_line/line_number_appended_to_path.feature", "features/command_line/line_number_appended_to_path.feature",
"features/command_line/line_number_option.feature", "features/command_line/line_number_option.feature",
"features/configuration/spec_opts.feature", "features/configuration/spec_opts.feature",
"features/example_groups/describe_aliases.feature", "features/example_groups/describe_aliases.feature",
"features/example_groups/nested_groups.feature", "features/example_groups/nested_groups.feature",
"features/expectations/customized_message.feature", "features/expectations/customized_message.feature",
"features/hooks/around_hook.feature",
"features/hooks/before_and_after_hooks.feature",
"features/hooks/halt.feature",
"features/matchers/define_matcher.feature", "features/matchers/define_matcher.feature",
"features/matchers/define_matcher_outside_rspec.feature", "features/matchers/define_matcher_outside_rspec.feature",
"features/mock_framework_integration/use_flexmock.feature", "features/mock_framework_integration/use_flexmock.feature",
Expand Down Expand Up @@ -177,7 +178,7 @@ Gem::Specification.new do |s|
s.require_paths = ["lib"] s.require_paths = ["lib"]
s.rubyforge_project = %q{rspec} s.rubyforge_project = %q{rspec}
s.rubygems_version = %q{1.3.5} s.rubygems_version = %q{1.3.5}
s.summary = %q{rspec-core 2.0.0.a5} s.summary = %q{rspec-core 2.0.0.a6}
s.test_files = [ s.test_files = [
"spec/rspec/core/command_line_options_spec.rb", "spec/rspec/core/command_line_options_spec.rb",
"spec/rspec/core/configuration_spec.rb", "spec/rspec/core/configuration_spec.rb",
Expand Down Expand Up @@ -210,17 +211,17 @@ Gem::Specification.new do |s|
s.specification_version = 3 s.specification_version = 3


if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
s.add_development_dependency(%q<rspec-expectations>, [">= 2.0.0.a5"]) s.add_development_dependency(%q<rspec-expectations>, [">= 2.0.0.a6"])
s.add_development_dependency(%q<rspec-mocks>, [">= 2.0.0.a5"]) s.add_development_dependency(%q<rspec-mocks>, [">= 2.0.0.a6"])
s.add_development_dependency(%q<cucumber>, [">= 0.5.3"]) s.add_development_dependency(%q<cucumber>, [">= 0.5.3"])
else else
s.add_dependency(%q<rspec-expectations>, [">= 2.0.0.a5"]) s.add_dependency(%q<rspec-expectations>, [">= 2.0.0.a6"])
s.add_dependency(%q<rspec-mocks>, [">= 2.0.0.a5"]) s.add_dependency(%q<rspec-mocks>, [">= 2.0.0.a6"])
s.add_dependency(%q<cucumber>, [">= 0.5.3"]) s.add_dependency(%q<cucumber>, [">= 0.5.3"])
end end
else else
s.add_dependency(%q<rspec-expectations>, [">= 2.0.0.a5"]) s.add_dependency(%q<rspec-expectations>, [">= 2.0.0.a6"])
s.add_dependency(%q<rspec-mocks>, [">= 2.0.0.a5"]) s.add_dependency(%q<rspec-mocks>, [">= 2.0.0.a6"])
s.add_dependency(%q<cucumber>, [">= 0.5.3"]) s.add_dependency(%q<cucumber>, [">= 0.5.3"])
end end
end end
Expand Down

0 comments on commit 1661704

Please sign in to comment.