steak 0.3.3 → 0.3.4
Sign up to get free protection for your applications and to get access to all the features.
- data/README.rdoc +12 -3
- data/Rakefile +1 -1
- metadata +2 -2
data/README.rdoc
CHANGED
@@ -63,8 +63,12 @@ Install the gem from the command line:
|
|
63
63
|
Run the generator:
|
64
64
|
|
65
65
|
$ script/generate steak
|
66
|
+
|
67
|
+
That will create some basic helper files and directory structure under the +spec/acceptance+ directory, already configured for +Capybara+. If you want to use +Webrat+, just pass it to the generator:
|
68
|
+
|
69
|
+
$ script/generate steak --webrat
|
66
70
|
|
67
|
-
|
71
|
+
Spend one minute on getting familiar with the structure and files you've got.
|
68
72
|
|
69
73
|
Now you may want to create your first acceptance spec:
|
70
74
|
|
@@ -84,6 +88,11 @@ You run your acceptance specs just like your regular specs. Individually...
|
|
84
88
|
|
85
89
|
== Credits
|
86
90
|
|
87
|
-
Steak
|
91
|
+
Steak was created by Luismi Cavallé and improved thanks to the love from:
|
92
|
+
|
93
|
+
- Álvaro Bautista
|
94
|
+
- Felipe Talavera
|
95
|
+
- Paco Guzmán
|
96
|
+
- Jeff Kreeftmeijer
|
88
97
|
|
89
|
-
Copyright (c) 2009 Luismi Cavallé, released under the MIT license
|
98
|
+
Copyright (c) 2009, 2010 Luismi Cavallé, released under the MIT license
|
data/Rakefile
CHANGED
@@ -21,7 +21,7 @@ spec = Gem::Specification.new do |s|
|
|
21
21
|
|
22
22
|
# Change these as appropriate
|
23
23
|
s.name = "steak"
|
24
|
-
s.version = "0.3.
|
24
|
+
s.version = "0.3.4"
|
25
25
|
s.summary = "If you are not in Rails but use RSpec, then Steak is just some aliases providing you with the language of acceptance testing (feature, scenario, background). If you are in Rails, you also have a couple of generators, a rake task and full Rails integration testing (meaning Webrat support, for instance)"
|
26
26
|
s.description = "Minimalist acceptance testing on top of RSpec"
|
27
27
|
s.author = "Luismi Cavallé"
|