rspec-rails 2.0.0.a2 → 2.0.0.a3

Sign up to get free protection for your applications and to get access to all the features.
data/Rakefile CHANGED
@@ -17,7 +17,7 @@ begin
17
17
  gem.email = "dchelimsky@gmail.com;chad.humphries@gmail.com"
18
18
  gem.homepage = "http://github.com/rspec/rspec-rails"
19
19
  gem.authors = ["David Chelimsky", "Chad Humphries"]
20
- gem.add_dependency "rspec", ">= #{Rspec::Rails::Version::STRING}"
20
+ gem.add_dependency "rspec", ">= 2.0.0.a2"
21
21
  gem.add_dependency "webrat", "0.7.0"
22
22
  # gem is a Gem::Specification... see http://www.rubygems.org/read/chapter/20 for additional settings
23
23
  end
@@ -1,2 +1,3 @@
1
1
  require 'rspec/rails/transactional_database_support'
2
+ require 'rspec/rails/matchers'
2
3
  require 'rspec/rails/example'
@@ -1,3 +1,5 @@
1
+ require 'rspec/matchers'
2
+
1
3
  module Rspec
2
4
  module Rails
3
5
  module Matchers
@@ -5,7 +5,7 @@ module Rspec # :nodoc:
5
5
  MAJOR = 2
6
6
  MINOR = 0
7
7
  TINY = 0
8
- PRE = 'a2'
8
+ PRE = 'a3'
9
9
 
10
10
  STRING = [MAJOR, MINOR, TINY, PRE].compact.join('.')
11
11
 
@@ -5,7 +5,7 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{rspec-rails}
8
- s.version = "2.0.0.a2"
8
+ s.version = "2.0.0.a3"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new("> 1.3.1") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["David Chelimsky", "Chad Humphries"]
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rspec-rails
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.0.0.a2
4
+ version: 2.0.0.a3
5
5
  platform: ruby
6
6
  authors:
7
7
  - David Chelimsky