rails初心者です。以前に同じような内容の投稿があり、書き間違いを疑いましたがそれでも自己解決ができなかったので投稿させていただきます。
error
1PS C:\Users\hoge\environment\hello_app> bundle install 2 3[!] There was an error parsing `Gemfile`: syntax error, unexpected tSTRING_BEG, expecting do or '{' or '(' - gem 'coffee-rails', 4 ^ 5C:/Users/hoge/environment/hello_app/Gemfile:12: syntax error, unexpected ',', 6expecting end-of-input 7gem 'coffee-rails', 8 ^. Bundler cannot continue. 9 10 # from C:/Users/hoge/environment/hello_app/Gemfile:12 11 # ------------------------------------------- 12 # 13 > gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby] 14 # source 'https://rubygems.org' 15 # -------------------------------------------
gemfile
1source 'https://rubygems.org' 2 3ruby '2.6.6' 4 5gem 'rails', '~> 6.0.2', '>= 6.0.2.2' 6gem 'puma', '~> 4.1' 7gem 'sass-rails', '>= 6' 8gem 'webpacker', '~> 4.0' 9gem 'turbolinks', '~> 5' 10gem 'jbuilder', '~> 2.7' 11gem 'jquery-rails', 12gem 'coffee-rails', 13gem 'bootsnap', '>= 1.4.2', require: false 14 15group :development, :test do 16 gem 'sqlite3', '~> 1.4' 17 gem 'byebug', platforms: [:mri, :mingw, :x64_mingw] 18end 19 20group :development do 21 gem 'web-console', '>= 3.3.0' 22 gem 'listen', 23 gem 'spring', 24 gem 'spring-watcher-listen', 25end 26 27gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby] 28
環境はwindows10でvscodeです。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
退会済みユーザー
2020/04/30 15:04