sinatra / sinatra-recipes

Community contributed recipes and techniques
http://recipes.sinatrarb.com/
463 stars 142 forks source link

Sprockets recipe raises errors #144

Open joallard opened 6 years ago

joallard commented 6 years ago

Just want to pitch in that the Sprockets recipe seems to raise errors and need some adjustments. Namely, the environment setting defaults to the symbol :development rather than the Sprockets environment.

Here's my snippet:

sprockets = Sprockets::Environment.new
set :sprockets, sprockets
sprockets.append_path "assets/stylesheets"
sprockets.append_path "assets/javascripts"

I'm in the middle of a project right now and don't have the time for a PR, but I thought I'd at least leave some notes here.