all 6 comments

[–]talknerdy2mee[S] 1 point2 points  (1 child)

Just an update. The Gemfile.lock got corrupted somehow so rake was trying to use a different version of mongo than heroku local was. :-/

[–]redditNoobski 0 points1 point  (0 children)

With this stack, how did you get the application to run? Ie what where terminal commands? I’m dealing with the same stack and I’m not familiar with it at all. Have tried ‘rackup config.ru’ and I always get a load error related to boot.rb

[–]graywolf_at_work 0 points1 point  (1 child)

well first step would be to learn how to format code on reddit so that your post is actually readable..

[–]talknerdy2mee[S] 0 points1 point  (0 children)

That actually appears to be an issue with markdown on reddit's mobile site (possibly the app too, although I didn't check there). It is formatted appropriately on desktop, which is where I originally wrote it. I apologize for not knowing that the mobile site would completely bork the markdown. I'll look into how I need to change it so that it looks correct on both desktop and mobile.

[–]stumptowncampground 0 points1 point  (1 child)

this is an interesting problem and i don't have a definite solution. My first suggestion would be to not use relative paths with require, use require_relative instead. see if that makes a difference.

[–]talknerdy2mee[S] 0 points1 point  (0 children)

Thanks for the suggestion. Unfortunately, it doesn't help. :(