coulda 0.6.0 → 0.6.1

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.
@@ -0,0 +1,12 @@
1
+ GEM
2
+ remote: http://rubygems.org/
3
+ specs:
4
+ rr (1.0.2)
5
+ shoulda (2.11.3)
6
+
7
+ PLATFORMS
8
+ ruby
9
+
10
+ DEPENDENCIES
11
+ rr
12
+ shoulda
data/HISTORY CHANGED
@@ -91,3 +91,7 @@ Cleanup
91
91
  0.5.5
92
92
  -----
93
93
  - Adds Coulda#default_testcase_class and mutator to set a single testcase_class instead of Test::Unit::TestCase
94
+
95
+ 0.6.1
96
+ -----
97
+ - Requiring coulda automatcally loads coulda/tasks. No longer need to require 'coulda/tasks' to get the Rake task in your Rails app.
@@ -5,11 +5,11 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{coulda}
8
- s.version = "0.6.0"
8
+ s.version = "0.6.1"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Evan David Light"]
12
- s.date = %q{2010-10-29}
12
+ s.date = %q{2010-11-20}
13
13
  s.description = %q{Behaviour Driven Development derived from Cucumber but as an internal DSL with methods for reuse}
14
14
  s.email = %q{evan@tiggerpalace.com}
15
15
  s.extra_rdoc_files = [
@@ -10,6 +10,7 @@ require 'coulda/scenario'
10
10
  require 'coulda/pending'
11
11
  require 'coulda/vendor/constantize'
12
12
  require 'coulda/vendor/underscore'
13
+ require 'coulda/tasks'
13
14
 
14
15
  module Kernel
15
16
  # Factory method for Test::Unit::TestCase subclasses
@@ -1,3 +1,5 @@
1
+ require 'rake'
2
+
1
3
  namespace :coulda do
2
4
  desc "Print all features as plain text"
3
5
  task :print_features do
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: coulda
3
3
  version: !ruby/object:Gem::Version
4
- hash: 7
4
+ hash: 5
5
5
  prerelease: false
6
6
  segments:
7
7
  - 0
8
8
  - 6
9
- - 0
10
- version: 0.6.0
9
+ - 1
10
+ version: 0.6.1
11
11
  platform: ruby
12
12
  authors:
13
13
  - Evan David Light
@@ -15,7 +15,7 @@ autorequire:
15
15
  bindir: bin
16
16
  cert_chain: []
17
17
 
18
- date: 2010-10-29 00:00:00 -04:00
18
+ date: 2010-11-20 00:00:00 -05:00
19
19
  default_executable:
20
20
  dependencies: []
21
21
 
@@ -37,9 +37,9 @@ files:
37
37
  - lib/coulda/vendor/underscore.rb
38
38
  - lib/coulda/world.rb
39
39
  - lib/coulda.rb
40
- - coulda-0.5.5.gem
41
40
  - coulda.gemspec
42
41
  - Gemfile
42
+ - Gemfile.lock
43
43
  - geminstaller.yml
44
44
  - HISTORY
45
45
  - LICENSE
Binary file