aboutsummaryrefslogtreecommitdiffstats
path: root/railties/test/application/assets_test.rb
Commit message (Collapse)AuthorAgeFilesLines
...
* Fix precompile asset_host testGuillermo Iguaran2011-09-131-1/+1
|
* Move asset tests to assets_test fileGuillermo Iguaran2011-09-131-0/+31
|
* Fixed assets precompile regex, now accepts ProcsAlex Yakoubian2011-09-081-0/+28
|
* Refactor assets tests to use add_to_config instead of creating initializers ↵Guillermo Iguaran2011-09-061-13/+14
| | | | with config values
* config.action_controller.perform_caching isn't used anymore in assets ↵Guillermo Iguaran2011-09-061-0/+9
| | | | pipeline, instead we are using config.assets.digest now
* AssetNotPrecompiledError should be raise when config.assets.digest = false, ↵Guillermo Iguaran2011-09-041-0/+26
| | | | config.assets.compile = false and manifest file isn't present
* Warnings removed for "assert_match /" Please doArun Agrawal2011-09-041-9/+9
| | | | not add more.!
* assets:precompile should not append asset digests when config.assets.digest ↵Sam Pohlenz2011-09-011-0/+26
| | | | is false
* Merge pull request #2780 from guilleiguaran/assets-pipeline-minor-changesSantiago Pastorino2011-08-311-0/+13
| | | | Assets pipeline: fix in manifest location and remove unused code
* Set default location of manifest with config.assets.manifestGuillermo Iguaran2011-08-311-0/+17
|
* Backport f443f9cb0c64 to masterGuillermo Iguaran2011-08-311-16/+16
|
* Read digests of assets from manifest.yml if config.assets.manifest is onGuillermo Iguaran2011-08-311-0/+65
|
* Move asset debugging tests into a separate test caseDaniel Schierbeck2011-08-251-42/+0
| | | | | | | Also: - Refactor AssetDebuggingTest. - Use the %r regexp syntax. That way we don't need to escape the /'s.
* Add config.allow_debugging option to determine if the debug_assets query ↵Guillermo Iguaran2011-08-241-0/+42
| | | | param can be passed by user
* Fix assets tests in railtiesJon Leighton2011-08-161-4/+4
|
* Fix typoSantiago Pastorino2011-08-151-1/+1
|
* rake assets:precompile executes in production environment as default if ↵Santiago Pastorino2011-08-151-7/+19
| | | | RAILS_ENV was not provided
* Clear out tmp/cache when assets:clean is invoked.Ilya Grigorik2011-08-041-1/+1
| | | | | | Otherwise, if bad data is cached in tmp/clear then the next invocation of assets:precompile (or a regular incoming request) will pickup files from tmp without regenerating them from source.
* Merge pull request #2324 from zenapsis/3-1-stableSantiago Pastorino2011-08-011-0/+14
| | | | Rails 3.1 throws a Errno::ENOTDIR if files are put in assets directories
* provide more explicit test namesDamien Mathieu2011-07-251-2/+2
|
* add test checking that precompiling assets performs cachingDamien Mathieu2011-07-251-1/+11
|
* Make compressors lazily load.José Valim2011-07-061-0/+11
|
* Now accepting css/js files in deeper directory structures by default.Tobias Schlottke2011-07-011-4/+7
| | | | | This is useful for engines with own application.{js|css}-files. See: https://github.com/rails/rails/issues/1520
* Railties: added tests for rake assets:cleanJames A. Rosen2011-06-211-0/+14
|
* Create an :assets group in the Gemfile.José Valim2011-06-211-1/+13
| | | | | | | | | This group is required by default only on development and test (you can change it on config/application.rb). `rake assets:precompile` will automatically add the assets group to Rails.groups (and consequently Bundler.require) and should work transparently.
* Solve the RAILS_ENV problem in the railties tests in a more generic wayJon Leighton2011-06-061-0/+4
|
* Ensure Set-Cookie is not set on assets.José Valim2011-05-171-24/+25
|
* Add a test case for issue #476.José Valim2011-05-171-0/+31
|
* prepend the assets route instead of appending, closes #436José Valim2011-05-081-0/+27