I've been having a number of issues getting up and running using
moonshine on my current Rails 3.1.3 app and was hoping to get some
advice.
Everything seems to be working with the cap deploy:setup and deploy
but I am getting 404's for my application.js and css files.
If it's easier, the project is located at
https://github.com/naderhen/bluebase
if you'd like to take a detailed look
In my application.rb: (using the nodejs plugin recommended at
https://github.com/railsmachine/moonshine/wiki/Rails-Asset-Pipeline)
config.assets.enabled = false
my application.css.scss:
/*
*= require_self
*= require_tree .
*/
.... Other CSS
application.js:
//= require jquery
//= require jquery_ujs
//= require jquery-ui-1.8.18.custom.min
//= require underscore
//= require backbone
//= require bluebase
//= require_tree ./lib
//= require_tree ../templates
//= require_tree ./models
//= require_tree ./collections
//= require_tree ./views
//= require_tree ./routers
//= require_tree .
Any help whatsoever would be greatly appreciated!
Thanks so much,
Nader