class EffectivePages::Generators::InstallGenerator

Public Class Methods

next_migration_number(dirname) click to toggle source
# File lib/generators/effective_pages/install_generator.rb, line 10
def self.next_migration_number(dirname)
  if not ActiveRecord::Base.timestamped_migrations
    Time.new.utc.strftime("%Y%m%d%H%M%S")
  else
    "%.3d" % (current_migration_number(dirname) + 1)
  end
end

Public Instance Methods

copy_example_page() click to toggle source
# File lib/generators/effective_pages/install_generator.rb, line 27
def copy_example_page
  template 'example.html.haml', 'app/views/effective/pages/example.html.haml'
end
copy_initializer() click to toggle source
# File lib/generators/effective_pages/install_generator.rb, line 18
def copy_initializer
  template ('../' * 3) + 'config/effective_pages.rb', 'config/initializers/effective_pages.rb'
end
create_migration_file() click to toggle source
# File lib/generators/effective_pages/install_generator.rb, line 22
def create_migration_file
  @pages_table_name = ':' + EffectivePages.pages_table_name.to_s
  migration_template ('../' * 3) + 'db/migrate/01_create_effective_pages.rb.erb', 'db/migrate/create_effective_pages.rb'
end
setup_routes() click to toggle source
# File lib/generators/effective_pages/install_generator.rb, line 31
def setup_routes
  inject_into_file 'config/routes.rb', "\n  # if you want EffectivePages to render the home / root page\n  # uncomment the following line and create an Effective::Page with slug == 'home' \n  # root to: 'Effective::Pages#show', id: 'home'\n", :before => /root (:?)to.*/
end