rspec-rails 1.2.5 → 1.2.6

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.
@@ -1,3 +1,8 @@
1
+ === Version 1.2.6 / 2009-04-30
2
+
3
+ * bug fixes
4
+ * restored rake tasks for rspec[-rails] as plugins
5
+
1
6
  === Version 1.2.5 / 2009-04-29
2
7
 
3
8
  * enhancements
data/Rakefile CHANGED
@@ -13,7 +13,7 @@ Hoe.new('rspec-rails', Spec::Rails::VERSION::STRING) do |p|
13
13
  p.description = "Behaviour Driven Development for Ruby on Rails."
14
14
  p.rubyforge_name = 'rspec'
15
15
  p.developer('RSpec Development Team', 'rspec-devel@rubyforge.org')
16
- p.extra_deps = [["rspec","1.2.5"],["rack",">=0.4.0"]]
16
+ p.extra_deps = [["rspec","1.2.6"],["rack",">=0.4.0"]]
17
17
  p.extra_dev_deps = [["cucumber",">= 0.2.2"]]
18
18
  p.remote_rdoc_dir = "rspec-rails/#{Spec::Rails::VERSION::STRING}"
19
19
  p.history_file = 'History.rdoc'
@@ -1,4 +1,4 @@
1
- = Upgrade to 1.2.0-1.2.3
1
+ = Upgrade to 1.2.0-1.2.6
2
2
 
3
3
  == What's changed
4
4
 
@@ -1,4 +1,6 @@
1
1
  gem 'test-unit', '1.2.3' if RUBY_VERSION.to_f >= 1.9
2
+ rspec_plugin_dir = File.expand_path(File.dirname(__FILE__) + '/../../vendor/plugins/rspec')
3
+ $LOAD_PATH.unshift("#{rspec_plugin_dir}/lib") if File.exist?(rspec_plugin_dir)
2
4
 
3
5
  # Don't load rspec if running "rake gems:*"
4
6
  unless ARGV.any? {|a| a =~ /^gems/}
@@ -4,7 +4,7 @@ module Spec # :nodoc:
4
4
  unless defined? MAJOR
5
5
  MAJOR = 1
6
6
  MINOR = 2
7
- TINY = 5
7
+ TINY = 6
8
8
 
9
9
  STRING = [MAJOR, MINOR, TINY].compact.join('.')
10
10
 
metadata CHANGED
@@ -1,36 +1,15 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rspec-rails
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
@@ -41,7 +20,7 @@ dependencies:
41
20
  requirements:
42
21
  - - "="
43
22
  - !ruby/object:Gem::Version
44
- version: 1.2.5
23
+ version: 1.2.6
45
24
  version:
46
25
  - !ruby/object:Gem::Dependency
47
26
  name: rack
@@ -258,7 +237,7 @@ licenses: []
258
237
  post_install_message: |
259
238
  **************************************************
260
239
 
261
- Thank you for installing rspec-rails-1.2.5
240
+ Thank you for installing rspec-rails-1.2.6
262
241
 
263
242
  If you are upgrading, do this in each of your rails apps
264
243
  that you want to upgrade:
@@ -293,6 +272,6 @@ rubyforge_project: rspec
293
272
  rubygems_version: 1.3.2
294
273
  signing_key:
295
274
  specification_version: 3
296
- summary: rspec-rails 1.2.5
275
+ summary: rspec-rails 1.2.6
297
276
  test_files: []
298
277
 
data.tar.gz.sig DELETED
Binary file
metadata.gz.sig DELETED
@@ -1 +0,0 @@
1
- '�\�e���Fl����ě3U�*��b�Q�v����2�a� ���1���e��k��G��_Y&���wE�x�Y�6�:Z�͎�vkK��/�C�23�NF;(4�Q�5�d҅gs�q��Ʋ"�3Ԗā1-� Ckf;���r����,�C�k���:���8���U��vG[��^��n�m~�ݾE�5:#g՛��i�G1�b�/i�h3K�f���d�N�N}l����c/W�f�Yie7�����<�TK����