| Commit message (Expand) | Author | Age | Files | Lines |
... | |
* | Merge docrails: | Pratik Naik | 2008-05-09 | 1 | -3/+5 |
* | Improve documentation coverage and markup | Xavier Noria | 2008-05-02 | 1 | -2/+2 |
* | Made the location of the routes file configurable with config.routes_configur... | David Heinemeier Hansson | 2008-05-01 | 1 | -0/+10 |
* | Prevent AssetTagHelper from crashing if RAILS_ROOT is not defined. Fixes comp... | Hongli Lai (Phusion | 2008-05-01 | 1 | -2/+6 |
* | run prepare callbacks after after_initialize blocks so config.to_prepare actu... | Jeremy Kemper | 2008-04-28 | 1 | -3/+3 |
* | Be friendlier when upgrading apps with an old boot.rb. | John Barnette | 2008-04-28 | 1 | -0/+4 |
* | Refactor Dispatcher callbacks to remove unnecessary Dependencies checks in pr... | Pratik Naik | 2008-04-18 | 1 | -0/+9 |
* | Added Rails.public_path to control where HTML and assets are expected to be l... | David Heinemeier Hansson | 2008-04-13 | 1 | -0/+8 |
* | Don't require rails/gem_builder during rails initialization, it's only needed... | Rick Olson | 2008-04-08 | 1 | -1/+0 |
* | Flesh out rake gems:unpack to unpack all gems, and add rake gems:build for na... | Rick Olson | 2008-04-02 | 1 | -0/+1 |
* | Fix that config.to_prepare dependency error. Closes #10520 [akaspick, Pratik] | Pratik Naik | 2008-04-02 | 1 | -2/+4 |
* | spell check | Rick Olson | 2008-04-01 | 1 | -1/+1 |
* | Add config.active_support for future configuration options. Also, add more n... | Rick Olson | 2008-04-01 | 1 | -0/+7 |
* | Use class << self | David Heinemeier Hansson | 2008-04-01 | 1 | -18/+20 |
* | Add Rails.logger, Rails.root, Rails.env and Rails.cache shortcuts for RAILS_*... | Pratik Naik | 2008-04-01 | 1 | -0/+16 |
* | Allow files in plugins to be reloaded like the rest of the application. [rick] | Rick Olson | 2008-03-31 | 1 | -0/+16 |
* | whoops, typo in the CHANGELOG | Rick Olson | 2008-03-30 | 1 | -1/+1 |
* | Small tweak to allow plugins to specify gem dependencies. [rick] | Rick Olson | 2008-03-30 | 1 | -0/+5 |
* | Added config.gem for specifying which gems are required by the application, a... | Rick Olson | 2008-03-30 | 1 | -2/+43 |
* | config.time_zone and TimeWithZone#marshal_load accept tzinfo/Olson identifiers | Geoff Buesing | 2008-03-28 | 1 | -1/+1 |
* | Rails::Initializer#initialize_time_zone raises an error if value assigned to ... | Geoff Buesing | 2008-03-28 | 1 | -1/+7 |
* | Stop adding the antiquated test/mocks/* directories and only add them to the ... | David Heinemeier Hansson | 2008-03-27 | 1 | -1/+4 |
* | Added that gems can now be plugins if they include rails/init.rb (closes #114... | David Heinemeier Hansson | 2008-03-27 | 1 | -1/+24 |
* | Fixed that script/generate would not look for plugin generators in plugin_pat... | David Heinemeier Hansson | 2008-03-13 | 1 | -0/+11 |
* | Applied the faster squish version (closes #11123) [jordi] | David Heinemeier Hansson | 2008-03-13 | 1 | -1/+1 |
* | Add Time Zone support to ActiveRecord, and config.time_zone property for spec... | Rick Olson | 2008-02-06 | 1 | -0/+16 |
* | ensure that the after_initialize hooks are run after the application initiali... | Rick Olson | 2008-02-03 | 1 | -2/+2 |
* | Reshuffle load order so that routes and observers are initialized after plugi... | Rick Olson | 2008-02-02 | 1 | -6/+6 |
* | Use non-blocking writing if available. Closes #10794 [lifofifo] | Michael Koziarski | 2008-01-13 | 1 | -1/+4 |
* | Moved the caching stores from ActionController::Caching::Fragments::* to Acti... | David Heinemeier Hansson | 2008-01-03 | 1 | -30/+33 |
* | Ruby 1.9 compat: initializer only sets kcode for Ruby < 1.9 | Jeremy Kemper | 2007-12-22 | 1 | -4/+8 |
* | Fix typos (closes #10378) | David Heinemeier Hansson | 2007-12-05 | 1 | -2/+2 |
* | Refactor Plugin Loader. Add plugin lib paths early, and add lots of tests. ... | Rick Olson | 2007-11-08 | 1 | -21/+18 |
* | config.active_record.whiny_protected_attributes. Closes #9816 [henrik] | Jeremy Kemper | 2007-10-08 | 1 | -20/+0 |
* | Use a configuration check so ActiveRecord can be omitted. References #9699. | Jeremy Kemper | 2007-10-07 | 1 | -1/+3 |
* | Raise ProtectedAttributeAssignmentError in development and test environments ... | Jeremy Kemper | 2007-10-07 | 1 | -0/+18 |
* | Tidy up framework initialization code to ensure that it doesn't add folders t... | Michael Koziarski | 2007-10-04 | 1 | -10/+11 |
* | Added ActiveSupport::BufferedLogger as a duck-typing alternative (albeit with... | David Heinemeier Hansson | 2007-09-25 | 1 | -5/+6 |
* | Doc fixes (closes #8608) [deepblue] | David Heinemeier Hansson | 2007-09-22 | 1 | -12/+6 |
* | Doc fix (closes #9259) [caio] | David Heinemeier Hansson | 2007-09-22 | 1 | -1/+1 |
* | Added symbols as a legal way of specifying plugins in config.plugins (closes ... | David Heinemeier Hansson | 2007-09-22 | 1 | -1/+4 |
* | Added the :all option to config.plugins thatll include the rest of the plugin... | David Heinemeier Hansson | 2007-09-21 | 1 | -2/+5 |
* | Support multiple config.after_initialize blocks so plugins and apps can more ... | Jeremy Kemper | 2007-09-18 | 1 | -6/+8 |
* | Docfix (closes #8585) | David Heinemeier Hansson | 2007-06-23 | 1 | -1/+1 |
* | Docfix (closes #8715) | David Heinemeier Hansson | 2007-06-23 | 1 | -2/+2 |
* | Missed commit from [6833]. References #8456. | Jeremy Kemper | 2007-05-25 | 1 | -15/+0 |
* | Don't load observers if Active Record isn't loaded. | Jeremy Kemper | 2007-05-23 | 1 | -5/+8 |
* | Initializers are now loaded consistently sorted by name. Closes #8343 | Tobias Lütke | 2007-05-22 | 1 | -1/+1 |
* | Updated initializer to only load #{RAILS_ENV}.rb once. Added deprecation warn... | Nicholas Seckar | 2007-04-29 | 1 | -0/+13 |
* | Removed breakpointer and Binding.of_caller in favor of relying on ruby-debug ... | David Heinemeier Hansson | 2007-04-28 | 1 | -16/+0 |