Tagged Questions
The assets tag has no wiki summary.
20
votes
3answers
9k views
Rails 3.1 and jquery-ui assets
This was asked in another question, but none of the solutions appear to work for me in 3.1rc1.
I'm trying to use the new assets stuff in rails 3.1 - I have the files:
...
15
votes
1answer
2k views
Engine's assets with Rails 3.1
How should one provide assets in an engine in Rails 3.1?
Where should they be located and can they be included automatically?
Originally asked by Tomas Celizna posted here.
10
votes
5answers
9k views
Android: How to copy files in 'assets' to sdcard?
I have a few files in the assets folder. I need to copy all of them to a folder say /sdcard/folder. I want to do this from within a thread. How do I do it?
9
votes
1answer
1k views
Should I use @import or manifest files?
Rails 3.1 introduces a new way of organizing both JS and CSS with the introduction of manifest files. For example, application.js might look like this:
//= require jquery
//= require jquery-ui
//= ...
8
votes
3answers
142 views
Android: Accessing images from assets/drawable folders
The app I am currently working on has hundreds of images. At the moment I store them in the 'Drawable' folder. I was thinking about moving all of them to Assets folder.
My question is: Is there any ...
8
votes
3answers
2k views
Rails 3.1 assets caching on heroku
Even if I already rake assets:precompile-ed all my assets, I still seem to have a hard to getting heroku to cache them correctly. I keep getting things like
2011-06-04T16:40:20+00:00 app[web.1]: ...
8
votes
11answers
14k views
How to play videos in android from assets folder or raw folder?
I am trying to play a video in android emulator
I have the video in my assets folder as well as the raw folder
But after doing some research still i cant play video in my emulator
i am working on ...
7
votes
4answers
3k views
Symfony2 - Assetic - load images in CSS
I have a CoreBundle that contains main css files and images. Now I have a problem when i load an image from css; the image isn't shown.
background-image:url(../images/file.png)
(With a full path ...
7
votes
1answer
1k views
Carry Sass variables through the Assets Pipeline, Rails 3.1 rc1
I recently branched one of my Rails 3.0 projects with the 3.1 rc1 to try the new assets pipeline. I've been using Sass in the project before going 3.1 so I've been setting up some variables and ...
7
votes
6answers
11k views
Load files bigger than 1M from assets folder
I'm going crazy, I created a file object, so it can be read with ObjectInputStream, and I placed the assets folder.
The method works with a file smaller than 1M, and give error with larger files.
I ...
6
votes
3answers
2k views
Broken precompiled assets in Rails 3.1 when deploying to a sub-URI
I'm in the process of updating a Rails 3 app to use Rails 3.1 and as part of that, am making use of the new asset pipeline. So far, I've got everything working apart from one rather annoying problem I ...
6
votes
11answers
970 views
How to create a “dependency graph” for IT assets
One of my customers is trying to create an interactive "matrix" of interdependencies for the various applications used in their company (it's a travel&leisure company with around 2500 employees).
...
6
votes
2answers
589 views
Rails Asset Caching Breaks First few page loads
We're using Rails asset caching for JS and CSS like this:
<%= stylesheet_link_tag 'reset','global','admins','autocomplete', 'date_input', 'tablesorter', 'partners', 'jqmodal', :media => ...
6
votes
2answers
5k views
What's the proper way to work with assets in Yii?
I notice that Yii creates strange set of directories (names like 8523d23 or 10s89b92) in assets directory, and this even happens at runtime. For example, one of my tables got more than 10 records, ...
5
votes
1answer
131 views
*Any* way for linking Android /drawable graphics to /assets?
I am trying to support two Icon_Picker intents:
org.adw.launcher.icons.ACTION_PICK_ICON
and
com.betterandroid.launcher2.icons.PICK_ICON_ACTION
Unfortunately ADW, Go Launcher and LP look for ...
5
votes
2answers
441 views
How do I add asset search paths to Sprockets based on a wildcard subdomain in rails 3.1?
The Rails Asset Pipeline guide instructs you to use config.assets.paths in config/application.rb but I don't have access to the request's subdomain at this point.
I'd like to be able to prepend an ...
5
votes
3answers
831 views
SASS global variables not being passed to partials
Basically I have a structure that used to work perfectly in 3.0.x and now it breaks with undefined variable errors.
partials
_base.css.sass
_header.css.sass
main.css.sass
application.css.sass
...
5
votes
2answers
2k views
Android: How to reference asset images from a remotely loaded html page in webview
I'm trying to load/reference images from the app's assets folder from within a HTML page in a WebView. Unlike in most of the examples the HTML page itself is not located in the assets folder but is ...
5
votes
1answer
3k views
Play audio file from the assets directory
I have the following code:
AssetFileDescriptor afd = getAssets().openFd("AudioFile.mp3");
player = new MediaPlayer();
player.setDataSource(afd.getFileDescriptor());
...
5
votes
2answers
2k views
What's the best way to store and access XML in Android?
While I realize resources themselves are defined in XML files, if I have an XML file of my own type that I wish to use, should I be storing them in "res/xml"?
Is there a better way to do this such as ...
4
votes
1answer
69 views
User-defined themes in a rails app: how to store the assets
I am building an application that should allow user to upload their themes to display the data in a custom way.
Each theme should include all the necessary assets such as html template (using ...
4
votes
1answer
189 views
Dump Symfony2 assets to Amazon S3
I'd like to dump my assets to my s3 bucket in production, after deploying with capifony in Symfony 2. I've found some solution, but don't really find out the best to use.
It's possible the dump the ...
4
votes
3answers
96 views
Best practices for maintaining assets accross (sub)domains?
My webserver filesystem is equivalent to the following:
/master-domain.tld
/master-domain.tld/assets/js/foo.js
/master-domain.tld/assets/css/bar.css
/sub1.master-domain.tld
...
4
votes
1answer
581 views
Heroku Cedar stack and Rails 3.1 RC5 not displaying images?
Anyone get Rails 3.1 RC5 running on Heroku, Cedar stack? Everything seems to work so far, except that asset images (such as logo, icons, main_bg, etc.) are not being displayed.
I'm not sure if it is ...
4
votes
2answers
534 views
How do I manage assets in Rails 3.1?
OK, so I'm starting a new project using Rails 3.1 and I'm new to CoffeeScript.
Anyway, I like the idea of having asset files representing controllers but what if I only want the JS to render when the ...
4
votes
4answers
2k views
Is it possible to load a drawable from the assets folder?
Can you load a drawable from a sub directory in the assets (not the drawable folder) folder?
4
votes
4answers
374 views
OpenGL 3D GUI Engine and/or assets
Are there any OpenGL 3D GUI libraries?
and/or
Are there any 3D assets like windows, list boxes, etc. that can be used in a 3D game engine?
Something like Age 3D is a great start, ...
4
votes
2answers
164 views
Understanding image caching in web browsers
What are the complete set of factors that affect image caching in web browsers? How much control does a web developer have over this, and how much is browser settings? Are there different ...
4
votes
4answers
913 views
How to check Android Asset resource?
I want to check, whether a file exists or not in the /assets/ folder.
How could I do it? Please help.
4
votes
3answers
359 views
Embed many graphics using an array
In AS3 you can embed a graphic into a Class variable:
[Embed(source="MenuAssets.swf", symbol="topSquare")]
public var TopMenuItem:Class;
I have hundreds of assets in this one website ...
4
votes
1answer
1k views
Loading package html + resources into webview
I would like to know how I can display a HTML page in webview with references to relative/local images. The goal is to have the html page and all linked images contained in the android application ...
4
votes
4answers
620 views
Finding unused images in a Rails app?
I'm familiar with tools like Deadweight for finding CSS not in use in your Rails app, but does anything exist for images? I'm sitting in a project with a massive directory of assets from working with ...
3
votes
0answers
61 views
SASS: import bourbon lib from another dir in stylesheets
I have a namespace let's say called "pro" and I want to put my sass assets inside app/assets/stylesheets/pro/sellers. I have nested controllers cars is inside sellers.
In my layout I have this ...
3
votes
1answer
71 views
exclude files in gems from heroku slugs (using .slugignore, heroku)
A rails 3.0.x project I am working with uses a gem that contains a large amount of test data that isn't needed for the heroku deployment. I would like to exclude this from the heroku slug, as it adds ...
3
votes
2answers
57 views
sprockets duplicate file naming
I have the following files, in my asset path:
javascripts/abc.js
templates/abc.js.mustache # this gets compiled to abc.js
naturally, they both would be requested as assets/abc.js.
Is there a fix? ...
3
votes
2answers
876 views
rake assets:precompile doesn't work (rails 3.1.1)
I am deploying to heroku yet I saw that the css files aren't being served (they also cannot be found on heroku).
I read that I need to do rake assets:precompile locally at first yet when I do it I ...
3
votes
2answers
185 views
Overriding backend assets in production environment
I am working on a project that needs to alter Refinery's WYMEditor behavior a bit. This is easily done by overriding jquery.refinery.wymeditor.js using rake refinery:override and editing it to my own ...
3
votes
1answer
318 views
Rails 3.1 assets not recognizing new images uploaded by rmagick until server restart
I have my Rails 3.1.0 application running with passenger in production environment and I have a section where the application allows the user to change his profile picture so I upload the image using ...
3
votes
2answers
455 views
Adding HTML5 offline support to a Rails 3.1 app
I want to add HTML5 offline support for my Rails 3.1 app, and I've come across rack-offline, a gem suited for this purpose. However, rack-offline only adds the assets in the public folder to the ...
3
votes
1answer
626 views
Get NGINX to serve .gz compressed asset files
Rails 3.1 has a convenient system which can compress files into .gz files. However, instead what I've done is I've moved all the asset files that are created with assets:precompile to a static ...
3
votes
1answer
437 views
using sencha touch with rails 3.1
I created an example app on how to use Sencha Touch,Rails 3.1, Devise and Mongodb.
I put the Sencha Touch files in public folder, but i would like to know if there is a way to put it in the assets ...
3
votes
1answer
550 views
Route helpers in asset pipeline
using Rails 3.1.0.rc4, I'm trying to access a route helper in a javascript file (event.js.erb in this case) and it seems like they are not loaded at that moment. When requesting the merged ...
3
votes
1answer
788 views
Rails 3.1.0.rc4: 304 Not Modified. Is there any known working configuration?
Trying the basic example in rails 3.1 RC 4, I get the error
Compiled app/assets/javascripts/application.js
Served asset /application.js - 304 Not Modified
(same with .css and asset/rails.png on the ...
3
votes
2answers
479 views
Is there a way to open file as File object from android's assets folder?
I would like to get the filesize of a file located in the assets directory. I saw many examples like
InputStream myInput = appContext.getAssets().open()
I know i can determine filesize by simple ...
3
votes
2answers
496 views
Is it possible to get last modified date from an assets file?
Bizarre question: is it possible to get the last modified date of a file in the assets folder, or would that be pointless and impossible?
I ask because I'm copying a read-only database out of there ...
3
votes
1answer
456 views
Using S3/CloudFront with Rails 3 Assets and Less CSS
This one is a mouthful! Basically I'm trying to send all of my Rails 3 assets up to the S3 Cloud and use CloudFront as the CDN to deliver it all. I already learned about configuring Rails to pull from ...
3
votes
3answers
347 views
Is there a way to alias/anchor an array in YAML?
I'm using Jammit to package assets up for a Rails application and I have a few asset files that I'd like to be included in each of a few groups. For example, I'd like Sammy and its plugins to be in ...
3
votes
5answers
5k views
Rails 3 Engine & Static assets
I'm building an engine I've bundled as a gem (gmaps4rails). I copied the /public of my engine in the /public of my rails app.
Everything works fine in development but fails to work in production: it ...
3
votes
2answers
288 views
Assets Security in Android
How can we make Android assets secure so that no one can read them after app deployment?
3
votes
2answers
6k views
Android Assets with sub folders
InputStream myInput = myContext.getAssets().open("MyFolder/" + "MyFile.db3");
I have a file in the assets folder in a sub folder as above. It doesn't get the file though, is there a special way to ...