rspec 1.2.5 → 1.2.6

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,3 +1,8 @@
1
+ === Version 1.2.6 / 2009-04-30
2
+
3
+ * bug fixes
4
+ * gem actually built with spec executable
5
+
1
6
  === Version 1.2.5 / 2009-04-29
2
7
 
3
8
  * enhancements
@@ -3,6 +3,7 @@
3
3
  * http://rspec.info
4
4
  * http://rubyforge.org/projects/rspec
5
5
  * http://github.com/dchelimsky/rspec/wikis
6
+ * mailto:rspec-users@rubyforge.org
6
7
  * mailto:rspec-devel@rubyforge.org
7
8
 
8
9
  == DESCRIPTION:
@@ -1,4 +1,4 @@
1
- = Upgrade to rspec-1.2.3
1
+ = Upgrade to rspec-1.2.3-1.2.6
2
2
 
3
3
  == What's Changed
4
4
 
@@ -3,7 +3,7 @@ module Spec # :nodoc:
3
3
  unless defined? MAJOR
4
4
  MAJOR = 1
5
5
  MINOR = 2
6
- TINY = 5
6
+ TINY = 6
7
7
 
8
8
  STRING = [MAJOR, MINOR, TINY].compact.join('.')
9
9
 
@@ -26,7 +26,7 @@ describe "should raise_error {|err| ... }" do
26
26
  lambda { non_existent_method }.should raise_error {|e|
27
27
  error = e
28
28
  }
29
- error.should be_an_instance_of(NameError)
29
+ error.should be_kind_of(NameError)
30
30
  end
31
31
  end
32
32
 
@@ -118,8 +118,8 @@ describe "should_not raise_error(NamedError)" do
118
118
 
119
119
  it "should fail if named error is raised" do
120
120
  lambda {
121
- lambda { non_existent_method }.should_not raise_error(NameError)
122
- }.should fail_with(/expected no NameError, got #<NameError: undefined/)
121
+ lambda { 1 + 'b' }.should_not raise_error(TypeError)
122
+ }.should fail_with(/expected no TypeError, got #<TypeError: String can't be/)
123
123
  end
124
124
  end
125
125
 
metadata CHANGED
@@ -1,36 +1,15 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rspec
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.2.5
4
+ version: 1.2.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - RSpec Development Team
8
8
  autorequire:
9
9
  bindir: bin
10
- cert_chain:
11
- - |
12
- -----BEGIN CERTIFICATE-----
13
- MIIDQDCCAiigAwIBAgIBADANBgkqhkiG9w0BAQUFADBGMRQwEgYDVQQDDAtyc3Bl
14
- Yy1kZXZlbDEZMBcGCgmSJomT8ixkARkWCXJ1Ynlmb3JnZTETMBEGCgmSJomT8ixk
15
- ARkWA29yZzAeFw0wOTA0MjgyMDQ5NDVaFw0xMDA0MjgyMDQ5NDVaMEYxFDASBgNV
16
- BAMMC3JzcGVjLWRldmVsMRkwFwYKCZImiZPyLGQBGRYJcnVieWZvcmdlMRMwEQYK
17
- CZImiZPyLGQBGRYDb3JnMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA
18
- vFsOmL+2dKD2pskbJlzUvH/NZXL8oFy//5xssQydCbiv4Bx/PSs4JiL12/Rl4OjK
19
- j+da8ml/8QqzoJqQwSo4T/wRamXd20MKgtn9K+MQ30wby6i0Ti/r85f3XW14Of+K
20
- OwCoQvzf/kDNpyKYymkMzSdu6nT8GmgjEUpe8SAhwTuY6J/a/oCM0Eu7bFQs/u2f
21
- B7r6V82E4WrxWy9bPUkUK9gk89HK7H605G6xoKjNiLPTz8v+TdZfNc0Cx94n+GT7
22
- i/aaSs5lhJ0POB2dcbjvx+mCu+Qy7SbLH08wv8Q0oDlQPNkdgDwBRE+S3N44qOYj
23
- AAxpF+EMI7NYzcYNETt5TQIDAQABozkwNzAJBgNVHRMEAjAAMAsGA1UdDwQEAwIE
24
- sDAdBgNVHQ4EFgQUZFSx0Rt8FU0c2CpTa5gKgMDEXl8wDQYJKoZIhvcNAQEFBQAD
25
- ggEBALP3T9ws/3qAEZxbK2ZVvebb76FrZjJSxVD/kJqbrAgfZXe0VcpF3c/nT7V7
26
- 983CvtPhIOBR7dZy+vIm+KPhuD2EraJHuPsW3xatVdxSGGHzPjm13X1TKjDCreb1
27
- RZMEV+PAdjHdcPvHjg2HI3yM7SB0LhvS/iTylB2vrqyhd3Cgq6dgE9hA+db2r4h+
28
- du+khTSJ/yAl0IkhpcGNoXI/L5VQXJMgg/lRwmfQl4nqrVN9co3CPciM13L3Kz24
29
- 7XHWIHZLt6PzpDxMa4RYOeFx0cgxH3Su/hFc086K0Y3BEWSmg+nF/2eCpu7Not1q
30
- rxjzEkfOKoy3oCfGDf8/ZQyQaJo=
31
- -----END CERTIFICATE-----
10
+ cert_chain: []
32
11
 
33
- date: 2009-04-29 00:00:00 -05:00
12
+ date: 2009-04-30 00:00:00 -05:00
34
13
  default_executable:
35
14
  dependencies:
36
15
  - !ruby/object:Gem::Dependency
@@ -58,6 +37,7 @@ email:
58
37
  - rspec-devel@rubyforge.org
59
38
  executables:
60
39
  - autospec
40
+ - spec
61
41
  extensions: []
62
42
 
63
43
  extra_rdoc_files:
@@ -440,7 +420,7 @@ licenses: []
440
420
  post_install_message: |
441
421
  **************************************************
442
422
 
443
- Thank you for installing rspec-1.2.5
423
+ Thank you for installing rspec-1.2.6
444
424
 
445
425
  Please be sure to read History.rdoc and Upgrade.rdoc
446
426
  for useful information about this release.
@@ -470,6 +450,6 @@ rubyforge_project: rspec
470
450
  rubygems_version: 1.3.2
471
451
  signing_key:
472
452
  specification_version: 3
473
- summary: rspec 1.2.5
453
+ summary: rspec 1.2.6
474
454
  test_files: []
475
455
 
data.tar.gz.sig DELETED
Binary file
metadata.gz.sig DELETED
@@ -1 +0,0 @@
1
-