Class: Spree::InstallGenerator
- Inherits:
-
Rails::Generators::Base
- Object
- Rails::Generators::Base
- Spree::InstallGenerator
- Defined in:
- lib/generators/spree/install/install_generator.rb
Class Method Summary collapse
Instance Method Summary collapse
- #add_files ⇒ Object
- #additional_tweaks ⇒ Object
- #complete ⇒ Object
- #config_spree_yml ⇒ Object
- #configure_application ⇒ Object
- #create_database ⇒ Object
- #create_overrides_directory ⇒ Object
- #include_seed_data ⇒ Object
- #install_migrations ⇒ Object
- #load_sample_data ⇒ Object
- #notify_about_routes ⇒ Object
- #populate_seed_data ⇒ Object
- #prepare_options ⇒ Object
- #remove_unneeded_files ⇒ Object
- #run_migrations ⇒ Object
- #setup_assets ⇒ Object
Class Method Details
.source_paths ⇒ Object
18 19 20 21 22 23 24 |
# File 'lib/generators/spree/install/install_generator.rb', line 18 def self.source_paths paths = self.superclass.source_paths paths << File.('../templates', "../../#{__FILE__}") paths << File.('../templates', "../#{__FILE__}") paths << File.('../templates', __FILE__) paths.flatten end |
Instance Method Details
#add_files ⇒ Object
37 38 39 |
# File 'lib/generators/spree/install/install_generator.rb', line 37 def add_files template 'config/initializers/spree.rb', 'config/initializers/spree.rb' end |
#additional_tweaks ⇒ Object
53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 |
# File 'lib/generators/spree/install/install_generator.rb', line 53 def additional_tweaks return unless File.exists? 'public/robots.txt' append_file "public/robots.txt", <<-ROBOTS User-agent: * Disallow: /checkout Disallow: /cart Disallow: /orders Disallow: /countries Disallow: /line_items Disallow: /password_resets Disallow: /states Disallow: /user_sessions Disallow: /user_registrations Disallow: /users Disallow: /account ROBOTS end |
#complete ⇒ Object
198 199 200 201 202 203 204 205 |
# File 'lib/generators/spree/install/install_generator.rb', line 198 def complete unless [:quiet] puts "*" * 50 puts "Spree has been installed successfully. You're all ready to go!" puts " " puts "Enjoy!" end end |
#config_spree_yml ⇒ Object
41 42 43 44 45 46 47 |
# File 'lib/generators/spree/install/install_generator.rb', line 41 def config_spree_yml create_file "config/spree.yml" do settings = { 'version' => Spree.version } settings.to_yaml end end |
#configure_application ⇒ Object
93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 |
# File 'lib/generators/spree/install/install_generator.rb', line 93 def configure_application application <<-APP config.to_prepare do # Load application's model / class decorators Dir.glob(File.join(File.dirname(__FILE__), "../app/**/*_decorator*.rb")) do |c| Rails.configuration.cache_classes ? require(c) : load(c) end # Load application's view overrides Dir.glob(File.join(File.dirname(__FILE__), "../app/overrides/*.rb")) do |c| Rails.configuration.cache_classes ? require(c) : load(c) end end APP if ![:enforce_available_locales].nil? application <<-APP # Prevent this deprecation message: https://github.com/svenfuchs/i18n/commit/3b6e56e I18n.enforce_available_locales = #{[:enforce_available_locales]} APP end end |
#create_database ⇒ Object
132 133 134 135 136 137 138 139 |
# File 'lib/generators/spree/install/install_generator.rb', line 132 def create_database say_status :creating, "database" silence_stream(STDOUT) do silence_stream(STDERR) do silence_warnings { rake 'db:create' } end end end |
#create_overrides_directory ⇒ Object
89 90 91 |
# File 'lib/generators/spree/install/install_generator.rb', line 89 def create_overrides_directory empty_directory "app/overrides" end |
#include_seed_data ⇒ Object
117 118 119 120 121 122 123 |
# File 'lib/generators/spree/install/install_generator.rb', line 117 def include_seed_data append_file "db/seeds.rb", <<-SEEDS \n Spree::Core::Engine.load_seed if defined?(Spree::Core) Spree::Auth::Engine.load_seed if defined?(Spree::Auth) SEEDS end |
#install_migrations ⇒ Object
125 126 127 128 129 130 |
# File 'lib/generators/spree/install/install_generator.rb', line 125 def install_migrations say_status :copying, "migrations" silence_stream(STDOUT) do silence_warnings { rake 'railties:install:migrations' } end end |
#load_sample_data ⇒ Object
169 170 171 172 173 174 175 176 |
# File 'lib/generators/spree/install/install_generator.rb', line 169 def load_sample_data if @load_sample_data say_status :loading, "sample data" quietly { rake 'spree_sample:load' } else say_status :skipping, "sample data (you can always run rake spree_sample:load)" end end |
#notify_about_routes ⇒ Object
178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 |
# File 'lib/generators/spree/install/install_generator.rb', line 178 def notify_about_routes insert_into_file File.join('config', 'routes.rb'), :after => "Application.routes.draw do\n" do %Q{ # This line mounts Spree's routes at the root of your application. # This means, any requests to URLs such as /products, will go to Spree::ProductsController. # If you would like to change where this engine is mounted, simply change the :at option to something different. # # We ask that you don't use the :as option here, as Spree relies on it being the default of "spree" mount Spree::Core::Engine, :at => '/' } end unless [:quiet] puts "*" * 50 puts "We added the following line to your application's config/routes.rb file:" puts " " puts " mount Spree::Core::Engine, :at => '/'" end end |
#populate_seed_data ⇒ Object
150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 |
# File 'lib/generators/spree/install/install_generator.rb', line 150 def populate_seed_data if @load_seed_data say_status :loading, "seed data" =[] << "AUTO_ACCEPT=1" if [:auto_accept] << "ADMIN_EMAIL=#{[:admin_email]}" if [:admin_email] << "ADMIN_PASSWORD=#{[:admin_password]}" if [:admin_password] cmd = lambda { rake("db:seed #{.join(' ')}") } if [:auto_accept] || ([:admin_email] && [:admin_password]) quietly &cmd else cmd.call end else say_status :skipping, "seed data (you can always run rake db:seed)" end end |
#prepare_options ⇒ Object
26 27 28 29 30 31 32 33 34 35 |
# File 'lib/generators/spree/install/install_generator.rb', line 26 def @run_migrations = [:migrate] @load_seed_data = [:seed] @load_sample_data = [:sample] unless @run_migrations @load_seed_data = false @load_sample_data = false end end |
#remove_unneeded_files ⇒ Object
49 50 51 |
# File 'lib/generators/spree/install/install_generator.rb', line 49 def remove_unneeded_files remove_file "public/index.html" end |
#run_migrations ⇒ Object
141 142 143 144 145 146 147 148 |
# File 'lib/generators/spree/install/install_generator.rb', line 141 def run_migrations if @run_migrations say_status :running, "migrations" quietly { rake 'db:migrate' } else say_status :skipping, "migrations (don't forget to run rake db:migrate)" end end |
#setup_assets ⇒ Object
71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 |
# File 'lib/generators/spree/install/install_generator.rb', line 71 def setup_assets @lib_name = 'spree' %w{javascripts stylesheets images}.each do |path| empty_directory "vendor/assets/#{path}/spree/frontend" if defined? Spree::Frontend || Rails.env.test? empty_directory "vendor/assets/#{path}/spree/backend" if defined? Spree::Backend || Rails.env.test? end if defined? Spree::Frontend || Rails.env.test? template "vendor/assets/javascripts/spree/frontend/all.js" template "vendor/assets/stylesheets/spree/frontend/all.css" end if defined? Spree::Backend || Rails.env.test? template "vendor/assets/javascripts/spree/backend/all.js" template "vendor/assets/stylesheets/spree/backend/all.css" end end |