the 0.0.1 → 0.0.2
Sign up to get free protection for your applications and to get access to all the features.
- data/.gitignore +1 -0
- data/lib/the/model_steps.rb +1 -1
- data/the.gemspec +1 -1
- metadata +4 -3
data/.gitignore
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
*.gem
|
data/lib/the/model_steps.rb
CHANGED
@@ -9,7 +9,7 @@ Given /^the following (#{Match::DomainEntity}):$/ do |type, attributes_table|
|
|
9
9
|
end
|
10
10
|
|
11
11
|
Then /^there should be (\d+) (#{Match::DomainEntity})$/ do |num, type|
|
12
|
-
type.constantize.count.should == num.to_i
|
12
|
+
type.singularize.constantize.count.should == num.to_i
|
13
13
|
end
|
14
14
|
|
15
15
|
Then /^the (#{Match::DomainEntity}) should have the following attributes:$/ do |type, table|
|
data/the.gemspec
CHANGED
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: the
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
4
|
+
hash: 27
|
5
5
|
prerelease: false
|
6
6
|
segments:
|
7
7
|
- 0
|
8
8
|
- 0
|
9
|
-
-
|
10
|
-
version: 0.0.
|
9
|
+
- 2
|
10
|
+
version: 0.0.2
|
11
11
|
platform: ruby
|
12
12
|
authors:
|
13
13
|
- Matt Wynne
|
@@ -28,6 +28,7 @@ extensions: []
|
|
28
28
|
extra_rdoc_files: []
|
29
29
|
|
30
30
|
files:
|
31
|
+
- .gitignore
|
31
32
|
- README.md
|
32
33
|
- lib/the.rb
|
33
34
|
- lib/the/model_steps.rb
|