rspec 2.0.0.beta.2 → 2.0.0.beta.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/.gitignore +0 -1
- data/Rakefile +7 -0
- data/VERSION +1 -1
- data/rspec.gemspec +65 -0
- metadata +12 -11
data/.gitignore
CHANGED
data/Rakefile
CHANGED
@@ -38,6 +38,13 @@ rescue LoadError
|
|
38
38
|
puts "Jeweler (or a dependency) not available. Install it with: sudo gem install jeweler"
|
39
39
|
end
|
40
40
|
|
41
|
+
namespace :gem do
|
42
|
+
desc "push to gemcutter"
|
43
|
+
task :push => :build do
|
44
|
+
system "gem push pkg/rspec-#{Rspec::Version::STRING}.gem"
|
45
|
+
end
|
46
|
+
end
|
47
|
+
|
41
48
|
task :clobber do
|
42
49
|
rm_rf 'pkg'
|
43
50
|
end
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
2.0.0.beta.
|
1
|
+
2.0.0.beta.3
|
data/rspec.gemspec
ADDED
@@ -0,0 +1,65 @@
|
|
1
|
+
# Generated by jeweler
|
2
|
+
# DO NOT EDIT THIS FILE DIRECTLY
|
3
|
+
# Instead, edit Jeweler::Tasks in Rakefile, and run the gemspec command
|
4
|
+
# -*- encoding: utf-8 -*-
|
5
|
+
|
6
|
+
Gem::Specification.new do |s|
|
7
|
+
s.name = %q{rspec}
|
8
|
+
s.version = "2.0.0.beta.3"
|
9
|
+
|
10
|
+
s.required_rubygems_version = Gem::Requirement.new("> 1.3.1") if s.respond_to? :required_rubygems_version=
|
11
|
+
s.authors = ["David Chelimsky", "Chad Humphries"]
|
12
|
+
s.date = %q{2010-03-08}
|
13
|
+
s.description = %q{Meta-gem that depends on the other rspec gems}
|
14
|
+
s.email = %q{dchelimsky@gmail.com;chad.humphries@gmail.com}
|
15
|
+
s.extra_rdoc_files = [
|
16
|
+
"README.markdown"
|
17
|
+
]
|
18
|
+
s.files = [
|
19
|
+
".document",
|
20
|
+
".gitignore",
|
21
|
+
"License.txt",
|
22
|
+
"README.markdown",
|
23
|
+
"Rakefile",
|
24
|
+
"VERSION",
|
25
|
+
"lib/rspec.rb",
|
26
|
+
"lib/rspec/version.rb",
|
27
|
+
"rspec.gemspec"
|
28
|
+
]
|
29
|
+
s.homepage = %q{http://github.com/rspec/meta}
|
30
|
+
s.post_install_message = %q{**************************************************
|
31
|
+
|
32
|
+
Thank you for installing rspec-2.0.0.beta.3
|
33
|
+
|
34
|
+
This is beta software. If you are looking
|
35
|
+
for a supported production release, please
|
36
|
+
"gem install rspec" (without --pre).
|
37
|
+
|
38
|
+
**************************************************
|
39
|
+
}
|
40
|
+
s.rdoc_options = ["--charset=UTF-8"]
|
41
|
+
s.require_paths = ["lib"]
|
42
|
+
s.rubyforge_project = %q{rspec}
|
43
|
+
s.rubygems_version = %q{1.3.6}
|
44
|
+
s.summary = %q{rspec-2.0.0.beta.3}
|
45
|
+
|
46
|
+
if s.respond_to? :specification_version then
|
47
|
+
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
|
48
|
+
s.specification_version = 3
|
49
|
+
|
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.3"])
|
52
|
+
s.add_runtime_dependency(%q<rspec-expectations>, ["= 2.0.0.beta.3"])
|
53
|
+
s.add_runtime_dependency(%q<rspec-mocks>, ["= 2.0.0.beta.3"])
|
54
|
+
else
|
55
|
+
s.add_dependency(%q<rspec-core>, ["= 2.0.0.beta.3"])
|
56
|
+
s.add_dependency(%q<rspec-expectations>, ["= 2.0.0.beta.3"])
|
57
|
+
s.add_dependency(%q<rspec-mocks>, ["= 2.0.0.beta.3"])
|
58
|
+
end
|
59
|
+
else
|
60
|
+
s.add_dependency(%q<rspec-core>, ["= 2.0.0.beta.3"])
|
61
|
+
s.add_dependency(%q<rspec-expectations>, ["= 2.0.0.beta.3"])
|
62
|
+
s.add_dependency(%q<rspec-mocks>, ["= 2.0.0.beta.3"])
|
63
|
+
end
|
64
|
+
end
|
65
|
+
|
metadata
CHANGED
@@ -7,8 +7,8 @@ version: !ruby/object:Gem::Version
|
|
7
7
|
- 0
|
8
8
|
- 0
|
9
9
|
- beta
|
10
|
-
-
|
11
|
-
version: 2.0.0.beta.
|
10
|
+
- 3
|
11
|
+
version: 2.0.0.beta.3
|
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-03-
|
20
|
+
date: 2010-03-08 00:00:00 -06: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
|
-
-
|
36
|
-
version: 2.0.0.beta.
|
35
|
+
- 3
|
36
|
+
version: 2.0.0.beta.3
|
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
|
-
-
|
52
|
-
version: 2.0.0.beta.
|
51
|
+
- 3
|
52
|
+
version: 2.0.0.beta.3
|
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
|
-
-
|
68
|
-
version: 2.0.0.beta.
|
67
|
+
- 3
|
68
|
+
version: 2.0.0.beta.3
|
69
69
|
type: :runtime
|
70
70
|
version_requirements: *id003
|
71
71
|
description: Meta-gem that depends on the other rspec gems
|
@@ -85,6 +85,7 @@ files:
|
|
85
85
|
- VERSION
|
86
86
|
- lib/rspec.rb
|
87
87
|
- lib/rspec/version.rb
|
88
|
+
- rspec.gemspec
|
88
89
|
has_rdoc: true
|
89
90
|
homepage: http://github.com/rspec/meta
|
90
91
|
licenses: []
|
@@ -92,7 +93,7 @@ licenses: []
|
|
92
93
|
post_install_message: |
|
93
94
|
**************************************************
|
94
95
|
|
95
|
-
Thank you for installing rspec-2.0.0.beta.
|
96
|
+
Thank you for installing rspec-2.0.0.beta.3
|
96
97
|
|
97
98
|
This is beta software. If you are looking
|
98
99
|
for a supported production release, please
|
@@ -126,6 +127,6 @@ rubyforge_project: rspec
|
|
126
127
|
rubygems_version: 1.3.6
|
127
128
|
signing_key:
|
128
129
|
specification_version: 3
|
129
|
-
summary: rspec-2.0.0.beta.
|
130
|
+
summary: rspec-2.0.0.beta.3
|
130
131
|
test_files: []
|
131
132
|
|