cucumber-sinatra 0.2.0 → 0.2.1
Sign up to get free protection for your applications and to get access to all the features.
- data/CHANGES.md +3 -0
- data/LICENSE +28 -0
- data/README.md +10 -1
- data/cucumber-sinatra.gemspec +1 -1
- data/lib/cucumber/sinatra/templates/features/step_definitions/web_steps.rbt +1 -0
- data/lib/cucumber/sinatra/templates/features/support/paths.rbt +2 -0
- data/lib/cucumber/sinatra.rb +1 -1
- metadata +2 -2
data/CHANGES.md
CHANGED
data/LICENSE
CHANGED
@@ -1,3 +1,31 @@
|
|
1
|
+
cucumber-rails license
|
2
|
+
======================
|
3
|
+
The MIT License
|
4
|
+
|
5
|
+
Copyright (c) 2008,2009,2010 Aslak Hellesøy and the Cucumber Team.
|
6
|
+
|
7
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
8
|
+
a copy of this software and associated documentation files (the
|
9
|
+
"Software"), to deal in the Software without restriction, including
|
10
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
11
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
12
|
+
permit persons to whom the Software is furnished to do so, subject to
|
13
|
+
the following conditions:
|
14
|
+
|
15
|
+
The above copyright notice and this permission notice shall be
|
16
|
+
included in all copies or substantial portions of the Software.
|
17
|
+
|
18
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
19
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
20
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
21
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
22
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
23
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
24
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
25
|
+
|
26
|
+
|
27
|
+
cucumber-sinatra license
|
28
|
+
========================
|
1
29
|
Copyright (c) 2010 Bernd Ahlers <bernd@tuneafish.de>
|
2
30
|
|
3
31
|
Permission to use, copy, modify, and distribute this software for any
|
data/README.md
CHANGED
@@ -41,4 +41,13 @@ and a working `config.ru`.
|
|
41
41
|
|
42
42
|
# Copyright
|
43
43
|
|
44
|
-
|
44
|
+
The content of the following files has been taken from the
|
45
|
+
[cucumber-rails](http://github.com/aslakhellesoy/cucumber-rails) project which is licensed
|
46
|
+
under the MIT license.
|
47
|
+
|
48
|
+
* `lib/cucumber/sinatra/templates/features/step_definitions/web_steps.rbt`
|
49
|
+
* `lib/cucumber/sinatra/templates/features/support/paths.rbt`
|
50
|
+
|
51
|
+
The rest is licensed under a BSD license.
|
52
|
+
|
53
|
+
See the LICENSE file for a copy of both licenses.
|
data/cucumber-sinatra.gemspec
CHANGED
@@ -7,7 +7,7 @@ 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.2.
|
10
|
+
s.version = '0.2.1'
|
11
11
|
s.date = '2010-05-26'
|
12
12
|
s.rubyforge_project = 'cucumber-sinatra'
|
13
13
|
|
@@ -1,3 +1,4 @@
|
|
1
|
+
# Taken from the cucumber-rails project.
|
1
2
|
# IMPORTANT: This file is generated by cucumber-sinatra - edit at your own peril.
|
2
3
|
# It is recommended to regenerate this file in the future when you upgrade to a
|
3
4
|
# newer version of cucumber-sinatra. Consider adding your own code to a new file
|
data/lib/cucumber/sinatra.rb
CHANGED