質問編集履歴

1

Gemfileの内容の追加

2019/08/28 12:54

投稿

comuny
comuny

スコア9

test CHANGED
File without changes
test CHANGED
@@ -52,7 +52,127 @@
52
52
 
53
53
 
54
54
 
55
+ ### Gemfile
55
56
 
57
+ ```
58
+
59
+ source 'https://rubygems.org'
60
+
61
+ git_source(:github) { |repo| "https://github.com/#{repo}.git" }
62
+
63
+
64
+
65
+ ruby '2.6.3'
66
+
67
+
68
+
69
+ # Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
70
+
71
+ gem 'rails', '~> 5.2.3'
72
+
73
+ # Use sqlite3 as the database for Active Record
74
+
75
+ gem 'sqlite3'
76
+
77
+ # Use Puma as the app server
78
+
79
+ gem 'puma', '~> 3.11'
80
+
81
+ # Use SCSS for stylesheets
82
+
83
+ gem 'sass-rails', '~> 5.0'
84
+
85
+ # Use Uglifier as compressor for JavaScript assets
86
+
87
+ gem 'uglifier', '>= 1.3.0'
88
+
89
+ # See https://github.com/rails/execjs#readme for more supported runtimes
90
+
91
+ gem 'duktape'
92
+
93
+ # Use CoffeeScript for .coffee assets and views
94
+
95
+ gem 'coffee-rails', '~> 4.2'
96
+
97
+ # Turbolinks makes navigating your web application faster. Read more: https://github.com/turbolinks/turbolinks
98
+
99
+ gem 'turbolinks', '~> 5'
100
+
101
+ # Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
102
+
103
+ gem 'jbuilder', '~> 2.5'
104
+
105
+ # Use Redis adapter to run Action Cable in production
106
+
107
+ # gem 'redis', '~> 4.0'
108
+
109
+ # Use ActiveModel has_secure_password
110
+
111
+ # gem 'bcrypt', '~> 3.1.7'
112
+
113
+
114
+
115
+ # Use ActiveStorage variant
116
+
117
+ # gem 'mini_magick', '~> 4.8'
118
+
119
+
120
+
121
+ # Use Capistrano for deployment
122
+
123
+ # gem 'capistrano-rails', group: :development
124
+
125
+
126
+
127
+ # Reduces boot times through caching; required in config/boot.rb
128
+
129
+ gem 'bootsnap', '>= 1.1.0', require: false
130
+
131
+
132
+
133
+ group :development, :test do
134
+
135
+ # Call 'byebug' anywhere in the code to stop execution and get a debugger console
136
+
137
+ gem 'byebug', platforms: [:mri, :mingw, :x64_mingw]
138
+
139
+ end
140
+
141
+
142
+
143
+ group :development do
144
+
145
+ # Access an interactive console on exception pages or by calling 'console' anywhere in the code.
146
+
147
+ gem 'web-console', '>= 3.3.0'
148
+
149
+ end
150
+
151
+
152
+
153
+ group :test do
154
+
155
+ # Adds support for Capybara system testing and selenium driver
156
+
157
+ gem 'capybara', '>= 2.15'
158
+
159
+ gem 'selenium-webdriver'
160
+
161
+ # Easy installation and use of chromedriver to run system tests with Chrome
162
+
163
+ gem 'chromedriver-helper'
164
+
165
+ end
166
+
167
+
168
+
169
+ # Windows does not include zoneinfo files, so bundle the tzinfo-data gem
170
+
171
+ gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]
172
+
173
+
174
+
175
+ ```
56
176
 
57
177
 
58
178