I had the same problem with some gems. If I add them through the Heroku "install gem" interface, the gem still won't be available.
What I did was download and extract the gem to my local app, then upload/import my app with the gem in /vendor/gems/gem_name-x.x.x/. You could probably do this easier with the Git interface to upload the gem files, but I haven't tried that yet. Note: You will probably need to run "rake gems:refresh_specs" after adding the new gem. If it complains that there is no 'specification file' associated with the gem, you can create one by running "gem spec midilib-1.2.0.gem" (or whatever the gem file name is). Then put the contents of the spec into a file named ".specification" and upload it to "vendor/gems/midilib-1.2.0/". This may not be optimal. I'm relatively new to Heroku and ruby/rails in general, but that is what I've been doing. Hope that helps. -Steve On Jan 25, 11:11 pm, GabrielG1976 <[email protected]> wrote: > Hello I have Question I have built a app and It requires them midilib > gem i installed through heroku add gem from avaiable gems list it > added it but when i run the midi method it says the gem isnt there and > can't find any ideas how to get this working thanks > > Gabriel G --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Heroku" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/heroku?hl=en -~----------~----~----~----~------~----~------~--~---
