vote up 0 vote down star
1

How to easily package software that uses multiple gems into a debian installable packages?

flag

1 Answer

vote up 1 vote down check

You have a couple options

1) package your application as a gem using jeweler By making it a gem, you can specify dependencies in the gemspec, so when it is installed rubygems will automatically attempt to install the needed gems.

This is probably the easiest thing

2) run an apt-server and package your app for it. There are some instructions on running an apt server on the ubuntu help pages. Packaging your app is somewhat complicated looking, but boils down to:

  • writing install/uninstall etc scripts
  • writing config files

Get started with this doc on the ibm developerworks

link|flag

Your Answer

Get an OpenID
or

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