Class: WebpackRailsReact::InstallGenerator
- Inherits:
-
Rails::Generators::Base
- Object
- Rails::Generators::Base
- WebpackRailsReact::InstallGenerator
- Defined in:
- lib/generators/webpack_rails_react/install_generator.rb
Overview
:nodoc:
Instance Method Summary collapse
- #add_to_gitignore ⇒ Object
- #copy_package_json ⇒ Object
- #copy_webpack_conf ⇒ Object
- #create_webpack_application_js ⇒ Object
- #run_npm_install ⇒ Object
- #whats_next ⇒ Object
Instance Method Details
#add_to_gitignore ⇒ Object
93 94 95 96 97 98 99 100 101 |
# File 'lib/generators/webpack_rails_react/install_generator.rb', line 93 def add_to_gitignore append_to_file ".gitignore" do <<-EOF.strip_heredoc # Added by webpack-rails /node_modules /public/webpack EOF end end |
#copy_package_json ⇒ Object
10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 |
# File 'lib/generators/webpack_rails_react/install_generator.rb', line 10 def copy_package_json copy_file "package.json", "package.json" if [:router] insert_into_file './package.json', after: /dependencies\": {\n/ do <<-'RUBY' "react-router": "^2.4.1", RUBY end end if [:redux] insert_into_file './package.json', after: /dependencies\": {\n/ do <<-'RUBY' "react-redux": "^4.4.5", "redux": "^3.5.2", "redux-thunk": "^2.1.0", RUBY end end if [:router] && [:redux] insert_into_file './package.json', after: /dependencies\": {\n/ do <<-'RUBY' "react-router-redux": "^4.0.5", RUBY end end end |
#copy_webpack_conf ⇒ Object
40 41 42 |
# File 'lib/generators/webpack_rails_react/install_generator.rb', line 40 def copy_webpack_conf copy_file "webpack.config.js", "config/webpack.config.js" end |
#create_webpack_application_js ⇒ Object
44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 |
# File 'lib/generators/webpack_rails_react/install_generator.rb', line 44 def create_webpack_application_js empty_directory "webpack" empty_directory "webpack/containers" empty_directory "webpack/components" if [:router] && [:redux] copy_file "boilerplate/router_redux/application.js", "webpack/application.js" copy_file "boilerplate/routes.js", "webpack/routes.js" copy_file "boilerplate/router_redux/store.js", "webpack/store.js" copy_file "boilerplate/router_redux/reducers.js", "webpack/reducers/index.js" create_file "webpack/actions.js" copy_file "boilerplate/router/App.js", "webpack/containers/App.js" copy_file "boilerplate/router/NoMatch.js", "webpack/components/NoMatch.js" elsif [:router] copy_file "boilerplate/router/application.js", "webpack/application.js" copy_file "boilerplate/routes.js", "webpack/routes.js" copy_file "boilerplate/router/App.js", "webpack/containers/App.js" copy_file "boilerplate/router/NoMatch.js", "webpack/components/NoMatch.js" elsif [:redux] copy_file "boilerplate/redux/application.js", "webpack/application.js" copy_file "boilerplate/redux/store.js", "webpack/store.js" copy_file "boilerplate/redux/reducers.js", "webpack/reducers/index.js" create_file "webpack/actions.js" copy_file "boilerplate/App.js", "webpack/containers/App.js" else copy_file "boilerplate/application.js", "webpack/application.js" copy_file "boilerplate/App.js", "webpack/containers/App.js" end application_view = 'app/views/layouts/application.html.erb' if File.exists? application_view insert_into_file 'app/views/layouts/application.html.erb', before: /<\/body>/ do <<-'RUBY' <%= javascript_include_tag *webpack_asset_paths('application') %> RUBY end insert_into_file 'app/views/layouts/application.html.erb', before: /<\/head>/ do <<-'RUBY' <% if Rails.env.development? %> <script src="http://localhost:3808/webpack-dev-server.js"></script> <% end %> RUBY end else puts "\n\n***WARNING*** HAML NOT SUPPORTED IN applictaion.html additional steps required\n\n" end end |
#run_npm_install ⇒ Object
103 104 105 |
# File 'lib/generators/webpack_rails_react/install_generator.rb', line 103 def run_npm_install run "npm install" if yes?("Would you like us to run 'npm install' for you?") end |
#whats_next ⇒ Object
107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 |
# File 'lib/generators/webpack_rails_react/install_generator.rb', line 107 def whats_next puts <<-EOF.strip_heredoc We've set up the basics of webpack-rails-react for you, but you'll still need to: 1. Add an element with an id of 'app' to your layout 2. To disable hot module replacement remove <script src="http://localhost:3808/webpack-dev-server.js"></script> from layout 3. Run 'npm run dev_server' to run the webpack-dev-server 4. Run 'bundle exec rails s' to run the rails server (both servers must be running) 5. If you are using react-router and want to sync server routes add: get '*unmatched_route', to: <your client controller>#<default action> This must be the very last route in your routes.rb file e.g. get '*unmatched_route', to: 'home#index' See the README.md for this gem at https://github.com/cottonwoodcoding/webpack-rails-react/blob/master/README.md for more info. Thanks for using webpack-rails-react! EOF end |