the 0.0.1 → 0.0.2

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/.gitignore ADDED
@@ -0,0 +1 @@
1
+ *.gem
@@ -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
@@ -1,6 +1,6 @@
1
1
  Gem::Specification.new do |s|
2
2
  s.name = "the"
3
- s.version = "0.0.1"
3
+ s.version = "0.0.2"
4
4
 
5
5
  s.required_rubygems_version = '>= 1.3.5'
6
6
  s.authors = ["Matt Wynne"]
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: 29
4
+ hash: 27
5
5
  prerelease: false
6
6
  segments:
7
7
  - 0
8
8
  - 0
9
- - 1
10
- version: 0.0.1
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