rubyを始めようとしているド素人です。
環境構築をしようとrails sをしたところ、以下の表示が。
ruby
1C:\Users\yuto\ruby sample>rails s 2The git source https://github.com/rails/webpacker.git is not yet checked out. Please run `bundle install` before trying to start your application
bundle installをしろと言っていると思ったので、言われた通りしたところ
下記のようになりました。
ruby
1C:\Users\yuto\ruby sample>bundle install 2You need to install git to be able to use gems from git repositories. For help 3installing git, please refer to GitHub's tutorial at 4https://help.github.com/articles/set-up-git
色々こちらのサイトでも掘り起こしたのですが、
よくわからなかったです。。。
どこかのサイトでポートがどうのこうのと言われていたので、
もしかして以前勉強していたいわれていたのでpythonの環境構築で
いじったときの影響なのかとも感じております。
結局先週末わからず、だらだら丸2日間時間を割かれてしまいました。
初歩的なところ、さらには少ない情報ですみません。
どなたかおわかりの方おりませんでしょうか。
宜しくお願い致します。
<追記>
紆余曲折あり、多少なりとも進んだのですが、今度は下記で躓きました。
LoadError: Error loading the 'sqlite3' Active Record adapter. Missing a gem it depends on? can't activate sqlite3 (~> 1.4), already activated sqlite3-1.3.13. Make sure all dependencies are added to Gemfile.
バージョンが異なるということで、下記のサイトの通りするのですが、うまく起動しません。
https://qiita.com/Kta-M/items/254a1ba141827a989cb7
度々すみません。もしご存じでしたらご教示ください。
宜しくお願い致します。
またアドバイスでgemfileを見せてほしいとのお話がありましたので、
下記に添付いたします。
宜しくお願い致します。
gemfile
1source 'https://rubygems.org' 2git_source(:github) { |repo| "https://github.com/#{repo}.git" } 3 4ruby '2.6.5' 5 6# Bundle edge Rails instead: gem 'rails', github: 'rails/rails' 7gem 'rails', '~> 6.0.0' 8# Use sqlite3 as the database for Active Record 9gem 'sqlite3', '~> 1.3.13'# Use Puma as the app server 10gem 'puma', '~> 3.11' 11# Use SCSS for stylesheets 12gem 'sass-rails', '~> 5' 13# Transpile app-like JavaScript. Read more: https://github.com/rails/webpacker 14gem 'webpacker', '~> 4.0', github: "rails/webpacker" 15# Turbolinks makes navigating your web application faster. Read more: https://github.com/turbolinks/turbolinks 16gem 'turbolinks', '~> 5' 17# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder 18gem 'jbuilder', '~> 2.7' 19# Use Redis adapter to run Action Cable in production 20# gem 'redis', '~> 4.0' 21# Use Active Model has_secure_password 22# gem 'bcrypt', '~> 3.1.7' 23 24# Use Active Storage variant 25# gem 'image_processing', '~> 1.2' 26 27# Windows does not include zoneinfo files, so bundle the tzinfo-data gem 28gem 'tzinfo-data' 29 30# Reduces boot times through caching; required in config/boot.rb 31gem 'bootsnap', '>= 1.4.2', require: false 32 33group :development, :test do 34 # Call 'byebug' anywhere in the code to stop execution and get a debugger console 35 gem 'byebug', platforms: [:mri, :mingw, :x64_mingw] 36end 37 38group :development do 39 # Access an interactive console on exception pages or by calling 'console' anywhere in the code. 40 gem 'web-console', '>= 3.3.0' 41end 42 43group :test do 44 # Adds support for Capybara system testing and selenium driver 45 gem 'capybara', '>= 2.15' 46 gem 'selenium-webdriver' 47 # Easy installation and use of web drivers to run system tests with browsers 48 gem 'webdrivers' 49end 50
このあたりを公開しても問題ないですよね?
セキュリティ的に問題なければ私は大丈夫なのですが。
宜しくお願い致します。
回答3件
あなたの回答
tips
プレビュー