class EacRailsBase0::AppGenerator::Builder

Public Instance Methods

app() click to toggle source
# File lib/eac_rails_base0/app_generator/builder.rb, line 10
def app
  directory 'app'
end
config() click to toggle source
# File lib/eac_rails_base0/app_generator/builder.rb, line 14
def config
  inside 'config' do
    template 'routes.rb'
    template 'application.rb'
    template 'environment.rb'
    template 'secrets.yml'
    directory 'environments'
  end
end
database_yml() click to toggle source
# File lib/eac_rails_base0/app_generator/builder.rb, line 24
def database_yml
  template 'config/database.yml'
end
db() click to toggle source
# File lib/eac_rails_base0/app_generator/builder.rb, line 28
def db
  directory 'db'
end
lib() click to toggle source
# File lib/eac_rails_base0/app_generator/builder.rb, line 32
def lib
  directory 'lib'
end
log() click to toggle source
# File lib/eac_rails_base0/app_generator/builder.rb, line 36
def log
  # Do nothing
  empty_directory_with_keep_file 'log'
end
readme() click to toggle source
# File lib/eac_rails_base0/app_generator/builder.rb, line 6
def readme
  # Do nothing
end
test() click to toggle source
# File lib/eac_rails_base0/app_generator/builder.rb, line 41
def test
  template 'test/test_helper.rb'
end
tmp() click to toggle source
# File lib/eac_rails_base0/app_generator/builder.rb, line 45
def tmp
  # Do nothing
end
vendor() click to toggle source
# File lib/eac_rails_base0/app_generator/builder.rb, line 49
def vendor
  # Do nothing
end
vendor_javascripts() click to toggle source
# File lib/eac_rails_base0/app_generator/builder.rb, line 53
def vendor_javascripts
  # Do nothing
end
vendor_stylesheets() click to toggle source
# File lib/eac_rails_base0/app_generator/builder.rb, line 57
def vendor_stylesheets
  # Do nothing
end