前提・実現したいこと
rails で新たにアプリを作ろうと思い、$rails 5.2.2 new companys --database=mysql --skip-test --skip-active-storageとしたところエラーが出てしまいました。
発生している問題・エラーメッセージ
エラーメッセージ Gem files will remain installed in /home/ec2-user/.rvm/gems/ruby-2.6.3/gems/mysql2-0.5.3 for inspection. Results logged to /home/ec2-user/.rvm/gems/ruby-2.6.3/extensions/x86_64-linux/2.6.0/mysql2-0.5.3/gem_make.out An error occurred while installing mysql2 (0.5.3), and Bundler cannot continue. Make sure that `gem install mysql2 -v '0.5.3' --source 'https://rubygems.org/'` succeeds before bundling. In Gemfile: mysql2 run bundle exec spring binstub --all bundler: command not found: spring Install missing gem executables with `bundle install`
gemfile
1source 'https://rubygems.org' 2git_source(:github) { |repo| "https://github.com/#{repo}.git" } 3 4ruby '2.6.3' 5 6# Bundle edge Rails instead: gem 'rails', github: 'rails/rails' 7gem 'rails', '~> 5.2.2' 8# Use mysql as the database for Active Record 9gem 'mysql2', '>= 0.4.4', '< 0.6.0' 10# Use Puma as the app server 11gem 'puma', '~> 3.11' 12# Use SCSS for stylesheets 13gem 'sass-rails', '~> 5.0' 14# Use Uglifier as compressor for JavaScript assets 15gem 'uglifier', '>= 1.3.0' 16# See https://github.com/rails/execjs#readme for more supported runtimes 17# gem 'mini_racer', platforms: :ruby 18 19# Use CoffeeScript for .coffee assets and views 20gem 'coffee-rails', '~> 4.2' 21# Turbolinks makes navigating your web application faster. Read more: https://github.com/turbolinks/turbolinks 22gem 'turbolinks', '~> 5' 23# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder 24gem 'jbuilder', '~> 2.5' 25# Use Redis adapter to run Action Cable in production 26# gem 'redis', '~> 4.0' 27# Use ActiveModel has_secure_password 28# gem 'bcrypt', '~> 3.1.7' 29 30# Use Capistrano for deployment 31# gem 'capistrano-rails', group: :development 32 33# Reduces boot times through caching; required in config/boot.rb 34gem 'bootsnap', '>= 1.1.0', require: false 35 36group :development, :test do 37 # Call 'byebug' anywhere in the code to stop execution and get a debugger console 38 gem 'byebug', platforms: [:mri, :mingw, :x64_mingw] 39end 40 41group :development do 42 # Access an interactive console on exception pages or by calling 'console' anywhere in the code. 43 gem 'web-console', '>= 3.3.0' 44 gem 'listen', '>= 3.0.5', '< 3.2' 45 # Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring 46 gem 'spring' 47 gem 'spring-watcher-listen', '~> 2.0.0' 48end 49 50 51# Windows does not include zoneinfo files, so bundle the tzinfo-data gem 52gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby] 53
試したこと
qiitaなどを見て何回かやってみたのですが解決されません。どこをどのように変更すればいいのでしょうか??
あなたの回答
tips
プレビュー