Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I wrote a plugin that requires a gem as a dependency.

Where I define this dependency ?

I have tried to create gemfile in vendor/plugins/my_plugin/, but 'bundle install' don't find this file.

share|improve this question

3 Answers

up vote 13 down vote accepted

Ok. I have solved.

1) Create a Gemfile in vendor/plugins/my_plugin like:

# Gemfile
source "http://rubygems.org"
gemspec

2) Create a gemspec file. In the folder vendor/plugins run this command:

bundle gem my_plugin

(Note this command ask you for overwrite some files. Check the files before answer: Y)

3) Open gemspec file in vendor/plugins/my_plugin/ and add before the keyword end:

s.add_dependency('will_paginate', '~> 3.0.pre2')

(In this example I have used will_paginate how required dipendency of my_plugin)

4) Now go in your rails app and edit Gemfile, add:

gem 'my_plugin', :path=>'vendor/plugins/my_plugin'

The path specified supposed that your plugin is already in vendor/plugins folder of your rails app. Of course when deploy rails app you don't need anymore to specify :path argument.

5) Now in rails app root do:

bundle install

And dependency of my_plugin (will_paginate in this case) is installed.

Thank to Sinetris for initial input.

share|improve this answer
1  
I've a similar problem, but in my case its not a plugin, its a engine/gem. I did as you said, the bundle install installs the gems as dependencies. But it appears that the application doesn't load those gems, or initialize them, causing errors of undefined methods everywhere. The engine by itself works ok. Do you have any idea what could be missing? – Tiago Mar 2 '11 at 11:53
I have the same issue as Tiago, but mine is a plugin. bundle install installs all the dependencies – I see them in Gemfile.lock – but they aren't loaded by Rails. What's missing? – orangechicken May 25 '11 at 20:24
I had to move my init.rb to rails/init.rb which seams to be loaded after the rails application i loaded. Also I had problems accessing Rails.root while loading the lib code, solved it by moving some init code to rails/init.rb. – Mattias Wadman Sep 1 '11 at 14:48

Create a Gemfile in your vendor/plugins/my_plugin/ like:

# Gemfile
source "http://rubygems.org"
gemspec

gem "your-dependency-gem-name"

note the gemspec directive.

Take a look at Using Bundler with Rubygem gemspecs for more information.

share|improve this answer
Ok. I perhaps have started from the mistaken assumption that the command 'bundle install' looking in folder vendor/plugins and resolve the dependencies at development time of the plugin. If understand now, I need to make a gem of the my plugin first and its dependencies will be resolved when my plugin will be installed. Right? – Sebtm Nov 21 '10 at 19:52

Gemfile in the application folder.

# Bundle the extra gems:
# gem 'bj'
# gem 'nokogiri'
# gem 'sqlite3-ruby', :require => 'sqlite3'
# gem 'aws-s3', :require => 'aws/s3
share|improve this answer
I need to specify gem dependency for plugin, not for application – Sebtm Nov 21 '10 at 17:31

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.