質問編集履歴

2

Gemfileの追記

2020/01/21 22:15

投稿

退会済みユーザー
test CHANGED
File without changes
test CHANGED
@@ -80,6 +80,122 @@
80
80
 
81
81
  ```
82
82
 
83
- gem 'bindex', '=0.8.1'
84
-
85
- ```
83
+ gem 'bindex', '0.8.1'
84
+
85
+ ```
86
+
87
+ Gemfile
88
+
89
+ ```
90
+
91
+ gem 'sass-rails', '~> 5.0'
92
+
93
+ # Use Uglifier as compressor for JavaScript assets
94
+
95
+ gem 'uglifier', '>= 1.3.0'
96
+
97
+ # Use CoffeeScript for .coffee assets and views
98
+
99
+ gem 'coffee-rails', '~> 4.2'
100
+
101
+ # See https://github.com/rails/execjs#readme for more supported runtimes
102
+
103
+ # gem 'therubyracer', platforms: :ruby
104
+
105
+ # Use jquery as the JavaScript library
106
+
107
+ gem 'jquery-rails'
108
+
109
+ # Turbolinks makes navigating your web application faster. Read more:
110
+
111
+ https://github.com/turbolinks/turbolinks gem 'turbolinks', '~> 5'
112
+
113
+ # Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
114
+
115
+ gem 'jbuilder', '~> 2.5'
116
+
117
+ # Use Redis adapter to run Action Cable in production
118
+
119
+ # gem 'redis', '~> 3.0'
120
+
121
+ # Use ActiveModel has_secure_password
122
+
123
+ # gem 'bcrypt', '~> 3.1.7'
124
+
125
+ # Use Capistrano for deployment
126
+
127
+ # gem 'capistrano-rails', group: :development
128
+
129
+ gem 'bindex', '0.8.1'
130
+
131
+ group :development, :test do
132
+
133
+ # Call 'byebug' anywhere in the code to stop execution and get a debugger console
134
+
135
+ gem 'byebug', platform: :mri
136
+
137
+ end
138
+
139
+ ```
140
+
141
+ Gemfile.lock
142
+
143
+ ```
144
+
145
+ GEM
146
+
147
+ remote: https://rubygems.org/
148
+
149
+ specs:
150
+
151
+ actioncable (5.0.0.1)
152
+
153
+ actionpack (= 5.0.0.1)
154
+
155
+ nio4r (~> 1.2)
156
+
157
+ websocket-driver (~> 0.6.1)
158
+
159
+ actionmailer (5.0.0.1)
160
+
161
+ actionpack (= 5.0.0.1)
162
+
163
+ actionview (= 5.0.0.1)
164
+
165
+ activejob (= 5.0.0.1)
166
+
167
+ mail (~> 2.5, >= 2.5.4)
168
+
169
+ rails-dom-testing (~> 2.0)
170
+
171
+ actionpack (5.0.0.1)
172
+
173
+ actionview (= 5.0.0.1)
174
+
175
+ activesupport (= 5.0.0.1)
176
+
177
+ rack (~> 2.0)
178
+
179
+ rack-test (~> 0.6.3)
180
+
181
+ rails-dom-testing (~> 2.0)
182
+
183
+ rails-html-sanitizer (~> 1.0, >= 1.0.2)
184
+
185
+ actionview (5.0.0.1)
186
+
187
+ activesupport (= 5.0.0.1)
188
+
189
+ builder (~> 3.1)
190
+
191
+ erubis (~> 2.7.0)
192
+
193
+ rails-dom-testing (~> 2.0)
194
+
195
+ rails-html-sanitizer (~> 1.0, >= 1.0.2)
196
+
197
+ activejob (5.0.0.1)
198
+
199
+ activesupport (= 5.0.0.1)
200
+
201
+ ```

1

追記

2020/01/21 22:15

投稿

退会済みユーザー
test CHANGED
File without changes
test CHANGED
@@ -71,3 +71,15 @@
71
71
  Run `bundle install` to install missing gems.
72
72
 
73
73
  ```
74
+
75
+
76
+
77
+ 追記:
78
+
79
+ Gemfileに以下を追記しbundle installをしても結果は同じでした。
80
+
81
+ ```
82
+
83
+ gem 'bindex', '=0.8.1'
84
+
85
+ ```