質問編集履歴
2
test
CHANGED
File without changes
|
test
CHANGED
@@ -41,3 +41,91 @@
|
|
41
41
|
```
|
42
42
|
|
43
43
|
となってしまいます。
|
44
|
+
|
45
|
+
|
46
|
+
|
47
|
+
gemfile
|
48
|
+
|
49
|
+
source 'https://rubygems.org'
|
50
|
+
|
51
|
+
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
|
52
|
+
|
53
|
+
|
54
|
+
|
55
|
+
ruby '2.6.4'
|
56
|
+
|
57
|
+
|
58
|
+
|
59
|
+
gem 'rails', '~> 6.0.2', '>= 6.0.2.2'
|
60
|
+
|
61
|
+
gem 'pg', '>= 0.18', '< 2.0'
|
62
|
+
|
63
|
+
gem 'puma', '~> 4.1'
|
64
|
+
|
65
|
+
gem 'sass-rails', '>= 6'
|
66
|
+
|
67
|
+
gem 'webpacker', '~> 4.0'
|
68
|
+
|
69
|
+
gem 'turbolinks', '~> 5'
|
70
|
+
|
71
|
+
gem 'jbuilder', '~> 2.7'
|
72
|
+
|
73
|
+
|
74
|
+
|
75
|
+
|
76
|
+
|
77
|
+
|
78
|
+
|
79
|
+
gem 'bootsnap', '>= 1.4.2', require: false
|
80
|
+
|
81
|
+
|
82
|
+
|
83
|
+
gem 'bcrypt'
|
84
|
+
|
85
|
+
gem "rails-i18n"
|
86
|
+
|
87
|
+
gem "kaminari"
|
88
|
+
|
89
|
+
gem "data_validator"
|
90
|
+
|
91
|
+
gem "valid_email2"
|
92
|
+
|
93
|
+
gem "nokogiri"
|
94
|
+
|
95
|
+
|
96
|
+
|
97
|
+
group :development, :test do
|
98
|
+
|
99
|
+
gem 'byebug', platforms: [:mri, :mingw, :x64_mingw]
|
100
|
+
|
101
|
+
end
|
102
|
+
|
103
|
+
|
104
|
+
|
105
|
+
group :development do
|
106
|
+
|
107
|
+
gem 'web-console', '>= 3.3.0'
|
108
|
+
|
109
|
+
gem 'listen', '>= 3.0.5', '< 3.2'
|
110
|
+
|
111
|
+
gem 'spring'
|
112
|
+
|
113
|
+
gem 'spring-watcher-listen', '~> 2.0.0'
|
114
|
+
|
115
|
+
end
|
116
|
+
|
117
|
+
|
118
|
+
|
119
|
+
group :test do
|
120
|
+
|
121
|
+
gem 'capybara', '>= 2.15'
|
122
|
+
|
123
|
+
gem 'selenium-webdriver'
|
124
|
+
|
125
|
+
gem 'webdrivers'
|
126
|
+
|
127
|
+
gem "rspec-rails"
|
128
|
+
|
129
|
+
gem "factory_bot_rails"
|
130
|
+
|
131
|
+
end
|
1
test
CHANGED
File without changes
|
test
CHANGED
@@ -1 +1,43 @@
|
|
1
1
|
どのようにしたらバージョンを合わせる事ができるのでしょうか?
|
2
|
+
|
3
|
+
何度もgemfileをインストールしようとさしてるのてすが
|
4
|
+
|
5
|
+
|
6
|
+
|
7
|
+
```Ruby6.0.2
|
8
|
+
|
9
|
+
|
10
|
+
|
11
|
+
Bundler could not find compatible versions for gem "active_support":
|
12
|
+
|
13
|
+
In Gemfile:
|
14
|
+
|
15
|
+
data_validator was resolved to 0.0.2, which depends on
|
16
|
+
|
17
|
+
active_support (~> 3.0.0)
|
18
|
+
|
19
|
+
|
20
|
+
|
21
|
+
Could not find gem 'active_support (~> 3.0.0)', which is required by gem 'data_validator', in any of the sources.
|
22
|
+
|
23
|
+
|
24
|
+
|
25
|
+
Bundler could not find compatible versions for gem "activesupport":
|
26
|
+
|
27
|
+
In Gemfile:
|
28
|
+
|
29
|
+
data_validator was resolved to 0.1.1, which depends on
|
30
|
+
|
31
|
+
activesupport (~> 3.2.0)
|
32
|
+
|
33
|
+
|
34
|
+
|
35
|
+
rails (~> 6.0.2, >= 6.0.2.2) was resolved to 6.0.2.2, which depends on
|
36
|
+
|
37
|
+
activesupport (= 6.0.2.2)
|
38
|
+
|
39
|
+
|
40
|
+
|
41
|
+
```
|
42
|
+
|
43
|
+
となってしまいます。
|