Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | On inpsect routes, show :controller and :action to indicate dynamic. | Hendy Tanata | 2011-10-29 | 1 | -7/+8 | |
| | ||||||
* | Added X-Request-Id tracking and TaggedLogging to easily log that and other ↵ | David Heinemeier Hansson | 2011-10-19 | 2 | -3/+3 | |
| | | | | production concerns | |||||
* | Provide initialize_on_precompile which, when set to false, does not ↵ | José Valim | 2011-10-02 | 1 | -13/+14 | |
| | | | | initialize the app for precompilation. Defaults to true. | |||||
* | Make the Rack::SSL middleware configurable | Justin Leitgeb | 2011-09-26 | 1 | -1/+3 | |
| | ||||||
* | `rake assets:precompile` loads the application but does not initialize it. | José Valim | 2011-09-24 | 1 | -8/+8 | |
| | | | | | | | | | | | | | To the app developer, this means configuration add in config/initializers/* will not be executed. Plugins developers need to special case their initializers that are meant to be run in the assets group by adding :group => :assets. Conflicts: railties/CHANGELOG railties/test/application/assets_test.rb | |||||
* | Default precompile regexp that properly matches application.js and ↵ | Alex Yakoubian | 2011-09-16 | 1 | -1/+1 | |
| | | | | application.css | |||||
* | adjust route inspection to work with Journey | Aaron Patterson | 2011-09-12 | 1 | -1/+2 | |
| | ||||||
* | Merge pull request #2876 from alex3/patch-1 | Santiago Pastorino | 2011-09-09 | 1 | -1/+2 | |
|\ | | | | | Fixed assets precompile regex | |||||
| * | Fixed assets precompile regex, now accepts Procs | Alex Yakoubian | 2011-09-08 | 1 | -1/+2 | |
| | | ||||||
* | | move route inspecting to an object so that we can more easily test it | Aaron Patterson | 2011-09-09 | 1 | -0/+42 | |
|/ | ||||||
* | Merge pull request #2780 from guilleiguaran/assets-pipeline-minor-changes | Santiago Pastorino | 2011-08-31 | 1 | -1/+1 | |
| | | | | Assets pipeline: fix in manifest location and remove unused code | |||||
* | Set default location of manifest with config.assets.manifest | Guillermo Iguaran | 2011-08-31 | 1 | -0/+1 | |
| | ||||||
* | Backport f443f9cb0c64 to master | Guillermo Iguaran | 2011-08-31 | 1 | -3/+2 | |
| | ||||||
* | Read digests of assets from manifest.yml if config.assets.manifest is on | Guillermo Iguaran | 2011-08-31 | 1 | -4/+5 | |
| | ||||||
* | only define the encoding reader since we define the writer later on | Aaron Patterson | 2011-08-24 | 1 | -1/+2 | |
| | ||||||
* | we are *sure* we want to set the encoding, so silence warnings around it | Aaron Patterson | 2011-08-24 | 1 | -2/+5 | |
| | ||||||
* | dealing with some -w warnings on startup | Aaron Patterson | 2011-08-24 | 1 | -1/+1 | |
| | ||||||
* | Add config.allow_debugging option to determine if the debug_assets query ↵ | Guillermo Iguaran | 2011-08-24 | 1 | -6/+7 | |
| | | | | param can be passed by user | |||||
* | Allow to debug assets by config.assets.debug | Andrey A.I. Sitnik | 2011-08-22 | 1 | -0/+1 | |
| | ||||||
* | Initialize config.assets.version the same way it's done in Sprockets | Santiago Pastorino | 2011-08-08 | 1 | -0/+1 | |
| | ||||||
* | Use cache/assets instead. | José Valim | 2011-07-12 | 1 | -1/+1 | |
| | ||||||
* | assets.cache_store now defaults to filesystem. You will want to share ↵ | José Valim | 2011-07-12 | 1 | -11/+2 | |
| | | | | tmp/assets_cache between deploys. | |||||
* | Now accepting css/js files in deeper directory structures by default. | Tobias Schlottke | 2011-07-01 | 1 | -1/+1 | |
| | | | | | This is useful for engines with own application.{js|css}-files. See: https://github.com/rails/rails/issues/1520 | |||||
* | Patch for #1458 - [3.1.0.rc1] App plugins initialized before engines | Joseph Wong | 2011-06-16 | 1 | -1/+1 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | and plugins inside engines It seems that plugins inside a Rails 3.1 application proper (i.e. in /vendor/plugins) are initialized before engines and plugins inside engines. After some debugging, I found the culprit in Rails::Application::Railties#all: def all(&block) @all ||= railties + engines + super @all.each(&block) if block @all end The call to super here implicitly passes the &block argument, which has the unfortunate side-effect of adding the plugin initializers first (in front of other railties and engines) in the case of Rails::Engine#initializers: def initializers initializers = [] railties.all { |r| initializers += r.initializers } initializers += super initializers end The solution here is to replace the super call with a call to #plugins. | |||||
* | Proper fix | David Heinemeier Hansson | 2011-05-12 | 1 | -1/+1 | |
| | ||||||
* | Fix the assets regexp for non-js/css files | David Heinemeier Hansson | 2011-05-12 | 1 | -1/+1 | |
| | ||||||
* | ADdd missing requires (thanks to @arunagw) | José Valim | 2011-05-07 | 1 | -1/+1 | |
| | ||||||
* | Always flush logger at exit | Jason Rudolph | 2011-05-06 | 1 | -0/+1 | |
| | | | | | | | | | | | | | | Prior to this change, running code via script/runner would demonstrate different logging behavior than running the same code via a rake task. In production mode the script/runner approach would always flush the logger, but the rake-based approach would not automatically flush the logger. This discrepancy violates the principle of least surprise, and it could lead to the loss of important production logging data. This change removes special-case code in the "runner" command, and replaces it with a general solution to ensure that the logger gets flushed at exit. This solution works for "runner", "console", "server", rake tasks, and any other process that loads the Rails environment. | |||||
* | Add static_cache_control as configuration option and set a default for test. ↵ | José Valim | 2011-05-03 | 1 | -1/+2 | |
| | | | | Should improve performance in acceptance tests. | |||||
* | Explicitly define main_app proxy | Piotr Sarnacki | 2011-04-25 | 1 | -0/+4 | |
| | ||||||
* | Add shorthand for js and css compressors | Joshua Peek | 2011-04-22 | 1 | -0/+3 | |
| | ||||||
* | Set a default precompile target to be the application.js, application.css, ↵ | David Heinemeier Hansson | 2011-04-19 | 1 | -1/+1 | |
| | | | | and all non-css/js files (images etc) | |||||
* | Move app initializers to sprockets railtie. | José Valim | 2011-04-17 | 1 | -16/+2 | |
| | ||||||
* | Remove the ability for engines to serve assets from the public directory. | José Valim | 2011-04-15 | 1 | -7/+9 | |
| | ||||||
* | Booya, sprockets now works from Engines. | José Valim | 2011-04-15 | 1 | -6/+1 | |
| | ||||||
* | Index sprockets environment if perform caching is enabled | Joshua Peek | 2011-04-12 | 1 | -0/+6 | |
| | ||||||
* | Unify sprockets config options | Joshua Peek | 2011-03-30 | 2 | -6/+11 | |
| | ||||||
* | Merge branch 'master' into sprockets | Joshua Peek | 2011-03-30 | 1 | -1/+2 | |
|\ | | | | | | | | | Conflicts: railties/lib/rails/application/configuration.rb | |||||
| * | Add `config.force_ssl` configuration which will load `Rack::SSL` middleware ↵ | Prem Sichanugrist | 2011-03-27 | 1 | -1/+2 | |
| | | | | | | | | | | | | | | | | if set to true This will allow user to be able to force all requests to be under HTTPS protocol. This commit was a request from DHH. Special thanks to Josh Peek as well for making `Rack::SSL`. | |||||
* | | Precompile configured assets | Joshua Peek | 2011-03-29 | 1 | -2/+2 | |
| | | ||||||
* | | Rename option to config.asset_pipeline | Joshua Peek | 2011-03-29 | 2 | -3/+9 | |
| | | ||||||
* | | Move sprockets initializers back to application | Joshua Peek | 2011-03-29 | 2 | -1/+12 | |
| | | ||||||
* | | Add use_sprockets flag | Joshua Peek | 2011-03-28 | 1 | -3/+1 | |
| | | ||||||
* | | Add sprockets task to compile assets | Joshua Peek | 2011-03-21 | 1 | -1/+3 | |
|/ | ||||||
* | only define log_level reader once, make sure to initialize @log_level | Aaron Patterson | 2011-01-05 | 1 | -11/+14 | |
| | ||||||
* | Use AD::Reloader.to_cleanup for reloading [#2873 state:resolved] | John Firebaugh | 2010-12-20 | 1 | -5/+3 | |
| | | | | Signed-off-by: José Valim <jose.valim@gmail.com> | |||||
* | Replace AD::Callbacks.to_prepare with AD::Reloader.to_prepare | John Firebaugh | 2010-12-20 | 1 | -2/+6 | |
| | | | | Signed-off-by: José Valim <jose.valim@gmail.com> | |||||
* | Merge remote branch 'drogus/dummy_tasks' | José Valim | 2010-12-09 | 1 | -8/+0 | |
|\ | | | | | | | Signed-off-by: José Valim <jose.valim@gmail.com> | |||||
| * | Rails::Engine.find(path) - method to find engine by path | Piotr Sarnacki | 2010-12-09 | 1 | -8/+0 | |
| | | ||||||
* | | Clean up asset_host and asset_path. | José Valim | 2010-12-09 | 1 | -16/+3 | |
|/ |