質問編集履歴
1
gemfileを追加
title
CHANGED
|
File without changes
|
body
CHANGED
|
@@ -51,5 +51,47 @@
|
|
|
51
51
|
//= require turbolinks
|
|
52
52
|
//= require_tree .
|
|
53
53
|
```
|
|
54
|
+
```ruby
|
|
55
|
+
【gemfile】
|
|
56
|
+
# Use SCSS for stylesheets
|
|
57
|
+
gem 'sass-rails', '~> 5.0'
|
|
58
|
+
# Use Uglifier as compressor for JavaScript assets
|
|
59
|
+
gem 'uglifier', '>= 1.3.0'
|
|
60
|
+
# Use CoffeeScript for .coffee assets and views
|
|
61
|
+
gem 'coffee-rails', '~> 4.2'
|
|
62
|
+
# See https://github.com/rails/execjs#readme for more supported runtimes
|
|
63
|
+
# gem 'therubyracer', platforms: :ruby
|
|
54
64
|
|
|
65
|
+
# Use jquery as the JavaScript library
|
|
66
|
+
gem 'jquery-rails'
|
|
67
|
+
# Turbolinks makes navigating your web application faster. Read more: https://github.com/turbolinks/turbolinks
|
|
68
|
+
gem 'turbolinks', '~> 5'
|
|
69
|
+
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
|
|
70
|
+
gem 'jbuilder', '~> 2.5'
|
|
71
|
+
# Use Redis adapter to run Action Cable in production
|
|
72
|
+
# gem 'redis', '~> 3.0'
|
|
73
|
+
# Use ActiveModel has_secure_password
|
|
74
|
+
# gem 'bcrypt', '~> 3.1.7'
|
|
75
|
+
gem 'bootstrap', '~> 4.1.1'
|
|
76
|
+
# Use Capistrano for deployment
|
|
77
|
+
# gem 'capistrano-rails', group: :development
|
|
78
|
+
|
|
79
|
+
group :development, :test do
|
|
80
|
+
# Call 'byebug' anywhere in the code to stop execution and get a debugger console
|
|
81
|
+
gem 'byebug', platform: :mri
|
|
82
|
+
end
|
|
83
|
+
|
|
84
|
+
group :development do
|
|
85
|
+
# Access an IRB console on exception pages or by using <%= console %> anywhere in the code.
|
|
86
|
+
gem 'web-console'
|
|
87
|
+
gem 'listen', '~> 3.0.5'
|
|
88
|
+
# Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
|
|
89
|
+
gem 'spring'
|
|
90
|
+
gem 'spring-watcher-listen', '~> 2.0.0'
|
|
91
|
+
end
|
|
92
|
+
|
|
93
|
+
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
|
|
94
|
+
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]
|
|
95
|
+
```
|
|
96
|
+
|
|
55
97
|
お手数ですが、どうぞよろしくお願いいたします。
|