Skip to content

Instantly share code, notes, and snippets.

@mconnell
Created May 10, 2010 12:26
Show Gist options
  • Save mconnell/395987 to your computer and use it in GitHub Desktop.
Save mconnell/395987 to your computer and use it in GitHub Desktop.
# Rails 3 generator for miniskirt
# Add the factory_girl gem
append_file 'Gemfile', <<-GEMS
group :test do
gem 'miniskirt'
end
GEMS
# touch the file for storing factories
create_file "test/factories.rb"
# load miniskirt and factories in test_helper.rb
prepend_file 'test/test_helper.rb' do
require 'miniskirt'
require 'factories'
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment