Visual Studio Code で Ruby のデバッグ機能を使おうと思い,
Visual Studio CodeによるRubyのデバッグ
を参考にしました.
しかし,デバッグ用Gem導入のところでエラーがでてしまいました.
最終的には,debase
がインストールできればいいかなと思っています.
どのようにすればエラーが取り除けるでしょうか?
Gemfile です.
Gemfile
1# frozen_string_literal: true 2 3source "https://rubygems.org" 4 5git_source(:github) {|repo_name| "https://github.com/#{repo_name}" } 6 7# gem "rails" 8gem 'ruby-debug-ide' 9gem 'debase'
以下のエラー内容です.
sh
1(base) username@iiyama-linux:/mnt/xxx/yyy/username/zzz$ sudo bundle install 2Don't run Bundler as root. Bundler can ask for sudo if it is needed, and installing your bundle as root will break this application for all non-root users on this machine. 3Fetching gem metadata from https://rubygems.org/..... 4Resolving dependencies... 5Using rake 13.0.0 6Using bundler 2.0.2 7Using debase-ruby_core_source 0.10.6 8Fetching debase 0.2.4.1 9Installing debase 0.2.4.1 with native extensions 10Gem::Ext::BuildError: ERROR: Failed to build gem native extension. 11 12 current directory: /mnt/xxx/yyy/username/zzz/vendor/bundle/ruby/2.5.0/gems/debase-0.2.4.1/ext 13/usr/bin/ruby2.5 -r ./siteconf20191031-27381-12yv24g.rb extconf.rb 14mkmf.rb can't find header files for ruby at /usr/lib/ruby/include/ruby.h 15 16extconf failed, exit code 1 17 18Gem files will remain installed in /mnt/xxx/yyy/username/zzz/vendor/bundle/ruby/2.5.0/gems/debase-0.2.4.1 for inspection. 19Results logged to /mnt/xxx/yyy/username/zzz/vendor/bundle/ruby/2.5.0/extensions/x86_64-linux/2.5.0/debase-0.2.4.1/gem_make.out 20 21An error occurred while installing debase (0.2.4.1), and Bundler cannot continue. 22Make sure that `gem install debase -v '0.2.4.1' --source 'https://rubygems.org/'` succeeds before bundling. 23 24In Gemfile: 25 debase
$ ruby --version ruby 2.4.1p111 (2017-03-22 revision 58053) [x86_64-linux]
OS は Linux です.
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2019/10/31 07:23