Class: Jets::Commands::New
- Defined in:
- lib/jets/commands/new.rb
Constant Summary collapse
- VALID_MODES =
%w[html api job]
Class Method Summary collapse
-
.cli_options ⇒ Object
Ugly, but when the class_option is only defined in the Thor::Group class it doesnt show up with jets new help :( If anyone knows how to fix this let me know..
Instance Method Summary collapse
-
#bootstrap_install ⇒ Object
bootstrap is dependent on webpacker, options is used in webpacker_install.
- #bundle_install ⇒ Object
- #create_project ⇒ Object
- #git_init ⇒ Object
- #make_bin_executable ⇒ Object
- #set_initial_variables ⇒ Object
- #update_package_json ⇒ Object
- #user_message ⇒ Object
- #webpacker_install ⇒ Object
Methods inherited from Sequence
Class Method Details
.cli_options ⇒ Object
Ugly, but when the class_option is only defined in the Thor::Group class it doesnt show up with jets new help :( If anyone knows how to fix this let me know.
9 10 11 12 13 14 15 16 17 18 19 |
# File 'lib/jets/commands/new.rb', line 9 def self. [ [:bootstrap, type: :boolean, default: true, desc: "Install bootstrap css"], # same option in WebpackerTemplate [:database, type: :string, default: 'mysql', desc: "Preconfigure database (options: mysql/postgresql)"], [:force, type: :boolean, desc: "Bypass overwrite are you sure prompt for existing files."], [:git, type: :boolean, default: true, desc: "Git initialize the project"], [:mode, default: 'html', desc: "mode: #{VALID_MODES.join(',')}"], [:repo, desc: "GitHub repo to use. Format: user/repo"], [:webpacker, type: :boolean, default: true, desc: "Install webpacker"], ] end |
Instance Method Details
#bootstrap_install ⇒ Object
bootstrap is dependent on webpacker, options is used in webpacker_install.
102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 |
# File 'lib/jets/commands/new.rb', line 102 def bootstrap_install return unless @bootstrap # Add jquery and popper plugin to handle Delete of CRUD jquery =<<-JS const webpack = require('webpack') environment.plugins.prepend('Provide', new webpack.ProvidePlugin({ $: 'jquery', jQuery: 'jquery', Popper: ['popper.js', 'default'] })) JS after = "const { environment } = require('@rails/webpacker')\n" insert_into_file("config/webpack/environment.js", jquery, after: after) run("yarn add bootstrap jquery popper.js postcss-cssnext") end |
#bundle_install ⇒ Object
63 64 65 66 67 |
# File 'lib/jets/commands/new.rb', line 63 def bundle_install Bundler.with_unbundled_env do system("BUNDLE_IGNORE_CONFIG=1 bundle install") end end |
#create_project ⇒ Object
50 51 52 53 54 55 56 |
# File 'lib/jets/commands/new.rb', line 50 def create_project [:repo] ? clone_project : copy_project destination_root = "#{Dir.pwd}/#{project_folder}" self.destination_root = destination_root FileUtils.cd("#{Dir.pwd}/#{project_folder}") end |
#git_init ⇒ Object
120 121 122 123 124 125 126 127 128 129 |
# File 'lib/jets/commands/new.rb', line 120 def git_init return if ![:git] return unless git_installed? return if File.exist?(".git") # this is a clone repo return unless git_credentials_set? run("git init") run("git add .") run("git commit -m 'first commit'") end |
#make_bin_executable ⇒ Object
58 59 60 61 |
# File 'lib/jets/commands/new.rb', line 58 def make_bin_executable return unless File.exist?("bin") chmod "bin", 0755 & ~File.umask, verbose: false end |
#set_initial_variables ⇒ Object
25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 |
# File 'lib/jets/commands/new.rb', line 25 def set_initial_variables @project_name = project_folder == '.' ? File.basename(Dir.pwd) : project_folder @database_name = @project_name.gsub('-','_') # options is a frozen hash by Thor so cannot modify it. # Also had trouble unfreezing it with .dup. So using instance variables instead case [:mode] when 'html' @bootstrap = [:bootstrap] @database = [:database] @webpacker = [:webpacker] when 'api' @bootstrap = false @database = [:database] @webpacker = false when 'job' @bootstrap = false @database = false @webpacker = false else puts "Invalid mode provided: #{@options[:mode].color(:red)}. Please pass in an valid mode: #{VALID_MODES.join(',').color(:green)}." exit 1 end end |
#update_package_json ⇒ Object
92 93 94 95 96 97 98 |
# File 'lib/jets/commands/new.rb', line 92 def update_package_json path = "package.json" return unless File.exist?(path) data = JSON.load(IO.read(path)) data["private"] = true IO.write(path, JSON.pretty_generate(data)) end |
#user_message ⇒ Object
131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 |
# File 'lib/jets/commands/new.rb', line 131 def more_info = if [:mode] == 'job' <<~EOL Learn more about jobs here: http://rubyonjets.com/docs/jobs/ To deploy to AWS Lambda: jets deploy EOL else <<~EOL To start a server and test locally: jets server # localhost:8888 should have the Jets welcome page Scaffold example: jets generate scaffold post title:string body:text published:boolean jets db:create db:migrate To deploy to AWS Lambda, edit your .env.development.remote and add a DATABASE_URL endpoint. Then run: jets deploy EOL end puts <<~EOL #{"="*64} Congrats 🎉 You have successfully created a Jets project. Cd into the project directory: cd #{project_folder} #{more_info} EOL end |
#webpacker_install ⇒ Object
69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 |
# File 'lib/jets/commands/new.rb', line 69 def webpacker_install return unless @webpacker unless yarn_installed? puts "Yarn is not installed or has not been detected. Please double check that yarn has been installed.".color(:red) puts <<~EOL To check: which yarn If it is not installed, you can usually install it with: npm install -g yarn Refer to the install docs for more info: http://rubyonjets.com/docs/install/ EOL exit 1 end command = "bundle exec jets webpacker:install" command += " FORCE=1" if [:force] run(command) end |