In my local version of my rails app, i have the following requires in
environment.rb-
require ‘model_extensions’
require ‘open-uri’
But, having just deployed to a shared server (on bluehost) both of these
requires crash the app if not commented out. But, i can’t find gems for
either of these - ‘model-extensions’ seems to be a generic name for a
type of plugin/gem, and open-uri seems to come with the standard rails
install.
I’ve got the ability to install my own gems and plugins in my bluehost
app, but can’t find out where to get them from.
Can i just copy these over in folders from my local install?
In my local version of my rails app, i have the following requires in
environment.rb-
require ‘model_extensions’
require ‘open-uri’
But, having just deployed to a shared server (on bluehost) both of these
requires crash the app if not commented out. But, i can’t find gems for
either of these - ‘model-extensions’ seems to be a generic name for a
type of plugin/gem, and open-uri seems to come with the standard rails
install.
I’ve got the ability to install my own gems and plugins in my bluehost
app, but can’t find out where to get them from.
Can i just copy these over in folders from my local install?
Actually just worked out the model_extensions problem - i needed to copy
over model_extensions.rb from my local lib file to the server.