bundler を使用してカスタム gem を作成し、それを git リポジトリでチェックしました。
custom_gem.rb
require "custom_gem/version"
require "custom_gem/custom_class"
module CustomGem
# Your code goes here...
end
custom_class.rb
require 'typhoeus'
module CustomGem
class CustomClass
def self.custom_method
#do stuff with typhoeus
end
end
end
別のプロジェクトに依存関係として追加し、バンドラー経由でインストールしました。
gem 'custom_gem', :git => 'git@bitbucket.org:dir/repo.git'
その後、呼び出して使用しようとします
CustomGem::CustomClass.custom_method
次のエラーが表示されます。
初期化されていない定数 CustomGem::CustomClass
助言がありますか?
小さなことかもしれませんが、Ruby を使い始めたばかりなので、アドバイスをいただければ幸いです。