rails/activesupport/lib/active_support
Alexey Chernenkov 0e953c94b1 Unify cattr_* interface: allow to pass a block to cattr_reader.
Example:

    class A
      cattr_reader(:defr) { 'default_reader_value' }
    end
    A.defr # => 'default_reader_value'
2013-11-15 19:54:51 +06:00
..
cache Stop using method missing for singleton delegation. 2013-11-06 16:32:47 -08:00
concurrency added live responses which can be written and read in separate threads 2012-07-29 21:43:05 -07:00
core_ext Unify cattr_* interface: allow to pass a block to cattr_reader. 2013-11-15 19:54:51 +06:00
dependencies remove unnecessary always-nil var from #compact 2013-01-01 20:35:43 +03:00
deprecation renames the :abort deprecation behaviour to :raise 2013-08-13 01:44:52 +02:00
inflector Add +capitalize+ option to Inflector.humanize 2013-11-06 13:03:46 -08:00
json Move the JSON extension require statements to the right place. 2013-11-06 18:18:06 -08:00
locale Remove i18n symbol dependency 2013-01-17 15:21:26 +00:00
log_subscriber Add missing require 2013-07-01 20:49:17 -03:00
multibyte Initializing Codepoint object with default values 2013-09-20 12:50:15 +05:30
notifications use a thread local rather than a queue so events are in the right order 2013-10-30 10:33:36 -07:00
testing Fix ActiveSupport::Testing::Isolation on jruby 2013-08-02 00:06:26 -04:00
values Add Chatham Islands Time (UTC+1245) support. 2013-04-12 11:28:12 -04:00
xml_mini change merge to merge! in AS on new hashes 2013-04-02 11:13:56 +05:30
all.rb Clean up require ‘active_support/deprecation’ and remove circular require 2013-11-14 12:59:56 +04:00
backtrace_cleaner.rb Fix BacktraceCleaner#noise for multiple silencers. 2013-06-20 19:54:32 +01:00
benchmarkable.rb Remove ActiveSupport::Benchmarkable#silence was deprecated. 2013-06-01 21:23:19 +09:00
builder.rb Unforce builder from AS 2010-06-01 10:45:51 +02:00
cache.rb Aesthetics 2013-11-03 12:41:58 -08:00
callbacks.rb Fix typo in set_callback docs. [ci skip] 2013-09-06 11:53:17 +03:00
concern.rb Use symbols instead of strings 2013-06-10 23:22:08 -04:00
configurable.rb Replace comments' non-breaking spaces with spaces 2012-12-04 22:11:54 -08:00
core_ext.rb Remove deprecated Logger core extensions (core_ext/logger.rb) 2013-07-03 13:54:34 -03:00
dependencies.rb Add missed require making enable_warnings available 2013-10-15 15:00:06 +04:00
deprecation.rb Changing deprecation_horizon to be Rails 4.2 2013-08-24 23:34:43 -04:00
descendants_tracker.rb Make DescendantsTracker thread safe and optimize the #descendants method. 2012-10-18 12:08:01 -07:00
duration.rb Revert "Merge pull request #12480 from iwiznia/master" 2013-10-11 13:05:29 -07:00
file_update_checker.rb clean up some warnings on trunk ruby 2013-10-31 11:47:51 -07:00
file_watcher.rb use === so that regular expressions are not required 2011-02-08 10:48:01 -08:00
gzip.rb added compress options for gzip 2013-02-10 20:01:42 +09:00
hash_with_indifferent_access.rb Make HashWithIndifferentAccess#select always return the hash. 2013-07-06 15:56:07 +02:00
i18n_railtie.rb update AS docs [ci skip] 2012-09-17 00:22:18 -05:00
i18n.rb Require different core extensions correctly. 2013-05-09 12:32:02 +05:30
inflections.rb Don't have a cow, man! 2013-07-30 08:13:03 +01:00
inflector.rb Break up inflector to reduce the dependency burden on dependency-les methods like constantize. 2009-11-07 11:23:21 -08:00
json.rb JSON: split encoding and coercion 2009-06-08 13:21:30 -07:00
key_generator.rb changed rails -> Rails at two places 2013-05-09 23:27:15 +05:30
lazy_load_hooks.rb changed rails -> Rails at two places 2013-05-09 23:27:15 +05:30
log_subscriber.rb Extract a base class from ActiveSupport::LogSubscriber 2013-04-16 14:39:22 +02:00
logger_silence.rb Revert "Make sure that ActiveSupport::Logger includes the Logger extensions from core_ext/logger" (some confusion over deprecation) 2012-12-21 19:35:10 +01:00
logger.rb Revert "Make sure that ActiveSupport::Logger includes the Logger extensions from core_ext/logger" (some confusion over deprecation) 2012-12-21 19:35:10 +01:00
message_encryptor.rb Merge pull request #9980 from stouset/patch-1 2013-04-26 07:26:00 -07:00
message_verifier.rb Updated docs due to removal of serializer accessor 2013-03-24 15:46:46 -03:00
multibyte.rb Replace comments' non-breaking spaces with spaces 2012-12-04 22:11:54 -08:00
notifications.rb Stop using method missing for singleton delegation. 2013-11-06 16:32:47 -08:00
number_helper.rb Minor Refactoring to NumberHelper#number_to_human 2013-10-14 23:52:06 +05:30
option_merger.rb Explicit dependency on Hash#deep_merge extension 2009-03-28 23:52:46 -07:00
ordered_hash.rb update AS:OrderedHash docs 2012-05-16 14:44:57 -05:00
ordered_options.rb Fixed grammar error in ordered_options documention. 2013-08-17 04:42:15 -07:00
per_thread_registry.rb Stop using method missing for singleton delegation. 2013-11-06 16:32:47 -08:00
proxy_object.rb fix reference to ActiveSupport::ProxyObject 2013-01-13 23:59:14 -06:00
rails.rb removes usage of Object#in? from the code base (the method remains defined by Active Support) 2012-08-06 00:30:02 +02:00
railtie.rb Revert "Set the default timezone after the initialization since the configuration" 2013-01-22 09:29:20 -02:00
rescuable.rb Remove deprecated Proc#bind with no replacement. 2013-07-01 22:38:28 -03:00
string_inquirer.rb update AS docs [ci skip] 2012-09-17 00:22:18 -05:00
subscriber.rb Stop using method missing for singleton delegation. 2013-11-06 16:32:47 -08:00
tagged_logging.rb Revert "make new rails apps log to STDOUT" 2013-03-15 10:38:00 -07:00
test_case.rb Use the method provided by minitest to make tests order dependent 2013-11-09 17:07:26 -05:00
time_with_zone.rb Fix AS::TimeWithZone#as_json docs 2013-11-07 11:18:52 +02:00
time.rb Clean up 'active_support/time' requires 2012-12-11 12:23:30 +00:00
version.rb rails/master is now 4.1.0.beta 2013-04-29 13:15:24 -03:00
xml_mini.rb Revert "Removing obsolete html tags in favor of markdown code block" 2013-08-06 22:16:03 +03:00