1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00
rails--rails/activesupport/lib/active_support
2011-03-05 11:56:32 +01:00
..
cache remove to_s implementation so that inspect is helpful 2011-03-02 15:17:13 -08:00
core_ext Clarify comment by removing french reference ('a la'). Should improve readability for non-native english speakers. 2011-03-05 11:56:31 +01:00
dependencies Replace the placeholder base_hook API with on_load. To specify some code that 2010-03-29 17:08:50 -07:00
deprecation fixing whitespace errors 2011-01-12 18:07:53 -08:00
inflector Added a word boundary to uncountable inflection regex for #singularize so short inflections like ors do not affect larger words like sponsors [#6093 state:resolved] 2010-12-22 09:44:46 +01:00
json Updated the json date regex to recognize xmlschema formatted date times during json decoding. [#3031 state:resolved] 2011-02-12 13:30:30 -02:00
locale Deletes trailing whitespaces (over text files only find * -type f -exec sed 's/[ \t]*$//' -i {} \;) 2010-08-14 13:17:32 +02:00
log_subscriber Fix incorrect word. 2011-03-05 11:56:32 +01:00
multibyte save a few method calls 2010-10-22 17:31:28 -07:00
notifications Revert the previous three commits. 2010-07-25 20:46:42 +02:00
ruby Revert "Moved encoding work in progress to a feature branch." 2010-05-17 19:41:54 +04:00
testing GcTime incorrectly checks GC.respond_to?(:total_time), it should check GC::Profiler.respond_to?(:total_time) 2011-02-15 20:13:06 -02:00
time
values Fixed many references to the old config/environment.rb and Rails::Initializer 2010-07-13 13:00:21 +02:00
xml_mini fixed a missing require that causes trouble when using AS in a non-rails env. 2011-01-18 23:28:51 +01:00
all.rb AS json refactor, move to_json implementation to core_ext and a cleanup a bit the code 2010-07-01 12:04:11 -07:00
backtrace_cleaner.rb ActiveSupport::BacktraceCleaner#remove_filters! allows for completely untouched backtrace [#4079 state:resolved] 2010-04-10 14:06:10 +02:00
base64.rb Deletes trailing whitespaces (over text files only find * -type f -exec sed 's/[ \t]*$//' -i {} \;) 2010-08-14 13:17:32 +02:00
basic_object.rb
benchmarkable.rb Deletes trailing whitespaces (over text files only find * -type f -exec sed 's/[ \t]*$//' -i {} \;) 2010-08-14 13:17:32 +02:00
buffered_logger.rb fix mixed encoding logs can't be logged. 2010-07-19 14:55:58 -07:00
builder.rb Unforce builder from AS 2010-06-01 10:45:51 +02:00
cache.rb Merge branch 'master' of https://github.com/cylence/docrails into cylence-master 2010-11-29 21:36:43 +05:30
callbacks.rb Merge branch 'master' of git://github.com/lifo/docrails 2011-01-20 10:33:38 +01:00
concern.rb Fix the example in ActiveSupport::Concern 2010-12-17 18:54:57 -06:00
configurable.rb Make ActiveSupport::Configurable work with modules 2011-02-28 13:30:32 -02:00
core_ext.rb
dependencies.rb require deprecation so that we can deprecate methods! 2011-03-02 10:42:43 -08:00
deprecation.rb Implement deprecated version of AssociationReflection#primary_key_name, which has been renamed to #foreign_key. Also bumping the deprecation_horizon in Active Support to 3.1. 2011-01-03 16:24:32 -08:00
descendants_tracker.rb Don't shadow outer local variables 2010-07-22 15:48:52 -03:00
duration.rb Fix Duration#to_json 2010-12-29 22:20:14 +00:00
file_update_checker.rb Replace AD::Callbacks.to_prepare with AD::Reloader.to_prepare 2010-12-20 12:43:02 +01:00
file_watcher.rb use === so that regular expressions are not required 2011-02-08 10:48:01 -08:00
gzip.rb fixing indentation 2011-02-09 13:47:32 -08:00
hash_with_indifferent_access.rb Only convert direct hash instances in hash with indifferent access. 2010-11-26 11:56:52 +01:00
i18n.rb I18n is always loaded on boot by Active Model or Action Pack, so no need for supporting lazy hooks. 2010-11-20 19:39:57 +01:00
i18n_railtie.rb Ensure I18n setup is only executed once if triggered on eager loading [#6353 state:resolved] 2011-02-01 15:36:09 -02:00
inflections.rb handle double pluralization for irregular plurals 2011-02-16 15:08:25 -02:00
inflector.rb
json.rb
lazy_load_hooks.rb Whitespace and example identation 2010-08-15 02:22:38 +02:00
log_subscriber.rb Makes use of class << self instead of def self. 2010-08-15 08:41:39 -03:00
memoizable.rb memoized protected methods should remain protected 2010-09-24 20:31:12 -03:00
message_encryptor.rb Deletes trailing whitespaces (over text files only find * -type f -exec sed 's/[ \t]*$//' -i {} \;) 2010-08-14 13:17:32 +02:00
message_verifier.rb Deletes trailing whitespaces (over text files only find * -type f -exec sed 's/[ \t]*$//' -i {} \;) 2010-08-14 13:17:32 +02:00
multibyte.rb Deletes trailing whitespaces (over text files only find * -type f -exec sed 's/[ \t]*$//' -i {} \;) 2010-08-14 13:17:32 +02:00
notifications.rb fanout unsubscribe only accepted one argument, so taking *args here is probably bad 2011-02-09 14:33:56 -08:00
option_merger.rb
ordered_hash.rb fix OrderedHash#each* methods to return Enumerators when called without a block [#6366 state:resolved] 2011-02-03 19:26:36 -02:00
ordered_options.rb Remove redundant to_sym call. 2011-02-28 16:43:12 -02:00
railtie.rb add note of which configuration option to set in deprecation warning message [#5012 state:resolved] 2010-06-30 16:58:05 +02:00
rescuable.rb Whitespace and example identation 2010-08-15 02:22:38 +02:00
secure_random.rb replace if ! with unless 2010-10-17 12:26:32 -02:00
string_inquirer.rb
test_case.rb removing AS::Testing::Default in favor of just undefing default_test 2010-10-01 17:22:42 -07:00
time.rb Refactor move some date, time and date_time methods to */zones and fixed some requires 2010-07-03 02:13:44 -03:00
time_with_zone.rb refactored Time#<=> and DateTime#<=> by removing unnecessary calls without losing performance 2011-03-04 16:50:24 -02:00
version.rb Update the version.rb files to include a PRE part 2010-11-16 17:19:46 -08:00
whiny_nil.rb Make many parts of Rails lazy. In order to facilitate this, 2010-03-07 06:24:30 -08:00
xml_mini.rb add more tests surrounding camlize in xmlmini, refactor rename_key() 2010-11-03 11:02:42 -07:00