質問編集履歴

1

Gemfile追加

2018/03/02 12:00

投稿

hiropo
hiropo

スコア21

test CHANGED
File without changes
test CHANGED
@@ -29,3 +29,149 @@
29
29
 
30
30
 
31
31
  わかる方がいらっしゃいましたらご教授お願いします。
32
+
33
+
34
+
35
+ ```Gemfile
36
+
37
+ gem 'rails', '~> 5.1.4'
38
+
39
+ # Use mysql as the database for Active Record
40
+
41
+ gem 'mysql2', '>= 0.3.18', '< 0.5'
42
+
43
+ gem "paranoia", "~> 2.2"
44
+
45
+
46
+
47
+ gem 'carrierwave'
48
+
49
+ gem 'fog'
50
+
51
+
52
+
53
+ gem 'sorcery'
54
+
55
+
56
+
57
+ gem 'activerecord-session_store'
58
+
59
+
60
+
61
+ gem 'aws-sdk'
62
+
63
+
64
+
65
+ gem 'kaminari'
66
+
67
+
68
+
69
+ # Use Puma as the app server
70
+
71
+ gem 'puma', '~> 3.7.0'
72
+
73
+ # Use SCSS for stylesheets
74
+
75
+ gem 'sass-rails', '~> 5.0'
76
+
77
+ # Use SCSS for stylesheets
78
+
79
+ gem 'bower-rails'
80
+
81
+ gem 'font-awesome-rails'
82
+
83
+ # Use Uglifier as compressor for JavaScript assets
84
+
85
+ gem 'momentjs-rails'
86
+
87
+ gem 'bootstrap3-datetimepicker-rails'
88
+
89
+ gem 'therubyracer'
90
+
91
+
92
+
93
+ gem 'uglifier', '>= 1.3.0'
94
+
95
+ # See https://github.com/rails/execjs#readme for more supported runtimes
96
+
97
+ # gem 'therubyracer', platforms: :ruby
98
+
99
+
100
+
101
+ # Use CoffeeScript for .coffee assets and views
102
+
103
+ gem 'coffee-rails', '~> 4.2'
104
+
105
+ # Turbolinks makes navigating your web application faster. Read more: https://github.com/turbolinks/turbolinks
106
+
107
+ gem 'turbolinks', '~> 5'
108
+
109
+ # Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
110
+
111
+ gem 'jbuilder', '~> 2.5'
112
+
113
+ # Use Redis adapter to run Action Cable in production
114
+
115
+ # gem 'redis', '~> 3.0'
116
+
117
+ # Use ActiveModel has_secure_password
118
+
119
+ # gem 'bcrypt', '~> 3.1.7'
120
+
121
+
122
+
123
+ # Use Capistrano for deployment
124
+
125
+ # gem 'capistrano-rails', group: :development
126
+
127
+
128
+
129
+ group :development, :test do
130
+
131
+ # Call 'byebug' anywhere in the code to stop execution and get a debugger console
132
+
133
+ gem 'byebug', platforms: [:mri, :mingw, :x64_mingw]
134
+
135
+ # Adds support for Capybara system testing and selenium driver
136
+
137
+ gem 'capybara', '~> 2.13'
138
+
139
+ gem 'selenium-webdriver'
140
+
141
+ gem 'pry-rails'
142
+
143
+ gem 'pry-byebug'
144
+
145
+ gem 'pry-doc'
146
+
147
+ end
148
+
149
+
150
+
151
+ group :development do
152
+
153
+ # Access an IRB console on exception pages or by using <%= console %> anywhere in the code.
154
+
155
+ gem 'web-console', '>= 3.3.0'
156
+
157
+ gem 'listen', '>= 3.0.5', '< 3.2'
158
+
159
+ # Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
160
+
161
+ gem 'spring'
162
+
163
+ gem 'spring-watcher-listen', '~> 2.0.0'
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
+ gem 'webpacker' , '~> 2.0.0'
176
+
177
+ ```