Railsのローカル環境構築がしたいです。
progateでruby,ruby on railsを学びWebサイトの作成をしたくローカル環境の構築時にエラーにな理実行できていない状況です。
自分で実行した事
1、progateでrubyの開発環境の用意
ruby -v
tarminal
1$ ruby -v 2ruby 2.5.0p0 (2017-12-25 revision 61468) [x86_64-darwin18]
・デスクトップ上で右クリックをし、「新規フォルダ」を選択して「ruby_lesson」という名前のフォルダを作成
・ATOMで「ruby_lesson」フォルダ選択し、
「New File」を選択から「index.rb」と入力し、ファイルを作成
・「index.rb」にRubyのコードを記述
index
1puts "Hello, World!" 2puts 1 + 2
・コマンドを実行
tarminal
1$ cd ~/Desktop/ruby_lesson 2$ ruby index.rb 3Hello World 43
・Homebrewのインストール
tarminal
1$ brew -v 2Homebrew 2.2.5 3Homebrew/homebrew-core (git revision 6219; last commit 2020-02-14)
・rbenvのインストール
tarminal
1$ rbenv -v 2rbenv 1.1.2
・rbenvを使用してRubyをインストールする前にインストールしたrbenvの設定
tarminal
1$ echo 'eval "$(rbenv init -)"' >> ~/.bash_profile 2$ source ~/.bash_profile
・Rubyのインストール(rbenv global 2.5.0
のrubyの使用)
tarminal
1$ rbenv versions 2 system 3 2.4.5 4* 2.5.0 (set by /Users/apple/.ruby-version)
Rubyの環境設定の完了
2、Ruby on Railsの環境構築
・Rubyのバージョンを確認
tarminal
1$ rbenv versions 2 system 3 2.4.5 4* 2.5.0 (set by /Users/apple/.ruby-version)
・Ruby on Railsをインストール
gem install rails -v "5.2.4.1"
rails -v
tarminal
1$ rails -v 2Rails 6.0.2.1
・ここで1つ疑問点・
gem install rails -v "5.2.4.1"
でバージョンの指定をしたにも関わらず、
Rails 6.0.2.1
となっているところ。
・Railsアプリケーションの作成
rails new sample_app
でアプリケーションの作成
※ここで何度かやり直した際にsample_appが複数作成しています。
消した方が良いでしょうか。
tarminal
1$ ls 21000 Gemfile Pictures **sample_app** vendor 3Applications Gemfile.lock Public sample_app2 4Desktop Library false sample_app3 5Documents Movies leopa sample_app4 6Downloads Music sample true
sample_appが手順どおり作成したものですので、
sample_appで以降説明続けます。
・ローカルでRailsサーバを立てる
tarminal
1$ cd sample_app 2$ rails s 3[WARNING] Could not load command "rails/commands/server/server_command". Error: uninitialized constant URI::Generic. 4
という状況です。
以前の質問で確認実行した事
tarminal
1$ which ruby 2/Users/apple/.rbenv/shims/ruby 3 4$ gem install bundler 5Successfully installed bundler-2.1.4 6Parsing documentation for bundler-2.1.4 7Done installing documentation for bundler after 3 seconds 81 gem installed 9 10$ bundle install 11The Gemfile specifies no dependencies 12Bundle complete! 0 Gemfile dependencies, 1 gem now installed. 13Bundled gems are installed into `./vendor/bundle`
以前の質問でgemfile,gemfile.lockの中の確認をしました。
gemfile
1$source 'https://rubygems.org' 2git_source(:github) { |repo| "https://github.com/#{repo}.git" } 3 4ruby '2.5.0' 5 6# Bundle edge Rails instead: gem 'rails', github: 'rails/rails' 7gem 'rails', '~> 5.2.4', '>= 5.2.4.1' 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# 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 ActiveStorage variant 31# gem 'mini_magick', '~> 4.8' 32 33# Use Capistrano for deployment 34# gem 'capistrano-rails', group: :development 35 36# Reduces boot times through caching; required in config/boot.rb 37gem 'bootsnap', '>= 1.1.0', require: false 38 39group :development, :test do 40 # Call 'byebug' anywhere in the code to stop execution and get a debugger console 41 gem 'byebug', platforms: [:mri, :mingw, :x64_mingw] 42end 43 44group :development do 45 # Access an interactive console on exception pages or by calling 'console' anywhere in the code. 46 gem 'web-console', '>= 3.3.0' 47 gem 'listen', '>= 3.0.5', '< 3.2' 48 # Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring 49 gem 'spring' 50 gem 'spring-watcher-listen', '~> 2.0.0' 51end 52 53group :test do 54 # Adds support for Capybara system testing and selenium driver 55 gem 'capybara', '>= 2.15' 56 gem 'selenium-webdriver' 57 # Easy installation and use of chromedriver to run system tests with Chrome 58 gem 'chromedriver-helper' 59end 60 61# Windows does not include zoneinfo files, so bundle the tzinfo-data gem 62gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby] 63
gemfile.lockは作成されていませんでした。
問題点もわからなくなり調べようがなくなってしまっています。
回答2件
あなたの回答
tips
プレビュー