Sha256: 7ad9ba17655ea63278370d38363e997cc97e0cd7d801a744a7c49a5d5cedb134

Contents?: true

Size: 1.9 KB

Versions: 2

Compression:

Stored size: 1.9 KB

Contents

require 'rbconfig'
require 'cucumber/version'

# This generator bootstraps a Rails project for use with Cucumber
class CucumberGenerator < Rails::Generator::Base
  DEFAULT_SHEBANG = File.join(Config::CONFIG['bindir'],
                              Config::CONFIG['ruby_install_name'])

  attr_accessor :framework

  def manifest
    record do |m|
      m.directory 'features/step_definitions'
      m.template 'webrat_steps.rb', 'features/step_definitions/webrat_steps.rb'
      m.template'cucumber_environment.rb', 'config/environments/cucumber.rb',
        :assigns => { :cucumber_version => ::Cucumber::VERSION::STRING }

      m.gsub_file 'config/database.yml', /test:.*\n/, "test: &TEST\n"
      m.gsub_file 'config/database.yml', /\z/, "\ncucumber:\n  <<: *TEST"

      m.directory 'features/support'
      if spork?
        m.template'spork_env.rb', 'features/support/env.rb'
      else
        m.template 'env.rb', 'features/support/env.rb'
      end
      m.template 'paths.rb', 'features/support/paths.rb'
      m.template 'version_check.rb', 'features/support/version_check.rb'

      m.directory 'lib/tasks'
      m.template'cucumber.rake', 'lib/tasks/cucumber.rake'

      m.file 'cucumber', 'script/cucumber', {
        :chmod => 0755, :shebang => options[:shebang] == DEFAULT_SHEBANG ? nil : options[:shebang]
      }
    end
  end

  def framework
    options[:framework] || :rspec
  end
  
  def spork?
    options[:spork]
  end

protected

  def banner
    "Usage: #{$0} cucumber"
  end

  def add_options!(opt)
    opt.separator ''
    opt.separator 'Options:'
    opt.on('--rspec', 'Setup cucumber for use with RSpec (default)') do |value|
      options[:framework] = :rspec
    end

    opt.on('--testunit', 'Setup cucumber for use with test/unit') do |value|
      options[:framework] = :testunit
    end

    opt.on('--spork', 'Setup cucumber for use with Spork') do |value|
      options[:spork] = true
    end
  end

end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
cucumber-0.4.0 rails_generators/cucumber/cucumber_generator.rb
cucumber-0.4.0.rc1 rails_generators/cucumber/cucumber_generator.rb