質問編集履歴

3

gemfile

2020/03/17 07:21

投稿

rio13
rio13

スコア12

test CHANGED
File without changes
test CHANGED
@@ -40,7 +40,119 @@
40
40
 
41
41
  ```ここに言語名を入力
42
42
 
43
+ source 'https://rubygems.org'
44
+
45
+ git_source(:github) { |repo| "https://github.com/#{repo}.git" }
46
+
47
+
48
+
49
+ ruby '2.6.5'
50
+
51
+
52
+
53
+ # Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
54
+
55
+ gem 'rails', '~> 5.2.4', '>= 5.2.4.1'
56
+
57
+ # Use sqlite3 as the database for Active Record
58
+
59
+ gem 'sqlite3', '~> 1.3.6'
60
+
61
+ # Use Puma as the app server
62
+
63
+ gem 'puma', '~> 3.11'
64
+
65
+ # Use SCSS for stylesheets
66
+
67
+ gem 'sass-rails', '~> 5.0'
68
+
69
+ # Use Uglifier as compressor for JavaScript assets
70
+
71
+ gem 'uglifier', '>= 1.3.0'
72
+
73
+ # See https://github.com/rails/execjs#readme for more supported runtimes
74
+
75
+ gem 'duktape'
76
+
77
+ # Use CoffeeScript for .coffee assets and views
78
+
79
+ gem 'coffee-rails', '~> 4.2'
80
+
81
+ # Turbolinks makes navigating your web application faster. Read more: https://github.com/turbolinks/turbolinks
82
+
83
+ gem 'turbolinks', '~> 5'
84
+
85
+ # Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
86
+
87
+ gem 'jbuilder', '~> 2.5'
88
+
89
+ # Use Redis adapter to run Action Cable in production
90
+
91
+ # gem 'redis', '~> 4.0'
92
+
93
+ # Use ActiveModel has_secure_password
94
+
95
+ # gem 'bcrypt', '~> 3.1.7'
96
+
97
+
98
+
99
+ # Use ActiveStorage variant
100
+
101
+ # gem 'mini_magick', '~> 4.8'
102
+
103
+
104
+
105
+ # Use Capistrano for deployment
106
+
107
+ # gem 'capistrano-rails', group: :development
108
+
109
+
110
+
111
+ # Reduces boot times through caching; required in config/boot.rb
112
+
113
+ gem 'bootsnap', '>= 1.1.0', require: false
114
+
115
+
116
+
117
+ group :development, :test do
118
+
119
+ # Call 'byebug' anywhere in the code to stop execution and get a debugger console
120
+
121
+ gem 'byebug', platforms: [:mri, :mingw, :x64_mingw]
122
+
43
- ソースコード
123
+ end
124
+
125
+
126
+
127
+ group :development do
128
+
129
+ # Access an interactive console on exception pages or by calling 'console' anywhere in the code.
130
+
131
+ gem 'web-console', '>= 3.3.0'
132
+
133
+ end
134
+
135
+
136
+
137
+ group :test do
138
+
139
+ # Adds support for Capybara system testing and selenium driver
140
+
141
+ gem 'capybara', '>= 2.15'
142
+
143
+ gem 'selenium-webdriver'
144
+
145
+ # Easy installation and use of chromedriver to run system tests with Chrome
146
+
147
+ gem 'chromedriver-helper'
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]
44
156
 
45
157
  ```
46
158
 

2

タイトル変更

2020/03/17 07:21

投稿

rio13
rio13

スコア12

test CHANGED
@@ -1 +1 @@
1
- windows10でruby on railsの開発環境  rails s
1
+ windows10でruby on railsの開発環境  rails sが出来ません。
test CHANGED
File without changes

1

記入欄外に書いてしまった物を欄内に書き直した

2020/03/16 20:23

投稿

rio13
rio13

スコア12

test CHANGED
File without changes
test CHANGED
@@ -24,11 +24,13 @@
24
24
 
25
25
  C:/Ruby26-x64/lib/ruby/gems/2.6.0/gems/sqlite3-1.3.13-x64-mingw32/lib/sqlite3.rb:6:in `require': cannot load such file -- sqlite3/sqlite3_native (LoadError)
26
26
 
27
- ```
27
+
28
28
 
29
29
  Could not find sqlite3-1.3.13-x64-mingw32 in any of the sources
30
30
 
31
31
  Run `bundle install` to install missing gems.
32
+
33
+ ```
32
34
 
33
35
 
34
36
 
@@ -79,7 +81,3 @@
79
81
  sqlite3 -version
80
82
 
81
83
  3.31.1 2020-01-27 19:55:54 19:55:543bfa9cc97da10598521b342961df8f5f68c7388fa117345eeb516eaa837bb4d6
82
-
83
-
84
-
85
- ここにより詳細な情報を記載してください。