2019-02-19 [長年日記]
_ railsdm podcast vol.2
通称 unasuke.fm に出演した。うなすけさん、平野さんのセットアップとサポートでたくさん話したいことを話せた。ありがとうございました!
https://soundcloud.com/railsdm/igaiga555
以下、紹介した本や資料です。
- ゼロからわかる Ruby超入門 4297101238
- Railsの教科書 https://tatsu-zine.com/books/rails-textbook
- プロを目指す人のためのRuby入門(チェリー本) 4774193976
- たのしいRuby 4797386290
- かんたんRuby 4774198617
- 3ステップでしっかり学ぶ Ruby入門 4774195022
- Java言語プログラミングレッスン 第3版(上) 4797371250
- ふりがなプログラミング 4295003867
- 初めてのプログラミング 4873114691
- インストラクショナルデザイン 4946553193
- 数学文章作法 9784480095251
- 知性の習得 https://igarashikuniaki.net/diary/20180325.html
- RubyとRailsの学習ガイド https://magazine.rubyist.net/articles/0059/0059-Ruby-Rails-Beginners-Guide.html
- BOOTH https://booth.pm/
- pixiv PAY https://pay.pixiv.net/
- 西武ライオンズ https://www.seibulions.jp/
2019-02-23 [長年日記]
_ gem install時のsourcesがoutdatedになった
gemをインストール時にこんなエラーが出るようになった。
gem i bundler -v 1.17.3
ERROR: While executing gem ... (TypeError)
incompatible marshal file format (can't be read)
format version 4.8 required; 60.33 given
ここに解決方法が書いてあって、gem envのsourcesに書かれたURLがoutdatedになると起こるようだ。
https://github.com/rubygems/rubygems/issues/1589#issuecomment-466381653
$ gem sources -l
*** CURRENT SOURCES ***
http://gems.rubyforge.org/
http://gems.github.com/
この2つがoutdated。これらを外して新しいのを入れる。
gem sources -r http://gems.rubyforge.org/
gem sources -r http://gems.github.com/
gem sources -a https://rubygems.org/
$ gem sources -l
*** CURRENT SOURCES ***
https://rubygems.org/
これでgem installできるようになった。直った〜。昔からRubyを使ってる人に起こりやすいのかも。
追試した。 gems.rubyforge.org も gems.github.com も両方起きてた。
https://gist.github.com/igaiga/4f4c56de431fc0e522c007fa4618a9f4