carlosbrando (owner)

Revisions

gist: 158951 Download_button fork
public
Public Clone URL: git://gist.github.com/158951.git
Embed All Files: show embed
Ruby #
1
2
3
4
5
6
7
8
9
10
11
12
Rails::Initializer.run do |config|
 
  # ...
  
  # Configure generators values. Many other options are available, be sure to
  # check the documentation.
  config.generators do |g|
    g.orm :active_record
    g.template_engine :erb
    g.test_framework :test_unit, :fixture => true
  end
end