回答編集履歴

1

誤字

2020/03/15 00:07

投稿

unhappychoice
unhappychoice

スコア1531

test CHANGED
@@ -42,15 +42,17 @@
42
42
 
43
43
 
44
44
 
45
- - `actionpack` のバージョン解決をすることできな
45
+ - `haml-rails` は `Gemfile.lock` によって `1.0.0` 指定されて
46
46
 
47
- - `haml-rails` は `Gemfile.lock` によって `1.0.0` が指定されている
47
+ - その `haml-rails` は `actionpack` `4.x` 系に依存している
48
48
 
49
- - その `haml-rails` は `actionpack` の `4.x` 系に依存している
50
49
 
51
- - 一方 `rails` は `5.0.0` に update される
52
50
 
51
+
52
+
53
+ - 一方 `rails` は `5.0.0` に update される
54
+
53
- - その `rails` は `actionpack` の `5.0.0` に依存している
55
+ - その `rails` は `actionpack` の `5.0.0` に依存している
54
56
 
55
57
 
56
58
 
@@ -62,10 +64,18 @@
62
64
 
63
65
 
64
66
 
67
+ 単に通すのであれば
68
+
65
- 単に通すのであれば `bundle update rails haml-rails devise rspec-rails ...出ているGemすべてを` だったり、必要であればそれぞれの gem の必要なバージョン指定を `Gemfile` に加えてから `bundle update rails` すればよいかと思います。
69
+ `bundle update rails haml-rails devise rspec-rails ...出ているGemすべてを`
66
70
 
67
71
 
68
72
 
73
+ 必要であれば
74
+
75
+ - それぞれの gem の必要なバージョン指定を `Gemfile` に加える
76
+
77
+ - `bundle update rails`
69
78
 
70
79
 
80
+
71
- すれば `Gemfile` の指定でそれぞれ最適な
81
+ すればよいかと思います。