bddfire 1.1.1 → 1.1.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +8 -8
- data/lib/bddfire/version.rb +1 -1
- data/scaffold/cucumber.yml +1 -1
- data/scaffold/features/support/env.rb +1 -0
- data/scaffold/rake_tasks/cucumber.rb +2 -9
- data/scaffold/rake_tasks/rubocop.rb +5 -1
- data/scaffold/rake_tasks/yard.rb +8 -2
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,15 +1,15 @@
|
|
1
1
|
---
|
2
2
|
!binary "U0hBMQ==":
|
3
3
|
metadata.gz: !binary |-
|
4
|
-
|
4
|
+
MDJiY2FlZTAxNGFlMDY0OGRlMWZkYjBmY2EzOGFjMjUyYmJlZTU0Mw==
|
5
5
|
data.tar.gz: !binary |-
|
6
|
-
|
6
|
+
MTc2M2YwNzUwN2YwNGIyOWRmMWMyNDQ2M2JiZTE3YzBjYWQzYWQ2Ng==
|
7
7
|
SHA512:
|
8
8
|
metadata.gz: !binary |-
|
9
|
-
|
10
|
-
|
11
|
-
|
9
|
+
MDdmZTBkMmVlOGM5MDZkOTcxMDZlZWEwZjA4NTlkNTJkMzkwOGU3OTM5NjMy
|
10
|
+
ZmJjMjYyNWE0YjYyNGZhODk0MmQ5NmI1YWJiZDE0MmIyYTg1MTc5YmZjZGMz
|
11
|
+
ZWM1ZjgyYmQ3MjQxMmQ5YzM2MzE2ZGRkZjFhN2IyOWZmZjkwZGE=
|
12
12
|
data.tar.gz: !binary |-
|
13
|
-
|
14
|
-
|
15
|
-
|
13
|
+
Yzg2YTk5YzY5MjRhZGYyNWQ3NTc3ZTJlODY4OWJmMzBiYmQyYTNhMTg2Mjhm
|
14
|
+
YjY4MzhhOTg5OWZhYmFmNzkyY2QwZTgwZGJmMzlkYjNjOGIzN2I4MmUyYTk5
|
15
|
+
YTcxOTk1MzZkZDg2YzNkNjg3NzNjODcyNGFjYTJhZDI2NzUwNGM=
|
data/lib/bddfire/version.rb
CHANGED
data/scaffold/cucumber.yml
CHANGED
@@ -1,13 +1,6 @@
|
|
1
1
|
require 'cucumber/rake/task'
|
2
2
|
Cucumber::Rake::Task.new(:features) do |features|
|
3
|
-
features.cucumber_opts = "features
|
4
|
-
end
|
5
|
-
namespace :features do
|
6
|
-
Cucumber::Rake::Task.new(:pretty, "Run Cucumber features with output in pretty format") do |features|
|
7
|
-
features.cucumber_opts = "features --tags ~@wip --format pretty"
|
8
|
-
end
|
9
|
-
Cucumber::Rake::Task.new(:wip, "Run @wip (Work In Progress) Cucumber features") do |features|
|
10
|
-
features.cucumber_opts = "features --tags @wip --format progress"
|
11
|
-
end
|
3
|
+
features.cucumber_opts = "features -p selenium --format progress"
|
12
4
|
end
|
13
5
|
|
6
|
+
|
data/scaffold/rake_tasks/yard.rb
CHANGED
@@ -1,5 +1,11 @@
|
|
1
1
|
require 'yard'
|
2
|
+
|
2
3
|
YARD::Rake::YardocTask.new do |t|
|
3
|
-
|
4
|
-
|
4
|
+
t.files = ['features/**/*.feature', 'features/**/*.rb']
|
5
|
+
t.options = ['--any', '--extra', '--opts'] # optional
|
5
6
|
end
|
7
|
+
|
8
|
+
task :yard_bundle do
|
9
|
+
sh "bundle exec yardoc 'example/**/*.rb' 'example/**/*.feature'"
|
10
|
+
end
|
11
|
+
|