vote up 1 vote down star

script/generate became very annoying since i started using rspec etc. i dont need unit test files and fixtures anymore, but script/generate makes them anyway.

is it possible to set --skip-fixtures and --skip-test to be default system-wide (or at least project-wide)?

flag

58% accept rate

2 Answers

vote up 4 vote down

You can edit your applications script/generate file to auto append options

#!/usr/bin/env ruby

ARGV << "--skip-fixture" if ["model"].include?(ARGV[0])

require File.dirname(__FILE__) + '/../config/boot'
require 'commands/generate'
link|flag
I like that you can do that and I always forget, that's why I make aliases instead - so I don't have to do it everywhere. – Brian Hogan May 19 at 20:04
Nice idea. Thanks. – Mantas May 21 at 7:59
vote up 3 vote down

Well, for starters,

ruby script/generate rspec_model
ruby script/generate rspec_controller

At least that doesn't generate unit tests and it gets the specs there for me :)

But --skip-fixtures still has to get passed. I've just made my own aliases in .bash_profile

alias model='ruby script/generate rspec_model $1 --skip-fixture'

Then I can just do

model bar name:string active:boolean

and it all works :)

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.