I have a basic Sinatra app and I am attempting to use AssetPack to serve my assets. I am currently only trying to serve css files from sass files. I am including the sass gem.
Snippit from my app.rb file:
register Sinatra::AssetPack
assets {
css :application, '/css/application.css', [
'/css/styles.sass'
]
css_compression :sass
}
I am using slim so I have:
== css :application
For what ever reason, no css file is generated, only the sass file gets served.
Any help would be greatly appreciated!