Tagged Questions
0
votes
0answers
27 views
rails asset pipeline production precompile
I have a directory projName/vendor/assets/bootstrap/css/
I am in production mode.
production.rb contains: config.assets.precompile << /(^[^_\/]|\/[^_])[^\/]*$/
when I run rake assets:precompile
...
0
votes
2answers
176 views
Couldn't find a file for twitter bootstrap
I'm using twitter bootstrap in my Rails application. It works well in development mode but does not in production. Here is the Gemfile
source 'https://rubygems.org'
ruby '1.9.3'
gem 'rails'
gem ...
3
votes
5answers
180 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
...
1
vote
2answers
55 views
HTML <img> tag with Heroku CDN?
I have a question about using asset_sync and a Heroku CDN. In this article, it says
Make sure you’re using the Rails AssetTagHelper methods (like
image_tag). This will ensure all of your assets ...
1
vote
1answer
48 views
Best practice for making single-use pages
From time to time, we held special events on our site (e.g. discounts or lottery draw). These events each will have a special page (or pages) with very distinct styles/javascripts/images.
These ...
1
vote
1answer
125 views
Jasmine won't load javascript files from asset pipeline
I'm developing a gem and I've installed Jasmine https://github.com/pivotal/jasmine-gem/
All of my required JS files are in my manifest file at app/assets/javascripts/application.js
//= require ...
4
votes
1answer
150 views
Rails 3.2.11 asset pipeline: accented characters in javascript get converted to question marks in production
I'm writing a rails application in Spanish and I'm having trouble displaying accented characters from JavaScript.
Everything works fine in development, but in production, in the unified ...
3
votes
2answers
314 views
Why can't nginx find my assets?
I'm on rails 3.2 and my production setup is using nginx and unicorn.
I have a problem with some assets that a ruby gem called sidekiq uses. However those assets are not being served properly when I ...
1
vote
1answer
268 views
asset_sync Gem Causes Heroku to Hang on precompile
I'm using the asset_sync gem with a Heroku deployment (Rails 3.2.3). Precompilation works nicely locally (pushing assets up to my AWS bucket without issues), but when I push to Heroku, it hangs during ...
1
vote
2answers
934 views
Require tree in asset pipeline
I have a folder in my asset pipeline called typefaces. It works without any additions to application.rb.
In the directory I have different typeface types, like .eof, .ttf, etc in folders, like this
...
3
votes
3answers
1k views
Wanted: A good set of setup instructions for AngularJS with Rails 3.1+ (asset pipeline)
I would like to find a clean tutorial or set of docs that describes integrating AngularJS with Rails, specifically how to configure Angular correctly for the asset pipeline. Also, suggestions on ...
0
votes
0answers
71 views
Rails engine: assets only being loaded from engine, not from dummy app
I have a rails mountable engine, that I am building. I have some stylesheets in my engine, which are being loaded just fine, but no stylesheets from the dummy applications is being loaded. What could ...
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
33 views
Anomalous Image Behavior In Rails 3.2.3
I'm new to RoR and in my Rails 3.2.3 app without the sprockets gem installed, I've used "image_tag" to display "example.png" which exists in "public/images," like so:
<%= image_tag "example.png" ...
0
votes
1answer
488 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
920 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 ...
2
votes
2answers
121 views
Rails assets: How can you reference images from another app?
Rails adds an md5 hash to images names when moving them to the /public/assets directory during precompilation. The problem is that these hashes are unpredictable, so how can I know what they're going ...
0
votes
1answer
249 views
Facebook like button in Rails, how to put Facebook JS in assets?
I am doing this in order to have Facebook like button in my page:
<script src="http://connect.facebook.net/en_US/all.js#xfbml=1"></script>
And after that:
<fb:like href= "" ...
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:
...
2
votes
1answer
378 views
Rails 3.1 Netzke Asset Pipeline Issue
Walking through this tutorial and am having problems with Rails Asset Pipeline.
http://blog.writelesscode.com/blog/2010/06/14/extjs-rails-crud-application-in-7-minutes/
I make the symlink:
> ln ...
1
vote
1answer
509 views
Override an asset host in rails, via the helper methods?
I was wondering if there was a way to override the asset host of an image.
For example lets say I have the following asset host and image tag
config.asset_host = "www.xxx.com
image_tag "blerg.gif"
...
1
vote
2answers
691 views
Prevent image caching in rails on a per tag basis
We are using gravtars for a site currently being developed in rails 2.3.4 and i am finding that the rails side tends to cache the images even after there is a change at the gravtar side. I know with ...