質問編集履歴
1
sass-rails編集後のエラー
title
CHANGED
File without changes
|
body
CHANGED
@@ -4,14 +4,17 @@
|
|
4
4
|
MacBook-Pro-2 acme_corp % bundle install
|
5
5
|
Fetching gem metadata from https://rubygems.org/...........
|
6
6
|
Fetching gem metadata from https://rubygems.org/.
|
7
|
-
Resolving dependencies...
|
7
|
+
Resolving dependencies........
|
8
|
-
Bundler could not find compatible versions for
|
8
|
+
Bundler could not find compatible versions for
|
9
|
+
gem "activemodel":
|
9
10
|
In Gemfile:
|
11
|
+
mongoid (~> 6.4.0) was resolved to 6.4.8,
|
12
|
+
which depends on
|
10
|
-
|
13
|
+
activemodel (>= 5.1, < 6.0.0)
|
11
14
|
|
12
|
-
|
15
|
+
rails (~> 6.0.2, >= 6.0.2.1) was resolved to
|
13
|
-
on
|
16
|
+
6.0.3.rc1, which depends on
|
14
|
-
|
17
|
+
activemodel (= 6.0.3.rc1)
|
15
18
|
```
|
16
19
|
|
17
20
|
```Gemfile
|
@@ -30,7 +33,7 @@
|
|
30
33
|
group :assets do
|
31
34
|
gem 'compass', '~> 1.0.3'
|
32
35
|
gem 'compass-rails', '~> 4.0.0'
|
33
|
-
gem 'sass-rails', '
|
36
|
+
gem 'sass-rails', '< 5.1'
|
34
37
|
gem 'coffee-rails', '~> 5.0.0'
|
35
38
|
gem 'uglifier', '~> 4.2.0'
|
36
39
|
gem 'therubyracer', :platforms => :ruby
|
@@ -51,4 +54,5 @@
|
|
51
54
|
gem 'wdm', '~> 0.1.1', require: 'wdm' if RUBY_PLATFORM =~ /mswin|mingw/i
|
52
55
|
end
|
53
56
|
```
|
57
|
+
`gem "activemodel"`の場合、どこを編集すべきでしょうか?
|
54
58
|
恐れ入りますが、解決方法をご教授いただけないでしょうか?
|