Sha256: f8d61dbf15a7a418b1aea6a24c38b21e47299c32b0969977ecf7d2a3f7da0563
Contents?: true
Size: 820 Bytes
Versions: 10
Compression:
Stored size: 820 Bytes
Contents
require 'refinery/generators' class RefinerycmsTesting < ::Refinery::Generators::EngineInstaller source_root File.expand_path('../../../', __FILE__) engine_name "testing" def generate copy_file 'config/cucumber.yml', Rails.root.join('config', 'cucumber.yml') copy_file 'spec/spec_helper.rb', Rails.root.join('spec', 'spec_helper.rb') copy_file 'spec/rcov.opts', Rails.root.join('spec', 'rcov.opts') copy_file 'spec/support/refinery/controller_macros.rb', Rails.root.join('spec', 'support', 'refinery', 'controller_macros.rb') copy_file '.rspec', Rails.root.join('.rspec') copy_file 'lib/generators/templates/features/support/paths.rb', Rails.root.join('features', 'support', 'paths.rb') end end
Version data entries
10 entries across 10 versions & 1 rubygems