作った gem をビルドしていざ実行しようとしても、 Command not found が返された。解決法が分かったのでシェア。 Bundler で作っている。バージョンは1.8.2。 作った gem の構成 ├── Gemfile ├── Gemfile.lock ├── README.md ├── Rakefile ├── sample-gem.gemspec ├── bin │ ├── sample-gem │ ├── console │ └── setup ├── lib │ ├── sample-gem │ │ ├── arguments.rb │ │ ├── client │ │ │ ├── base.rb │ │ │ ├── google.rb │ │ │ └── tumblr.rb │ │ ├──