Tagged Questions
3
votes
5answers
177 views
Rails won't load asset pipeline
I ran rake assets:precompile by mistake on development, and Rails stopped loading the assets on development. I only get application.js and application.css loaded.
application.js:
//= require jquery
...
0
votes
1answer
135 views
Rails 3.2 assets:precompile Permission denied 123
I'm trying to precompile my rails app but get this weird error that I don't know how to follow?
rake assets:precompile --trace
** Invoke assets:precompile:all (first_time)
** Execute ...
1
vote
1answer
150 views
Trouble creating a symlink in Rails public folder
In my Rails app I want to create a symlink in public/ that links to another folder. I can create the symlink and navigate through it but I can't seem to get Rails to serve images out of it. Is there a ...
0
votes
1answer
486 views
Rails Assets and CDN Issues (CSS, JS references)
I am dealing with Rails 3.1.2, asset_sync and cludfront. I have installed asset_sync and precompiled all the assets. The problem I am facing is the following:
rake compiles combine javascript and css ...
1
vote
1answer
917 views
Sass Not Precompiling on Rails 3.1 Asset Pipeline, Assets:precompile rake task
I've got an app I just converted to Rails 3.1. In my app/assets/stylesheets I have a bunch of sass files that use @import to import parial sass files. One of these files is called screen.sass and it's ...
1
vote
1answer
143 views
Rails 3.1 Generating Stylesheets attached to ActiveRecord Model objects
What we used to do in Rails 3.0 was have paperclip attach a file to our 'Site' model that represented css stylesheets. We have tons of sites in our application each with a stylesheet that gets ...
1
vote
1answer
174 views
Rails3 and static assets of CSS+Javascript in plugins
I have downloaded some plugins that contains multiple .css,.js and image files, is there a way for me to circumvent splitting each of these plugins up into these three directories:
...