2017-06-08から1日間の記事一覧

RubyGem 'atk' が入らない

$ bundle update で謎のエラーが出る。Linux Mint 18。 Gem::Ext::BuildError: ERROR: Failed to build gem native extension. current directory: /home/tomoki/Documents/Ruby/vendor/bundle/ruby/2.3.0/gems/atk-3.1.6/dependency-check rake RUBYARCHDIR…

rbenv install --list の更新

$ cd ~/.rbenv/plugins/ruby-build $ git pull origin master ※参考 rbenv install -l のリストを更新する - nafuruby’s diary

Ruby の Thread と Queue 覚え書き

q = Queue.new Thread.start do while prc = q.pop prc.call end end loop do q.push(proc {puts "test"}) sleep(1) end 実行結果。 test test test ..