Skip to content

Commit 5d863e7

Browse files
committed
Make webpacker 3 the default for Vue on Rails app template.
Created a vue4 for webpacker 4 When webpacker 4 is the default, will make a vue3 app template. <3
1 parent 174c78b commit 5d863e7

File tree

2 files changed

+127
-2
lines changed

2 files changed

+127
-2
lines changed

vue

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
gem 'webpacker', '>= 4.0.x'
1+
gem 'webpacker'
22
gem 'vueonrails', github: "vueonrails/vueonrails"
33
route "mount Vueonrails::Engine, at: 'vue'"
44

@@ -61,7 +61,6 @@ rails_command 'db:create'
6161
rails_command 'db:migrate'
6262
rails_command 'webpacker:install'
6363
rails_command 'webpacker:install:vue'
64-
run "yarn add @rails/webpacker@next"
6564

6665
# Vue on Rails setup to install Vue dependencies, Vue component generators
6766
# Configuration and Jest dependencies. Read more http://github.com/vueonrails/vueonrails

vue4

+126
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,126 @@
1+
gem 'webpacker', '>= 4.0.x'
2+
gem 'vueonrails', github: "vueonrails/vueonrails"
3+
route "mount Vueonrails::Engine, at: 'vue'"
4+
5+
# Use --bootstrap to add bootstrap style with jquery. Read more https://getbootstrap.com
6+
# Read more about the full options of this application template, please go to github.com/vueonrails/vueonrails
7+
if ARGV.include? "--bootstrap"
8+
gem 'bootstrap', '~> 4.1.3'
9+
gem 'jquery-rails'
10+
end
11+
12+
# Use --foundation to add foundation style. Read more https://foundation.zurb.com
13+
# Read more about the full options of this application template, please go to github.com/vueonrails/vueonrails
14+
if ARGV.include? "--foundation"
15+
gem 'foundation-rails'
16+
gem 'autoprefixer-rails'
17+
end
18+
19+
# Add font-awesome fonts
20+
if ARGV.include? "--fontawesome"
21+
gem "font-awesome-rails"
22+
end
23+
24+
# Add live-reloading to refresh Rails view https://github.com/guard/guard-livereload
25+
if ARGV.include? "--livereload"
26+
gem_group :development do
27+
gem 'guard'
28+
gem 'guard-livereload', '~> 2.5', require: false
29+
end
30+
end
31+
32+
# Add whenever for automating cron jobs. Read more https://github.com/javan/whenever
33+
if ARGV.include? "--whenever"
34+
gem 'whenever', require: false
35+
end
36+
37+
# Use --devise to add Devise. Read more https://github.com/plataformatec/devise
38+
# Read more about the full options of this application template, please go to http://github.com/vueonrails/vueonrails
39+
if ARGV.include? "--devise"
40+
gem 'devise', '~> 4.4', '>= 4.4.3'
41+
end
42+
43+
# Use --admin to add Administrate as your administrative manager. Read more https://github.com/thoughtbot/administrate
44+
if ARGV.include? "--admin"
45+
gem 'administrate'
46+
end
47+
48+
# Use --sidekiq to add Sidekiq as your background processor. Read more https://github.com/mperham/sidekiq
49+
if ARGV.include? "--sidekiq"
50+
gem 'sidekiq'
51+
end
52+
53+
run 'bundle install'
54+
55+
unless ARGV.include? "--no-page"
56+
generate(:scaffold, 'page')
57+
route "root to: 'pages#index'"
58+
end
59+
60+
rails_command 'db:create'
61+
rails_command 'db:migrate'
62+
rails_command 'webpacker:install'
63+
rails_command 'webpacker:install:vue'
64+
run "yarn add @rails/webpacker@next"
65+
66+
# Vue on Rails setup to install Vue dependencies, Vue component generators
67+
# Configuration and Jest dependencies. Read more http://github.com/vueonrails/vueonrails
68+
rails_command 'vue:setup'
69+
70+
# Gem setup after bundle install
71+
if ARGV.include? "--foundation"
72+
rails_command 'generate foundation:install'
73+
end
74+
75+
# Init livereload
76+
if ARGV.include? "--livereload"
77+
run "guard init livereload"
78+
end
79+
80+
# Finish the fontawesome setup
81+
if ARGV.include? "--fontawesome"
82+
fontawesome = <<-eos
83+
*= require font-awesome
84+
eos
85+
insert_into_file "app/assets/stylesheets/application.css",
86+
fontawesome, before: " *= require_self"
87+
end
88+
89+
# Finish the bootstrap setup
90+
if ARGV.include? "--bootstrap"
91+
run "mv app/assets/stylesheets/application.css app/assets/stylesheets/application.scss"
92+
93+
bootstrapcss = <<-eos
94+
@import "bootstrap";
95+
eos
96+
97+
insert_into_file "app/assets/stylesheets/application.scss",
98+
bootstrapcss, after: " */\n"
99+
100+
bootstrap = <<-eos
101+
//= require jquery3
102+
//= require bootstrap-sprockets
103+
eos
104+
105+
insert_into_file "app/assets/javascripts/application.js",
106+
bootstrap, before: "//= require_tree ."
107+
end
108+
109+
# Finish the administrate setup.
110+
if ARGV.include? "--admin"
111+
rails_command 'generate administrate:install'
112+
end
113+
114+
# Finish the whenever gem setup.
115+
if ARGV.include? "--whenever"
116+
run "wheneverize ."
117+
end
118+
119+
# Finish the devise installation.
120+
if ARGV.include? "--devise"
121+
rails_command "generate devise:install"
122+
end
123+
124+
# Generate your first git commit message.
125+
git add: "."
126+
git commit: %Q{ -m 'First commit' }

0 commit comments

Comments
 (0)