Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Fixed small typo in the Rails::Engine documentation. | Rafael Valverde | 2011-12-15 | 1 | -1/+1 |
| | |||||
* | seed file was already tested for existence. ಠ_ಠ | Aaron Patterson | 2011-12-14 | 1 | -1/+1 |
| | |||||
* | Revert "Provide a unique point for running initializers." | José Valim | 2011-12-13 | 1 | -2/+4 |
| | | | | | | | | | | This reverts commit c2e3ce8d1e1174e66536d59d8d97eb2cc8ce6f25. Conflicts: railties/lib/rails/application/configuration.rb railties/lib/rails/application/finisher.rb railties/lib/rails/engine.rb | ||||
* | Speed up development by only reloading classes if dependencies files changed. | José Valim | 2011-12-12 | 1 | -1/+1 |
| | | | | | | | | This can be turned off by setting `config.reload_classes_only_on_change` to false. Extensions like Active Record should add their respective files like db/schema.rb and db/structure.sql to `config.watchable_files` if they want their changes to affect classes reloading. Thanks to https://github.com/paneq/active_reload and Pastorino for the inspiration. <3 | ||||
* | Provide a unique point for running initializers. | José Valim | 2011-12-12 | 1 | -4/+2 |
| | |||||
* | Allow to change engine's loading priority with config.railties_order= | Piotr Sarnacki | 2011-11-23 | 1 | -2/+22 |
| | |||||
* | Rely on a public contract between railties instead of accessing railtie ↵ | José Valim | 2011-11-23 | 1 | -17/+26 |
| | | | | methods directly. | ||||
* | fixed example code indentation | Wojciech Wnętrzak | 2011-11-10 | 1 | -6/+6 |
| | |||||
* | Removing db/seeds.rb is fine. Don't blow up. | Jeremy Kemper | 2011-10-29 | 1 | -1/+1 |
| | |||||
* | :group => :assets should only run in the assets environment. | José Valim | 2011-10-02 | 1 | -1/+1 |
| | |||||
* | `rake assets:precompile` loads the application but does not initialize it. | José Valim | 2011-09-24 | 1 | -2/+2 |
| | | | | | | | | | | | | | 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 | ||||
* | dealing with some -w warnings on startup | Aaron Patterson | 2011-08-24 | 1 | -0/+1 |
| | |||||
* | Merge pull request #2324 from zenapsis/3-1-stable | Santiago Pastorino | 2011-08-01 | 1 | -3/+3 |
| | | | | Rails 3.1 throws a Errno::ENOTDIR if files are put in assets directories | ||||
* | Changed a few instances of of words in the API docs written in British ↵ | Oemuer Oezkir | 2011-07-24 | 1 | -5/+5 |
| | | | | | | English to American English(according to Weber) | ||||
* | little details seen while doing a pass through what's new in docrails | Xavier Noria | 2011-07-23 | 1 | -1/+2 |
| | |||||
* | spacing fix | Vijay Dev | 2011-07-20 | 1 | -1/+1 |
| | |||||
* | misc grammar and clarity changes for rails/engine docs | Matt Jankowski | 2011-07-12 | 1 | -26/+29 |
| | |||||
* | Fix has_migrations? check in Rails::Engine | Sam Pohlenz | 2011-07-03 | 1 | -1/+1 |
| | |||||
* | OrderedOptions must implement respond_to? if it implements method_missing. | Chris Eppstein | 2011-06-27 | 1 | -9/+3 |
| | |||||
* | Cherry-picking patch for https://github.com/rails/rails/issues/1460 | Joseph Wong | 2011-06-16 | 1 | -2/+10 |
| | | | | | | | | | | | | | | | | | | | | | | | from 3-1-stable to master [3.1.0.rc1] Plugins inside engines not eager-loaded properly and their rake tasks ignored Working with the new support for plugins inside engines in Rails 3.1, I found that certain things that work for regular plugins don't work for these new nested plugins. In particular, these methods in Rails::Engine don't seem to understand that an engine could have nested plugins: #load_tasks #load_generators #load_console #eager_load! A solution which worked out for me is to move the calls to railties.all { ... } from the overriding methods in Rails::Application into Rails::Engine. | ||||
* | Move load_generators from Rails::Application to Rails::Engine | Stefan Sprenger | 2011-05-26 | 1 | -0/+12 |
| | |||||
* | Merge branch 'master' of git://github.com/lifo/docrails | Xavier Noria | 2011-05-25 | 1 | -3/+3 |
|\ | | | | | | | | | | | Conflicts: actionmailer/lib/action_mailer/base.rb activesupport/lib/active_support/core_ext/kernel/requires.rb | ||||
| * | Minor typo describing engine helpers | Matthew Daubert | 2011-05-22 | 1 | -2/+2 |
| | | |||||
| * | Remove duplicate words. | Uģis Ozols | 2011-05-20 | 1 | -1/+1 |
| | | |||||
* | | Everyone receives app as argument for consistency. | José Valim | 2011-05-25 | 1 | -1/+1 |
| | | |||||
* | | Use sprockets prepend_path if its available | Joshua Peek | 2011-05-19 | 1 | -3/+9 |
|/ | |||||
* | parenthesize the arguments with splat | Akira Matsuda | 2011-05-18 | 1 | -3/+3 |
| | | | | to make sure we're not calling the :* operator | ||||
* | Include lib/assets for sprocket paths | David Heinemeier Hansson | 2011-05-10 | 1 | -0/+1 |
| | |||||
* | formatting results in comments | Vijay Dev | 2011-05-04 | 1 | -16/+16 |
| | |||||
* | Make ActionController::Base.modules_for_helpers and ↵ | Piotr Sarnacki | 2011-04-25 | 1 | -2/+2 |
| | | | | ActionController::Base.all_helpers_from_path public methods | ||||
* | Add Engine#helpers method which loads all the engine's helpers | Piotr Sarnacki | 2011-04-25 | 1 | -0/+39 |
| | |||||
* | Remove the ability for engines to serve assets from the public directory. | José Valim | 2011-04-15 | 1 | -67/+7 |
| | |||||
* | Fix tests. | José Valim | 2011-04-15 | 1 | -13/+24 |
| | |||||
* | Booya, sprockets now works from Engines. | José Valim | 2011-04-15 | 1 | -0/+5 |
| | |||||
* | Engines that use isolate_namespace with nested modules should set correct ↵ | Rolf Timmermans | 2011-03-28 | 1 | -2/+2 |
| | | | | module prefix for their routes. | ||||
* | refactored Engine.#find by giving an explicit name to a variable and ↵ | Diego Carrion | 2011-03-09 | 1 | -3/+3 |
| | | | | | | | | reducing calls [#6529 state:committed] Signed-off-by: Santiago Pastorino <santiago@wyeworks.com> | ||||
* | Railties typos. | R.T. Lechow | 2011-03-05 | 1 | -3/+3 |
| | |||||
* | only compute path.to_s once | Aaron Patterson | 2011-03-02 | 1 | -1/+4 |
| | |||||
* | Make all references to engines lowercase in docs. | Matt Buck | 2011-01-19 | 1 | -36/+36 |
| | |||||
* | Copy-edit and format Rails::Engine docs. | Matt Buck | 2011-01-14 | 1 | -85/+93 |
| | |||||
* | Should be isolated engine instead of namespaced engine | Piotr Sarnacki | 2010-12-16 | 1 | -1/+1 |
| | |||||
* | Ensure asset_path defaults to nil for application | José Valim | 2010-12-09 | 1 | -1/+6 |
| | |||||
* | Rails::Engine.find(path) - method to find engine by path | Piotr Sarnacki | 2010-12-09 | 1 | -0/+5 |
| | |||||
* | Do not create table_name_prefix method on isolated module if the method ↵ | Piotr Sarnacki | 2010-11-22 | 1 | -2/+4 |
| | | | | | | already exists. Signed-off-by: José Valim <jose.valim@gmail.com> | ||||
* | There is no need to make isolated? method with bang-bang, just alias isolated | Piotr Sarnacki | 2010-11-16 | 1 | -4/+1 |
| | |||||
* | Add missing autoload. | José Valim | 2010-11-11 | 1 | -0/+1 |
| | |||||
* | Remove unused Configurable in Rails::Engine and Rails::Application. Remove ↵ | zhengjia | 2010-11-11 | 1 | -1/+0 |
| | | | | | | unnecessary railties load path in cli [#5871 state:resolved] Signed-off-by: José Valim <jose.valim@gmail.com> | ||||
* | delete from :number until the end | Santiago Pastorino | 2010-10-15 | 1 | -1/+1 |
| | |||||
* | Removed duplicated method find_root_with_flag | Piotr Sarnacki | 2010-10-15 | 1 | -15/+0 |
| | | | | Signed-off-by: Santiago Pastorino <santiago@wyeworks.com> | ||||
* | in regexps, the dot in a character class is not a metacharacter | Xavier Noria | 2010-10-15 | 1 | -1/+1 |
| |