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.
|
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. |
|||
|
|
|
Ok. I have solved. 1) Create a Gemfile in vendor/plugins/my_plugin like:
2) Create a gemspec file. In the folder vendor/plugins run this command:
(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:
(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:
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:
And dependency of my_plugin (will_paginate in this case) is installed. Thank to Sinetris for initial input. |
|||||||||
|
|
Create a Gemfile in your vendor/plugins/my_plugin/ like:
note the gemspec directive. Take a look at Using Bundler with Rubygem gemspecs for more information. |
|||
|
|
Gemfile in the application folder.
|
|||
|
|