cucumber-sinatra 0.2.4 → 0.3.0
Sign up to get free protection for your applications and to get access to all the features.
data/CHANGES.md
CHANGED
data/cucumber-sinatra.gemspec
CHANGED
@@ -7,8 +7,8 @@ Gem::Specification.new do |s|
|
|
7
7
|
## If your rubyforge_project name is different, then edit it and comment out
|
8
8
|
## the sub! line in the Rakefile
|
9
9
|
s.name = 'cucumber-sinatra'
|
10
|
-
s.version = '0.
|
11
|
-
s.date = '2010-
|
10
|
+
s.version = '0.3.0'
|
11
|
+
s.date = '2010-10-26'
|
12
12
|
s.rubyforge_project = 'cucumber-sinatra'
|
13
13
|
|
14
14
|
s.summary = "Initialize a cucumber environment for sinatra"
|
data/lib/cucumber/sinatra.rb
CHANGED
@@ -6,14 +6,14 @@ require File.join(File.dirname(__FILE__), '..', '..', '<%= app_file -%>')
|
|
6
6
|
|
7
7
|
require 'capybara'
|
8
8
|
require 'capybara/cucumber'
|
9
|
-
require '
|
9
|
+
require 'rspec'
|
10
10
|
|
11
11
|
Capybara.app = <%= app_class %>
|
12
12
|
|
13
13
|
class <%= app_class -%>World
|
14
14
|
include Capybara
|
15
|
-
include
|
16
|
-
include
|
15
|
+
include RSpec::Expectations
|
16
|
+
include RSpec::Matchers
|
17
17
|
end
|
18
18
|
|
19
19
|
World do
|
metadata
CHANGED
@@ -1,13 +1,12 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: cucumber-sinatra
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash: 31
|
5
4
|
prerelease: false
|
6
5
|
segments:
|
7
6
|
- 0
|
8
|
-
-
|
9
|
-
-
|
10
|
-
version: 0.
|
7
|
+
- 3
|
8
|
+
- 0
|
9
|
+
version: 0.3.0
|
11
10
|
platform: ruby
|
12
11
|
authors:
|
13
12
|
- Bernd Ahlers
|
@@ -15,7 +14,7 @@ autorequire:
|
|
15
14
|
bindir: bin
|
16
15
|
cert_chain: []
|
17
16
|
|
18
|
-
date: 2010-
|
17
|
+
date: 2010-10-26 00:00:00 +02:00
|
19
18
|
default_executable: cucumber-sinatra
|
20
19
|
dependencies:
|
21
20
|
- !ruby/object:Gem::Dependency
|
@@ -26,7 +25,6 @@ dependencies:
|
|
26
25
|
requirements:
|
27
26
|
- - ">="
|
28
27
|
- !ruby/object:Gem::Version
|
29
|
-
hash: 23
|
30
28
|
segments:
|
31
29
|
- 1
|
32
30
|
- 0
|
@@ -71,7 +69,6 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
71
69
|
requirements:
|
72
70
|
- - ">="
|
73
71
|
- !ruby/object:Gem::Version
|
74
|
-
hash: 3
|
75
72
|
segments:
|
76
73
|
- 0
|
77
74
|
version: "0"
|
@@ -80,7 +77,6 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
80
77
|
requirements:
|
81
78
|
- - ">="
|
82
79
|
- !ruby/object:Gem::Version
|
83
|
-
hash: 3
|
84
80
|
segments:
|
85
81
|
- 0
|
86
82
|
version: "0"
|