bddfire 2.0.3 → 2.0.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/bin/bddfire +7 -0
- data/lib/bddfire/version.rb +1 -1
- data/scaffold/config_files/Rakefile +7 -7
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 950fbe5285e3fdc75a409fe698e6b9db4c707060
|
|
4
|
+
data.tar.gz: 5b0940e3ed1de52b5a7db9e24c1705ad20dd9ce2
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c5488fe86536da67b6605fa29cbce5ce7364e93afd33081095137ce0c6379732ca5cc731ecfc03f26710686cf6d193b7b76ff7b628a16ced299460da8a770bbb
|
|
7
|
+
data.tar.gz: 76fdaff5b194422d6f354603c44729380b2399107bb633aba69ee5877a3cc85d9fcb8ee37e66c674c5b5425ec63d7ec90d73c69171559309c4313ff9455bc5fa
|
data/bin/bddfire
CHANGED
|
@@ -78,6 +78,13 @@ def bddfire_scaffold
|
|
|
78
78
|
msg('Scripts') do
|
|
79
79
|
puts "Scripts subdirectory created. \n"
|
|
80
80
|
end
|
|
81
|
+
|
|
82
|
+
msg('Thanks for installing Cucumber functional test framework !') do
|
|
83
|
+
puts "=====BDDfire recommend you to install LOAD and Accessibility Frameworks as well====== \n"
|
|
84
|
+
puts "=====Just Run 'bddfire fire_load' and 'bddfire fire_accessibility' command now====== \n"
|
|
85
|
+
end
|
|
86
|
+
|
|
87
|
+
|
|
81
88
|
end
|
|
82
89
|
|
|
83
90
|
def msg(title, &_block)
|
data/lib/bddfire/version.rb
CHANGED
|
@@ -40,31 +40,31 @@ YARD::Rake::YardocTask.new(:yard) do |t|
|
|
|
40
40
|
end
|
|
41
41
|
|
|
42
42
|
Cucumber::Rake::Task.new(:selenium) do |t|
|
|
43
|
-
t.cucumber_opts = 'features -p selenium --format pretty --profile html -
|
|
43
|
+
t.cucumber_opts = 'features -p selenium --format pretty --profile html -t ~@api '
|
|
44
44
|
end
|
|
45
45
|
|
|
46
46
|
Cucumber::Rake::Task.new(:poltergeist) do |t|
|
|
47
|
-
t.cucumber_opts = 'features -p poltergeist --format pretty --profile html -
|
|
47
|
+
t.cucumber_opts = 'features -p poltergeist --format pretty --profile html -t ~@api '
|
|
48
48
|
end
|
|
49
49
|
|
|
50
50
|
Cucumber::Rake::Task.new(:chrome) do |t|
|
|
51
|
-
t.cucumber_opts = 'features -p chrome --format pretty --profile html -
|
|
51
|
+
t.cucumber_opts = 'features -p chrome --format pretty --profile html -t ~@api '
|
|
52
52
|
end
|
|
53
53
|
|
|
54
54
|
Cucumber::Rake::Task.new(:sauce) do |t|
|
|
55
|
-
t.cucumber_opts = 'features -p sauce --format pretty --profile html -
|
|
55
|
+
t.cucumber_opts = 'features -p sauce --format pretty --profile html -t ~@api '
|
|
56
56
|
end
|
|
57
57
|
|
|
58
58
|
Cucumber::Rake::Task.new(:browserstack) do |t|
|
|
59
|
-
t.cucumber_opts = 'features -p browserstack --format pretty --profile html -
|
|
59
|
+
t.cucumber_opts = 'features -p browserstack --format pretty --profile html -t ~@api '
|
|
60
60
|
end
|
|
61
61
|
|
|
62
62
|
Cucumber::Rake::Task.new(:testingbot) do |t|
|
|
63
|
-
t.cucumber_opts = 'features -p testingbot --format pretty --profile html -
|
|
63
|
+
t.cucumber_opts = 'features -p testingbot --format pretty --profile html -t ~@api '
|
|
64
64
|
end
|
|
65
65
|
|
|
66
66
|
Cucumber::Rake::Task.new(:appium) do |t|
|
|
67
|
-
t.cucumber_opts = "features -p appium_android_web ADB_SERIAL=#{ADB_SERIAL} --format pretty --profile html -
|
|
67
|
+
t.cucumber_opts = "features -p appium_android_web ADB_SERIAL=#{ADB_SERIAL} --format pretty --profile html -t ~@api "
|
|
68
68
|
end
|
|
69
69
|
|
|
70
70
|
task :cuke_sniffer do
|