rspec 2.0.0.beta.8 → 2.0.0.beta.9

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,19 +1,16 @@
1
- # Rspec
2
-
3
- This is part of the rspec-2 codebase, which is in alpha release at the moment.
4
- While you are welcome to track, fork, explore, etc, we're too early in the
5
- process to start fielding pull requests and or issues from outside the core
6
- development team, so please don't waste your time until this
7
- notice changes.
8
-
9
- This repo will be the source for the rspec-2.x gem, which will serve as a
10
- meta-gem, much like the rails and merb gems. `gem install rspec` will also
11
- install rspec-core, rspec-expectations and rspec-mocks, each of which can be
12
- installed separately and actived in isolation with the `gem` command. Among
13
- other benefits, this will allow you to use rspec-expectations, for example, in
14
- Test::Unit::TestCase if you happen to like that style.
15
-
16
- Conversely, if you like Rspec's approach to declaring example groups and
1
+ # RSpec-2
2
+
3
+ Behaviour Driven Development for Ruby
4
+
5
+ # Description
6
+
7
+ rspec-2.x is a meta-gem, which depends on the rspec-core, rspec-expectations
8
+ and rspec-mocks gems. Each of these can be installed separately and actived in
9
+ isolation with the `gem` command. Among other benefits, this allows you to use
10
+ rspec-expectations, for example, in Test::Unit::TestCase if you happen to
11
+ prefer that style.
12
+
13
+ Conversely, if you like RSpec's approach to declaring example groups and
17
14
  examples (`describe` and `it`) but prefer Test::Unit assertions and mocha, rr
18
15
  or flexmock for mocking, you'll be able to do that without having to load the
19
16
  components of rspec that you're not using.
data/Rakefile CHANGED
@@ -2,7 +2,7 @@ require 'rake'
2
2
  require 'fileutils'
3
3
  require 'pathname'
4
4
 
5
- $:.unshift File.expand_path(File.join(File.dirname(__FILE__),'lib'))
5
+ $:.unshift File.expand_path('../lib', __FILE__)
6
6
 
7
7
  require 'rspec/version'
8
8
 
@@ -10,16 +10,16 @@ begin
10
10
  require 'jeweler'
11
11
  Jeweler::Tasks.new do |gem|
12
12
  gem.name = "rspec"
13
- gem.version = Rspec::Version::STRING
14
- gem.summary = "rspec-#{Rspec::Version::STRING}"
13
+ gem.version = RSpec::Version::STRING
14
+ gem.summary = "rspec-#{RSpec::Version::STRING}"
15
15
  gem.description = "Meta-gem that depends on the other rspec gems"
16
16
  gem.email = "dchelimsky@gmail.com;chad.humphries@gmail.com"
17
17
  gem.homepage = "http://github.com/rspec/meta"
18
18
  gem.authors = ["David Chelimsky", "Chad Humphries"]
19
19
  gem.rubyforge_project = "rspec"
20
- gem.add_dependency "rspec-core", Rspec::Version::STRING
21
- gem.add_dependency "rspec-expectations", Rspec::Version::STRING
22
- gem.add_dependency "rspec-mocks", Rspec::Version::STRING
20
+ gem.add_dependency "rspec-core", RSpec::Version::STRING
21
+ gem.add_dependency "rspec-expectations", RSpec::Version::STRING
22
+ gem.add_dependency "rspec-mocks", RSpec::Version::STRING
23
23
  gem.post_install_message = <<-EOM
24
24
  #{"*"*50}
25
25
 
@@ -39,7 +39,7 @@ end
39
39
  namespace :gem do
40
40
  desc "push to gemcutter"
41
41
  task :push => :build do
42
- system "gem push pkg/rspec-#{Rspec::Version::STRING}.gem"
42
+ system "gem push pkg/rspec-#{RSpec::Version::STRING}.gem"
43
43
  end
44
44
  end
45
45
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 2.0.0.beta.8
1
+ 2.0.0.beta.9
@@ -1,4 +1,4 @@
1
- module Rspec # :nodoc:
1
+ module RSpec # :nodoc:
2
2
  module Version # :nodoc:
3
3
  STRING = File.readlines(File.expand_path('../../../VERSION', __FILE__)).first
4
4
  end
@@ -5,11 +5,11 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{rspec}
8
- s.version = "2.0.0.beta.8"
8
+ s.version = "2.0.0.beta.9"
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"]
12
- s.date = %q{2010-04-27}
12
+ s.date = %q{2010-05-27}
13
13
  s.description = %q{Meta-gem that depends on the other rspec gems}
14
14
  s.email = %q{dchelimsky@gmail.com;chad.humphries@gmail.com}
15
15
  s.extra_rdoc_files = [
@@ -29,7 +29,7 @@ Gem::Specification.new do |s|
29
29
  s.homepage = %q{http://github.com/rspec/meta}
30
30
  s.post_install_message = %q{**************************************************
31
31
 
32
- Thank you for installing rspec-2.0.0.beta.8
32
+ Thank you for installing rspec-2.0.0.beta.9
33
33
 
34
34
  This is beta software. If you are looking
35
35
  for a supported production release, please
@@ -41,25 +41,25 @@ Gem::Specification.new do |s|
41
41
  s.require_paths = ["lib"]
42
42
  s.rubyforge_project = %q{rspec}
43
43
  s.rubygems_version = %q{1.3.6}
44
- s.summary = %q{rspec-2.0.0.beta.8}
44
+ s.summary = %q{rspec-2.0.0.beta.9}
45
45
 
46
46
  if s.respond_to? :specification_version then
47
47
  current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
48
48
  s.specification_version = 3
49
49
 
50
50
  if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
51
- s.add_runtime_dependency(%q<rspec-core>, ["= 2.0.0.beta.8"])
52
- s.add_runtime_dependency(%q<rspec-expectations>, ["= 2.0.0.beta.8"])
53
- s.add_runtime_dependency(%q<rspec-mocks>, ["= 2.0.0.beta.8"])
51
+ s.add_runtime_dependency(%q<rspec-core>, ["= 2.0.0.beta.9"])
52
+ s.add_runtime_dependency(%q<rspec-expectations>, ["= 2.0.0.beta.9"])
53
+ s.add_runtime_dependency(%q<rspec-mocks>, ["= 2.0.0.beta.9"])
54
54
  else
55
- s.add_dependency(%q<rspec-core>, ["= 2.0.0.beta.8"])
56
- s.add_dependency(%q<rspec-expectations>, ["= 2.0.0.beta.8"])
57
- s.add_dependency(%q<rspec-mocks>, ["= 2.0.0.beta.8"])
55
+ s.add_dependency(%q<rspec-core>, ["= 2.0.0.beta.9"])
56
+ s.add_dependency(%q<rspec-expectations>, ["= 2.0.0.beta.9"])
57
+ s.add_dependency(%q<rspec-mocks>, ["= 2.0.0.beta.9"])
58
58
  end
59
59
  else
60
- s.add_dependency(%q<rspec-core>, ["= 2.0.0.beta.8"])
61
- s.add_dependency(%q<rspec-expectations>, ["= 2.0.0.beta.8"])
62
- s.add_dependency(%q<rspec-mocks>, ["= 2.0.0.beta.8"])
60
+ s.add_dependency(%q<rspec-core>, ["= 2.0.0.beta.9"])
61
+ s.add_dependency(%q<rspec-expectations>, ["= 2.0.0.beta.9"])
62
+ s.add_dependency(%q<rspec-mocks>, ["= 2.0.0.beta.9"])
63
63
  end
64
64
  end
65
65
 
metadata CHANGED
@@ -7,8 +7,8 @@ version: !ruby/object:Gem::Version
7
7
  - 0
8
8
  - 0
9
9
  - beta
10
- - 8
11
- version: 2.0.0.beta.8
10
+ - 9
11
+ version: 2.0.0.beta.9
12
12
  platform: ruby
13
13
  authors:
14
14
  - David Chelimsky
@@ -17,7 +17,7 @@ autorequire:
17
17
  bindir: bin
18
18
  cert_chain: []
19
19
 
20
- date: 2010-04-27 00:00:00 -05:00
20
+ date: 2010-05-27 00:00:00 -05:00
21
21
  default_executable:
22
22
  dependencies:
23
23
  - !ruby/object:Gem::Dependency
@@ -32,8 +32,8 @@ dependencies:
32
32
  - 0
33
33
  - 0
34
34
  - beta
35
- - 8
36
- version: 2.0.0.beta.8
35
+ - 9
36
+ version: 2.0.0.beta.9
37
37
  type: :runtime
38
38
  version_requirements: *id001
39
39
  - !ruby/object:Gem::Dependency
@@ -48,8 +48,8 @@ dependencies:
48
48
  - 0
49
49
  - 0
50
50
  - beta
51
- - 8
52
- version: 2.0.0.beta.8
51
+ - 9
52
+ version: 2.0.0.beta.9
53
53
  type: :runtime
54
54
  version_requirements: *id002
55
55
  - !ruby/object:Gem::Dependency
@@ -64,8 +64,8 @@ dependencies:
64
64
  - 0
65
65
  - 0
66
66
  - beta
67
- - 8
68
- version: 2.0.0.beta.8
67
+ - 9
68
+ version: 2.0.0.beta.9
69
69
  type: :runtime
70
70
  version_requirements: *id003
71
71
  description: Meta-gem that depends on the other rspec gems
@@ -93,7 +93,7 @@ licenses: []
93
93
  post_install_message: |
94
94
  **************************************************
95
95
 
96
- Thank you for installing rspec-2.0.0.beta.8
96
+ Thank you for installing rspec-2.0.0.beta.9
97
97
 
98
98
  This is beta software. If you are looking
99
99
  for a supported production release, please
@@ -127,6 +127,6 @@ rubyforge_project: rspec
127
127
  rubygems_version: 1.3.6
128
128
  signing_key:
129
129
  specification_version: 3
130
- summary: rspec-2.0.0.beta.8
130
+ summary: rspec-2.0.0.beta.9
131
131
  test_files: []
132
132