Class: Suspenders::AppGenerator
- Inherits:
-
Rails::Generators::AppGenerator
- Object
- Rails::Generators::AppGenerator
- Suspenders::AppGenerator
- Defined in:
- lib/suspenders/generators/app_generator.rb
Instance Method Summary collapse
- #configure_app ⇒ Object
- #copy_miscellaneous_files ⇒ Object
- #create_github_repo ⇒ Object
- #create_heroku_apps ⇒ Object
- #create_suspenders_views ⇒ Object
- #customize_error_pages ⇒ Object
- #customize_gemfile ⇒ Object
- #finish_template ⇒ Object
- #init_git ⇒ Object
- #install_bitters ⇒ Object
- #install_refills ⇒ Object
- #outro ⇒ Object
- #remove_config_comment_lines ⇒ Object
- #remove_routes_comment_lines ⇒ Object
- #setup_bundler_audit ⇒ Object
- #setup_database ⇒ Object
- #setup_default_directories ⇒ Object
- #setup_development_environment ⇒ Object
- #setup_dotfiles ⇒ Object
- #setup_git ⇒ Object
- #setup_production_environment ⇒ Object
- #setup_secret_token ⇒ Object
- #setup_segment ⇒ Object
- #setup_spring ⇒ Object
- #setup_stylesheets ⇒ Object
- #setup_test_environment ⇒ Object
- #suspenders_customization ⇒ Object
Instance Method Details
#configure_app ⇒ Object
135 136 137 138 139 140 141 142 143 144 145 |
# File 'lib/suspenders/generators/app_generator.rb', line 135 def configure_app say 'Configuring app' build :configure_action_mailer build :configure_active_job build :configure_time_formats build :disable_xml_params build :setup_default_rake_task build :configure_puma build :set_up_forego build :setup_rack_mini_profiler end |
#copy_miscellaneous_files ⇒ Object
220 221 222 223 |
# File 'lib/suspenders/generators/app_generator.rb', line 220 def copy_miscellaneous_files say 'Copying miscellaneous support files' build :copy_miscellaneous_files end |
#create_github_repo ⇒ Object
186 187 188 189 190 191 |
# File 'lib/suspenders/generators/app_generator.rb', line 186 def create_github_repo if ![:skip_git] && [:github] say 'Creating Github repo' build :create_github_repo, [:github] end end |
#create_heroku_apps ⇒ Object
170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 |
# File 'lib/suspenders/generators/app_generator.rb', line 170 def create_heroku_apps if [:heroku] say "Creating Heroku apps" build :create_heroku_apps, [:heroku_flags] build :provide_review_apps_setup_script build :set_heroku_serve_static_files build :set_heroku_remotes build :set_heroku_rails_secrets build :set_heroku_application_host build :create_heroku_pipelines_config_file build :create_heroku_pipeline build :provide_deploy_script build :configure_automatic_deployment end end |
#create_suspenders_views ⇒ Object
126 127 128 129 130 131 132 133 |
# File 'lib/suspenders/generators/app_generator.rb', line 126 def create_suspenders_views say 'Creating suspenders views' build :create_partials_directory build :create_shared_flashes build :create_shared_javascripts build :create_shared_css_overrides build :create_application_layout end |
#customize_error_pages ⇒ Object
225 226 227 228 |
# File 'lib/suspenders/generators/app_generator.rb', line 225 def customize_error_pages say 'Customizing the 500/404/422 pages' build :customize_error_pages end |
#customize_gemfile ⇒ Object
58 59 60 61 62 63 64 65 66 67 |
# File 'lib/suspenders/generators/app_generator.rb', line 58 def customize_gemfile build :set_ruby_to_version_being_used if [:heroku] build :set_up_heroku_specific_gems end bundle_command 'install' build :configure_simple_form end |
#finish_template ⇒ Object
27 28 29 30 |
# File 'lib/suspenders/generators/app_generator.rb', line 27 def finish_template invoke :suspenders_customization super end |
#init_git ⇒ Object
216 217 218 |
# File 'lib/suspenders/generators/app_generator.rb', line 216 def init_git build :init_git end |
#install_bitters ⇒ Object
152 153 154 155 |
# File 'lib/suspenders/generators/app_generator.rb', line 152 def install_bitters say 'Install Bitters' build :install_bitters end |
#install_refills ⇒ Object
157 158 159 160 |
# File 'lib/suspenders/generators/app_generator.rb', line 157 def install_refills say "Install Refills" build :install_refills end |
#outro ⇒ Object
238 239 240 241 |
# File 'lib/suspenders/generators/app_generator.rb', line 238 def outro say 'Congratulations! You just pulled our suspenders.' say honeybadger_outro end |
#remove_config_comment_lines ⇒ Object
230 231 232 |
# File 'lib/suspenders/generators/app_generator.rb', line 230 def remove_config_comment_lines build :remove_config_comment_lines end |
#remove_routes_comment_lines ⇒ Object
234 235 236 |
# File 'lib/suspenders/generators/app_generator.rb', line 234 def remove_routes_comment_lines build :remove_routes_comment_lines end |
#setup_bundler_audit ⇒ Object
206 207 208 209 |
# File 'lib/suspenders/generators/app_generator.rb', line 206 def setup_bundler_audit say "Setting up bundler-audit" build :setup_bundler_audit end |
#setup_database ⇒ Object
69 70 71 72 73 74 75 76 77 |
# File 'lib/suspenders/generators/app_generator.rb', line 69 def setup_database say 'Setting up database' if 'postgresql' == [:database] build :use_postgres_config_template end build :create_database end |
#setup_default_directories ⇒ Object
202 203 204 |
# File 'lib/suspenders/generators/app_generator.rb', line 202 def setup_default_directories build :setup_default_directories end |
#setup_development_environment ⇒ Object
79 80 81 82 83 84 85 86 87 88 89 90 91 92 |
# File 'lib/suspenders/generators/app_generator.rb', line 79 def setup_development_environment say 'Setting up the development environment' build :raise_on_missing_assets_in_test build :raise_on_delivery_errors build :set_test_delivery_method build :add_bullet_gem_configuration build :raise_on_unpermitted_parameters build :provide_setup_script build :provide_dev_prime_task build :configure_generators build :configure_i18n_for_missing_translations build :configure_quiet_assets build :add_bower_dir_to_assets_paths end |
#setup_dotfiles ⇒ Object
198 199 200 |
# File 'lib/suspenders/generators/app_generator.rb', line 198 def setup_dotfiles build :copy_dotfiles end |
#setup_git ⇒ Object
162 163 164 165 166 167 168 |
# File 'lib/suspenders/generators/app_generator.rb', line 162 def setup_git if ![:skip_git] say "Initializing git" invoke :setup_default_directories invoke :init_git end end |
#setup_production_environment ⇒ Object
111 112 113 114 115 116 117 118 119 |
# File 'lib/suspenders/generators/app_generator.rb', line 111 def setup_production_environment say 'Setting up the production environment' build :configure_newrelic build :configure_smtp build :configure_rack_timeout build :enable_rack_canonical_host build :enable_rack_deflater build :setup_asset_host end |
#setup_secret_token ⇒ Object
121 122 123 124 |
# File 'lib/suspenders/generators/app_generator.rb', line 121 def setup_secret_token say 'Moving secret token out of version control' build :setup_secret_token end |
#setup_segment ⇒ Object
193 194 195 196 |
# File 'lib/suspenders/generators/app_generator.rb', line 193 def setup_segment say 'Setting up Segment' build :setup_segment end |
#setup_spring ⇒ Object
211 212 213 214 |
# File 'lib/suspenders/generators/app_generator.rb', line 211 def setup_spring say "Springifying binstubs" build :setup_spring end |
#setup_stylesheets ⇒ Object
147 148 149 150 |
# File 'lib/suspenders/generators/app_generator.rb', line 147 def setup_stylesheets say 'Set up stylesheets' build :setup_stylesheets end |
#setup_test_environment ⇒ Object
94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 |
# File 'lib/suspenders/generators/app_generator.rb', line 94 def setup_test_environment say 'Setting up the test environment' build :set_up_factory_girl_for_rspec build :generate_factories_file build :set_up_hound build :generate_rspec build :configure_rspec build :configure_background_jobs_for_rspec build :enable_database_cleaner build :provide_shoulda_matchers_config build :configure_spec_support_features build :configure_ci build :configure_i18n_for_test_environment build :configure_action_mailer_in_specs build :configure_capybara_webkit end |
#suspenders_customization ⇒ Object
32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 |
# File 'lib/suspenders/generators/app_generator.rb', line 32 def suspenders_customization invoke :customize_gemfile invoke :setup_development_environment invoke :setup_test_environment invoke :setup_production_environment invoke :setup_secret_token invoke :create_suspenders_views invoke :configure_app invoke :setup_stylesheets invoke :install_bitters invoke :install_refills invoke :copy_miscellaneous_files invoke :customize_error_pages invoke :remove_config_comment_lines invoke :remove_routes_comment_lines invoke :setup_dotfiles invoke :setup_git invoke :setup_database invoke :create_heroku_apps invoke :create_github_repo invoke :setup_segment invoke :setup_bundler_audit invoke :setup_spring invoke :outro end |