vote up 2 vote down star
1

I've developed a Ruby application (a small game), and I would like to 'distribute' it to other people.

However, I am not sure what to do about the required gems. If I just send my application to someone who have ruby installed, but not the required gems, I assume it will blow up. Can I package the gems locally? If so, would it conflict if the other person has a different version of the gem?

So, what is the smart/proper/good way of doing this?

flag
you could use shoes for this. – Sam Saffron Sep 17 at 22:07

3 Answers

vote up 4 vote down check

The best way would probably be to just package your game as a gem as well, that way rubygems will take care of installing the dependencies. Here's the documentation explaining how to create your own gems.

link|flag
That's the way to do it. If you've never done it before, jeweler[1] should be of help. You can also specify your gem's dependencies in your gem's manifest. [1] - github.com/technicalpickles/jeweler – hgimenez Sep 17 at 23:09
And by the way, you can create a rake task that can install your gems. See Yehuda's answer here: stackoverflow.com/questions/1000749/… – hgimenez Sep 18 at 12:11
That's a good point! I haven't thought about making the game as a Gem. – pschneider Sep 20 at 9:34
vote up 3 vote down

If you'd rather not package your game as a gem, you could investigate the Bundler, which will be integrated into Rails 3.

link|flag
vote up 1 vote down

In your environment.rb you can express your gem dependencies, eg.

  config.gem "activemerchant", :lib => "active_merchant", :version => "1.4.1"

This isn't as automatic as gem dependencies, but it certainly usable. User must sudo rake gems:install to get your app to start.

link|flag

Your Answer

Get an OpenID
or

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