coulda 0.4.0 → 0.4.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.
- data/HISTORY +5 -0
- data/coulda.gemspec +3 -3
- data/lib/coulda.rb +1 -1
- metadata +4 -4
data/HISTORY
CHANGED
|
@@ -33,3 +33,8 @@ Cleanup
|
|
|
33
33
|
- Complete internal redesign/rewrite
|
|
34
34
|
- Feature method now accepts a :testcase_class => Class argument specifying the subclass of Test::Unit::TestCase,
|
|
35
35
|
allowing for simple integration with other Test::Unit frameworks
|
|
36
|
+
|
|
37
|
+
0.4.1
|
|
38
|
+
-----
|
|
39
|
+
- Modified to use 'pending' instead of 'jeremymcanally-pending' from github (after I removed the 'bones' gem
|
|
40
|
+
dependency from 'pending')
|
data/coulda.gemspec
CHANGED
|
@@ -5,11 +5,11 @@
|
|
|
5
5
|
|
|
6
6
|
Gem::Specification.new do |s|
|
|
7
7
|
s.name = %q{coulda}
|
|
8
|
-
s.version = "0.4.
|
|
8
|
+
s.version = "0.4.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{2009-11-
|
|
12
|
+
s.date = %q{2009-11-24}
|
|
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 = [
|
|
@@ -48,7 +48,7 @@ Gem::Specification.new do |s|
|
|
|
48
48
|
"test/scenario_test.rb",
|
|
49
49
|
"test/test_helper.rb"
|
|
50
50
|
]
|
|
51
|
-
s.add_dependency '
|
|
51
|
+
s.add_dependency 'pending', '>= 0.1.1'
|
|
52
52
|
|
|
53
53
|
if s.respond_to? :specification_version then
|
|
54
54
|
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
|
data/lib/coulda.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: coulda
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.4.
|
|
4
|
+
version: 0.4.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Evan David Light
|
|
@@ -9,18 +9,18 @@ autorequire:
|
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
11
|
|
|
12
|
-
date: 2009-11-
|
|
12
|
+
date: 2009-11-24 00:00:00 -05:00
|
|
13
13
|
default_executable:
|
|
14
14
|
dependencies:
|
|
15
15
|
- !ruby/object:Gem::Dependency
|
|
16
|
-
name:
|
|
16
|
+
name: pending
|
|
17
17
|
type: :runtime
|
|
18
18
|
version_requirement:
|
|
19
19
|
version_requirements: !ruby/object:Gem::Requirement
|
|
20
20
|
requirements:
|
|
21
21
|
- - ">="
|
|
22
22
|
- !ruby/object:Gem::Version
|
|
23
|
-
version:
|
|
23
|
+
version: 0.1.1
|
|
24
24
|
version:
|
|
25
25
|
description: Behaviour Driven Development derived from Cucumber but as an internal DSL with methods for reuse
|
|
26
26
|
email: evan@tiggerpalace.com
|