aboutsummaryrefslogtreecommitdiffstats
path: root/railties/lib/initializer.rb
Commit message (Expand)AuthorAgeFilesLines
* Allow files in plugins to be reloaded like the rest of the application. [rick]Rick Olson2008-03-311-0/+16
* whoops, typo in the CHANGELOGRick Olson2008-03-301-1/+1
* Small tweak to allow plugins to specify gem dependencies. [rick]Rick Olson2008-03-301-0/+5
* Added config.gem for specifying which gems are required by the application, a...Rick Olson2008-03-301-2/+43
* config.time_zone and TimeWithZone#marshal_load accept tzinfo/Olson identifiersGeoff Buesing2008-03-281-1/+1
* Rails::Initializer#initialize_time_zone raises an error if value assigned to ...Geoff Buesing2008-03-281-1/+7
* Stop adding the antiquated test/mocks/* directories and only add them to the ...David Heinemeier Hansson2008-03-271-1/+4
* Added that gems can now be plugins if they include rails/init.rb (closes #114...David Heinemeier Hansson2008-03-271-1/+24
* Fixed that script/generate would not look for plugin generators in plugin_pat...David Heinemeier Hansson2008-03-131-0/+11
* Applied the faster squish version (closes #11123) [jordi]David Heinemeier Hansson2008-03-131-1/+1
* Add Time Zone support to ActiveRecord, and config.time_zone property for spec...Rick Olson2008-02-061-0/+16
* ensure that the after_initialize hooks are run after the application initiali...Rick Olson2008-02-031-2/+2
* Reshuffle load order so that routes and observers are initialized after plugi...Rick Olson2008-02-021-6/+6
* Use non-blocking writing if available. Closes #10794 [lifofifo]Michael Koziarski2008-01-131-1/+4
* Moved the caching stores from ActionController::Caching::Fragments::* to Acti...David Heinemeier Hansson2008-01-031-30/+33
* Ruby 1.9 compat: initializer only sets kcode for Ruby < 1.9Jeremy Kemper2007-12-221-4/+8
* Fix typos (closes #10378)David Heinemeier Hansson2007-12-051-2/+2
* Refactor Plugin Loader. Add plugin lib paths early, and add lots of tests. ...Rick Olson2007-11-081-21/+18
* config.active_record.whiny_protected_attributes. Closes #9816 [henrik]Jeremy Kemper2007-10-081-20/+0
* Use a configuration check so ActiveRecord can be omitted. References #9699.Jeremy Kemper2007-10-071-1/+3
* Raise ProtectedAttributeAssignmentError in development and test environments ...Jeremy Kemper2007-10-071-0/+18
* Tidy up framework initialization code to ensure that it doesn't add folders t...Michael Koziarski2007-10-041-10/+11
* Added ActiveSupport::BufferedLogger as a duck-typing alternative (albeit with...David Heinemeier Hansson2007-09-251-5/+6
* Doc fixes (closes #8608) [deepblue]David Heinemeier Hansson2007-09-221-12/+6
* Doc fix (closes #9259) [caio]David Heinemeier Hansson2007-09-221-1/+1
* Added symbols as a legal way of specifying plugins in config.plugins (closes ...David Heinemeier Hansson2007-09-221-1/+4
* Added the :all option to config.plugins thatll include the rest of the plugin...David Heinemeier Hansson2007-09-211-2/+5
* Support multiple config.after_initialize blocks so plugins and apps can more ...Jeremy Kemper2007-09-181-6/+8
* Docfix (closes #8585)David Heinemeier Hansson2007-06-231-1/+1
* Docfix (closes #8715)David Heinemeier Hansson2007-06-231-2/+2
* Missed commit from [6833]. References #8456.Jeremy Kemper2007-05-251-15/+0
* Don't load observers if Active Record isn't loaded.Jeremy Kemper2007-05-231-5/+8
* Initializers are now loaded consistently sorted by name. Closes #8343Tobias Lütke2007-05-221-1/+1
* Updated initializer to only load #{RAILS_ENV}.rb once. Added deprecation warn...Nicholas Seckar2007-04-291-0/+13
* Removed breakpointer and Binding.of_caller in favor of relying on ruby-debug ...David Heinemeier Hansson2007-04-281-16/+0
* Include Active Resource instead of Action Web Service [DHH]David Heinemeier Hansson2007-04-231-8/+7
* Introduce RELATIVE_RAILS_ROOT and changed spawner script to use it. Prior to ...Tobias Lütke2007-04-161-1/+2
* Canonicalize configuration.root_path and replace RAILS_ROOT.Jeremy Kemper2007-03-291-0/+2
* documentation project patches, closes #7342, #7319, #7316, #7190 [jeremymcana...Rick Olson2007-03-271-0/+2
* Deprecation: remove components from controller paths. Canonicalize RAILS_ROO...Jeremy Kemper2007-03-181-19/+40
* Move plugin classes into the rails directory to match their namespaceMarcel Molina2007-03-031-2/+2
* Move responsibility for ensuring that all registered gems were loaded from th...Marcel Molina2007-03-031-0/+11
* Split out the basic plugin locator functionality into an abstract super class...Marcel Molina2007-03-021-5/+18
* Split plugin location and loading out of the initializer and into a new Plugi...Marcel Molina2007-03-021-81/+17
* Added config/initializers where all ruby files within it are automatically lo...David Heinemeier Hansson2007-02-231-0/+10
* Fix Rails::Initializer since #view_paths is never nilRick Olson2007-02-041-2/+2
* Update Rails Initializer to use ActionController::Base#view_paths [Rick]Rick Olson2007-02-041-5/+4
* Ensure plugins are in the Dependencies.load_once_paths collection by default....Rick Olson2006-12-271-4/+3
* Allow config.to_prepare to work, make the dispatcher safe to 're require'. [K...Michael Koziarski2006-12-261-0/+1
* Reapply plugin load path changes from [5720]Michael Koziarski2006-12-181-7/+22