#Railsのinstallについて
rails newを実行した際に生成されるGemfileの中に**gem 'rails'**という記述があるのですが、
gem installで入れたrailsとこのgemfileからbundlerで入れたrailsは何がちがうのでしょうか。なぜここでもインストールしているのでしょうか。
Gemfile
1コードsource '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.5' 8# Use sqlite3 as the database for Active Record 9gem 'sqlite3' 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. 20.
##行ったこと
AWScloud9を用いているのでRubyはインストール済みです。
terminal
1$gem install rails -v 5.2.5 2$rails new test_app
回答2件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2021/11/23 09:00