Skip to content

Commit

Permalink
Minor bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Shashikant86 committed May 30, 2016
1 parent fe0d257 commit b80c3d5
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 8 deletions.
7 changes: 7 additions & 0 deletions bin/bddfire
Expand Up @@ -78,6 +78,13 @@ def bddfire_scaffold
msg('Scripts') do
puts "Scripts subdirectory created. \n"
end

msg('Thanks for installing Cucumber functional test framework !') do
puts "=====BDDfire recommend you to install LOAD and Accessibility Frameworks as well====== \n"
puts "=====Just Run 'bddfire fire_load' and 'bddfire fire_accessibility' command now====== \n"
end


end

def msg(title, &_block)
Expand Down
2 changes: 1 addition & 1 deletion lib/bddfire/version.rb
@@ -1,3 +1,3 @@
module BDDfire
VERSION = '2.0.3'.freeze
VERSION = '2.0.4'.freeze
end
14 changes: 7 additions & 7 deletions scaffold/config_files/Rakefile
Expand Up @@ -40,31 +40,31 @@ YARD::Rake::YardocTask.new(:yard) do |t|
end

Cucumber::Rake::Task.new(:selenium) do |t|
t.cucumber_opts = 'features -p selenium --format pretty --profile html -p ~@api '
t.cucumber_opts = 'features -p selenium --format pretty --profile html -t ~@api '
end

Cucumber::Rake::Task.new(:poltergeist) do |t|
t.cucumber_opts = 'features -p poltergeist --format pretty --profile html -p ~@api '
t.cucumber_opts = 'features -p poltergeist --format pretty --profile html -t ~@api '
end

Cucumber::Rake::Task.new(:chrome) do |t|
t.cucumber_opts = 'features -p chrome --format pretty --profile html -p ~@api '
t.cucumber_opts = 'features -p chrome --format pretty --profile html -t ~@api '
end

Cucumber::Rake::Task.new(:sauce) do |t|
t.cucumber_opts = 'features -p sauce --format pretty --profile html -p ~@api '
t.cucumber_opts = 'features -p sauce --format pretty --profile html -t ~@api '
end

Cucumber::Rake::Task.new(:browserstack) do |t|
t.cucumber_opts = 'features -p browserstack --format pretty --profile html -p ~@api '
t.cucumber_opts = 'features -p browserstack --format pretty --profile html -t ~@api '
end

Cucumber::Rake::Task.new(:testingbot) do |t|
t.cucumber_opts = 'features -p testingbot --format pretty --profile html -p ~@api '
t.cucumber_opts = 'features -p testingbot --format pretty --profile html -t ~@api '
end

Cucumber::Rake::Task.new(:appium) do |t|
t.cucumber_opts = "features -p appium_android_web ADB_SERIAL=#{ADB_SERIAL} --format pretty --profile html -p ~@api "
t.cucumber_opts = "features -p appium_android_web ADB_SERIAL=#{ADB_SERIAL} --format pretty --profile html -t ~@api "
end

task :cuke_sniffer do
Expand Down

0 comments on commit b80c3d5

Please sign in to comment.