wizztjh
wizztjh

Reputation: 7041

How to bundle a local gem that I created?

I had use jeweler to create a gem skeleton and wrote some come on it. Now ... how can i put it in my gemfile?

Upvotes: 0

Views: 104

Answers (1)

apneadiving
apneadiving

Reputation: 115511

Simply use the 'path' option:

 gem "my_gem", :path => "relative_path_goes_here"

Upvotes: 1

Related Questions