steak 0.3.3 → 0.3.4

Sign up to get free protection for your applications and to get access to all the features.
Files changed (3) hide show
  1. data/README.rdoc +12 -3
  2. data/Rakefile +1 -1
  3. metadata +2 -2
@@ -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
- That will create some basic helper files and directory structure under the +spec/acceptance+ directory, already configured for +Webrat+. Spend one minute on getting familiar with the structure and files you've got.
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 is developed and maintained by Luismi Cavallé with the help and support of the rest of the BeBanjo team: Sergio Gil and Jorge Gómez Sancha.
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.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é"
metadata CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
5
5
  segments:
6
6
  - 0
7
7
  - 3
8
- - 3
9
- version: 0.3.3
8
+ - 4
9
+ version: 0.3.4
10
10
  platform: ruby
11
11
  authors:
12
12
  - "Luismi Cavall\xC3\xA9"