Sha256: a5b5b780d3c8fc4ddf186ec7ddb49e37167cbff7ed335b6cc5cce5654ec23a16
Contents?: true
Size: 1.55 KB
Versions: 12
Compression:
Stored size: 1.55 KB
Contents
module Casein class InstallGenerator < Rails::Generators::Base include Rails::Generators::Migration source_root File.expand_path('../templates', __FILE__) def self.next_migration_number dirname if ActiveRecord::Base.timestamped_migrations Time.now.utc.strftime("%Y%m%d%H%M%S") else "%.3d" % (current_migration_number(dirname) + 1) end end def generate_files puts "*** WARNING - Generating configuration files. Make sure you have backed up any files before overwriting them. ***" #config helper copy_file "app/helpers/casein/config_helper.rb", "app/helpers/casein/config_helper.rb" #initial view partials copy_file "app/views/casein/layouts/_left_navigation.html.erb", "app/views/casein/layouts/_left_navigation.html.erb" copy_file "app/views/casein/layouts/_right_navigation.html.erb", "app/views/casein/layouts/_right_navigation.html.erb" #robots.txt puts " ** Overwrite if you haven't yet modified your robots.txt, otherwise add disallow rules for /casein and /admin manually **" copy_file "public/robots.txt", "public/robots.txt" #blank stylesheets and JavaScript files copy_file "public/casein/stylesheets/custom.css", "public/casein/stylesheets/custom.css" copy_file "public/casein/javascripts/custom.js", "public/casein/javascripts/custom.js" #migrations migration_template 'db/migrate/casein_create_users.rb', "db/migrate/casein_create_users.rb" end end end
Version data entries
12 entries across 12 versions & 1 rubygems