Sha256: 4b0072b93c1de37f0df52de9144fe1b732f69dc30829473c366f9bb4e806d0b8
Contents?: true
Size: 588 Bytes
Versions: 16
Compression:
Stored size: 588 Bytes
Contents
module Sauce module Utilities module Rake def self.sauce_helper helper_text = <<-ENDHEADER # You should edit this file with the browsers you wish to use # For options, check out http://saucelabs.com/docs/platforms require "sauce" ENDHEADER helper_text << "require \"sauce/capybara\"" if Object.const_defined? "Capybara" helper_text << <<-ENDFILE Sauce.config do |config| config[:browsers] = [ ["OS", "BROWSER", "VERSION"], ["OS", "BROWSER", "VERSION"] ] end ENDFILE return helper_text end end end end
Version data entries
16 entries across 16 versions & 1 rubygems