質問編集履歴

3

追記

2018/04/18 07:11

投稿

Piesuke
Piesuke

スコア15

test CHANGED
File without changes
test CHANGED
@@ -45,6 +45,8 @@
45
45
  【追記】
46
46
 
47
47
  rubyはデフォルトでインストールされているものです。
48
+
49
+ Gemfile全文↓
48
50
 
49
51
  ```Gemfile
50
52
 

2

追記

2018/04/18 07:11

投稿

Piesuke
Piesuke

スコア15

test CHANGED
File without changes
test CHANGED
@@ -39,3 +39,127 @@
39
39
  に従って色々試してみましたが、結果は変わりません。
40
40
 
41
41
  改善策を教えてください。
42
+
43
+
44
+
45
+ 【追記】
46
+
47
+ rubyはデフォルトでインストールされているものです。
48
+
49
+ ```Gemfile
50
+
51
+ source 'https://rubygems.org'
52
+
53
+
54
+
55
+ git_source(:github) do |repo_name|
56
+
57
+ repo_name = "#{repo_name}/#{repo_name}" unless repo_name.include?("/")
58
+
59
+ "https://github.com/#{repo_name}.git"
60
+
61
+ end
62
+
63
+
64
+
65
+ # Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
66
+
67
+ gem 'rails', '~> 5.1.5'
68
+
69
+ # Use sqlite3 as the database for Active Record
70
+
71
+ gem 'sqlite3'
72
+
73
+ # Use Puma as the app server
74
+
75
+ gem 'puma', '~> 3.7'
76
+
77
+ # Use SCSS for stylesheets
78
+
79
+ gem 'sass-rails', '~> 5.0'
80
+
81
+ # Use Uglifier as compressor for JavaScript assets
82
+
83
+ gem 'uglifier', '>= 1.3.0'
84
+
85
+ # See https://github.com/rails/execjs#readme for more supported runtimes
86
+
87
+ gem 'therubyracer', platforms: :ruby
88
+
89
+
90
+
91
+ # Use CoffeeScript for .coffee assets and views
92
+
93
+ gem 'coffee-rails', '~> 4.2'
94
+
95
+ # Turbolinks makes navigating your web application faster. Read more: https://github.com/turbolinks/turbolinks
96
+
97
+ gem 'turbolinks', '~> 5'
98
+
99
+ # Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
100
+
101
+ gem 'jbuilder', '~> 2.5'
102
+
103
+ # Use Redis adapter to run Action Cable in production
104
+
105
+ # gem 'redis', '~> 4.0'
106
+
107
+ # Use ActiveModel has_secure_password
108
+
109
+ # gem 'bcrypt', '~> 3.1.7'
110
+
111
+
112
+
113
+ # Use Capistrano for deployment
114
+
115
+ # gem 'capistrano-rails', group: :development
116
+
117
+
118
+
119
+ group :development, :test do
120
+
121
+ # Call 'byebug' anywhere in the code to stop execution and get a debugger console
122
+
123
+ gem 'byebug', platforms: [:mri, :mingw, :x64_mingw]
124
+
125
+ # Adds support for Capybara system testing and selenium driver
126
+
127
+ gem 'capybara', '~> 2.13'
128
+
129
+ gem 'selenium-webdriver'
130
+
131
+ end
132
+
133
+
134
+
135
+ group :development do
136
+
137
+ # Access an IRB console on exception pages or by using <%= console %> anywhere in the code.
138
+
139
+ gem 'web-console', '>= 3.3.0'
140
+
141
+ gem 'listen', '>= 3.0.5', '< 3.2'
142
+
143
+ # Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
144
+
145
+ gem 'spring'
146
+
147
+ gem 'spring-watcher-listen', '~> 2.0.0'
148
+
149
+ end
150
+
151
+
152
+
153
+ # Windows does not include zoneinfo files, so bundle the tzinfo-data gem
154
+
155
+ gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]
156
+
157
+
158
+
159
+ gem 'sass'
160
+
161
+ gem 'unicorn'
162
+
163
+
164
+
165
+ ```

1

文の修正

2018/04/18 07:10

投稿

Piesuke
Piesuke

スコア15

test CHANGED
File without changes
test CHANGED
@@ -14,7 +14,7 @@
14
14
 
15
15
 
16
16
 
17
- # from /vagrant/exchange_corporate/Gemfile:19
17
+ # from /vagrant/project/Gemfile:19
18
18
 
19
19
  # -------------------------------------------
20
20