Sha256: 7191230acdf718cac8edba7a892d4e92a9f52694f7b9075e9cf8170ed2a1230d

Contents?: true

Size: 1.25 KB

Versions: 8

Compression:

Stored size: 1.25 KB

Contents

module Sauce
  module Generators
    class InstallGenerator < Rails::Generators::Base
      source_root File.expand_path("../templates", __FILE__)

      desc "Prep application for Sauce OnDemand Selenium tests"

      argument :username, :type => :string, :required => false
      argument :api_key, :type => :string, :required => false

      def copy_rake_tasks
        copy_file "sauce.rake", "lib/tasks/sauce.rake"
      end

      def configure_credentials
        if username
          system("sauce config #{username} #{api_key}")
        end
      end

      def setup_spec
        if File.directory? 'spec'
          empty_directory "spec/selenium"
          append_file "spec/spec_helper.rb", generate_config
        end
      end

      def setup_test
        if File.directory? 'test'
          empty_directory "test/selenium"
          append_file "test/test_helper.rb", generate_config
        end
      end

      private

      def generate_config
        return <<-CONFIG

require 'sauce'

Sauce.config do |conf|
    conf.browsers = [
        ["Windows 2003", "firefox", "3.6."]
    ]
    conf.application_host = "127.0.0.1"
    conf.application_port = "3001"
    conf.browser_url = "http://localhost:3001/"
end
          CONFIG
      end
    end
  end
end

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
sauce-2.3.4 lib/generators/sauce/install/install_generator.rb
sauce-2.3.3 lib/generators/sauce/install/install_generator.rb
sauce-2.3.2 lib/generators/sauce/install/install_generator.rb
sauce-2.2.2 lib/generators/sauce/install/install_generator.rb
sauce-2.2.1 lib/generators/sauce/install/install_generator.rb
sauce-2.2.0 lib/generators/sauce/install/install_generator.rb
sauce-2.1.0 lib/generators/sauce/install/install_generator.rb
sauce-2.0.0 lib/generators/sauce/install/install_generator.rb