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
2016-06-09 22:10:47 -04:00
..
cache Pass over all Rails 5 warnings, to make sure: 2016-04-12 02:26:56 +05:30
concurrency Share lock: more accurate livelock fix for aa598f4 2016-04-24 10:14:53 -07:00
core_ext Merge pull request #25265 from opti/improve/hash_compact 2016-06-07 19:46:30 +02:00
dependencies Publish AS::Executor and AS::Reloader APIs 2016-03-02 02:14:20 +10:30
deprecation behaviour --> behavior 2016-05-27 22:10:45 -04:00
duration ActiveSupport::Duration supports ISO8601 formatting and parsing. 2016-04-18 16:27:30 -07:00
inflector Fix method String#upcase_first 2016-03-31 19:52:10 +03:00
json Escape HTML entities in JSON keys 2015-06-16 17:27:48 -03:00
locale Add support for Petabyte and Exabyte in number to human size 2015-12-22 23:07:06 +05:30
log_subscriber Update docs/comments to use setup/teardown blocks vs. methods. 2015-11-04 11:15:51 -05:00
multibyte Merge pull request #12877 from aroben/extended-graphemes 2015-12-31 03:04:16 -02:00
notifications Adds exception object to instrumenter's payload 2015-12-31 01:48:22 -06:00
number_helper Freezing couple of more string '0' & '.' and using the string appending to do the same string manipulation. This was we avoid the duplicate strings with freeze and append modifies existing string 2016-04-11 13:25:04 -07:00
testing Extract line filtering to Railties. 2016-01-09 17:21:21 +01:00
values Do not cache ActiveSupport::TimeZone#utc_offset 2016-04-25 20:55:33 -05:00
xml_mini Fix Hash#from_xml with frozen strings (#24718) 2016-05-21 09:14:22 -03:00
all.rb
array_inquirer.rb - Added clarity to documentation of ArrayInquirer#any? [ci skip] 2016-05-11 20:03:18 +05:30
backtrace_cleaner.rb Fix thoughtbot capitalization 2015-06-05 11:29:03 +02:00
benchmarkable.rb Make benchmark('something', silence: true) actually work 2016-02-20 18:41:33 +01:00
builder.rb
cache.rb Change doc for race_condition_ttl option of ActiveSupport::Cache::Store#fetch [ci skip] 2016-06-06 09:25:18 +03:00
callbacks.rb Specify that behavior will be deprecated in Rails 5.1 2016-04-17 15:04:10 -04:00
concern.rb Fix for #20489 - ActiveSupport::Concern#class_methods affects parent classes 2015-06-12 17:35:21 +02:00
configurable.rb Privatize config_accessor as with attr_accessor 2015-02-06 01:12:07 +09:00
core_ext.rb Remove Struct#to_h backport 2015-01-04 16:20:18 -03:00
dependencies.rb Improve code readability in ActiveSupport::Dependencies 2016-03-16 10:51:19 +01:00
deprecation.rb Bump the deprecation horizon 2016-05-10 03:46:56 -03:00
descendants_tracker.rb
duration.rb Change 1.week to create 1 week durations instead of 7 days durations. 2016-04-28 03:45:05 +03:00
evented_file_update_checker.rb fix boot performance issue 2016-04-22 09:17:05 -07:00
execution_wrapper.rb Directly support stateful executor hooks 2016-04-05 06:57:01 +09:30
executor.rb Publish AS::Executor and AS::Reloader APIs 2016-03-02 02:14:20 +10:30
file_update_checker.rb Remove time calculatiosn extension 2016-04-13 01:31:50 -03:00
gem_version.rb Start Rails 5.1 development 🎉 2016-05-10 03:46:56 -03:00
gzip.rb
hash_with_indifferent_access.rb Fix regression in Hash#dig for HashWithIndifferentAccess. 2016-02-01 21:49:13 -05:00
i18n.rb
i18n_railtie.rb Publish AS::Executor and AS::Reloader APIs 2016-03-02 02:14:20 +10:30
inflections.rb
inflector.rb
json.rb
key_generator.rb Require only necessary concurrent-ruby classes. 2015-11-04 21:12:28 -05:00
lazy_load_hooks.rb
log_subscriber.rb Remove wrong period mark in ActiveSupport::LogSubscriber docs [ci skip] 2015-10-11 22:44:32 +05:30
logger.rb Broadcast #silence on logger. Rewrite tests. 2016-06-09 22:10:47 -04:00
logger_silence.rb Fix logger silencing for broadcasted loggers 2016-02-11 21:00:51 +01:00
logger_thread_safe_level.rb Make internal class as nodoc 2016-02-24 10:25:59 -03:00
message_encryptor.rb use OpenSSL::Cipher instead of deprecated OpenSSL::Cipher::Cipher for cipher creation. 2016-05-29 19:49:16 -07:00
message_verifier.rb Missing documentation about hash algorithm option for MessageVerifier [ci skip] 2016-02-18 14:42:48 +02:00
multibyte.rb
notifications.rb [ci skip] Add description about which object 2015-09-02 21:51:06 +09:00
number_helper.rb number_to_phone formats number with regexp 2016-04-02 20:13:22 +08:00
option_merger.rb
ordered_hash.rb Add a commend about deprecation of ActiveSupport::OrderedHash 2015-12-20 01:43:20 -02:00
ordered_options.rb Improved KeyError messages on bang version, since commit e768c519fb bang version produces KeyError [ci skip] 2015-10-11 02:40:29 +05:30
per_thread_registry.rb Add thread_m/cattr_accessor/reader/writer suite of methods for declaring class and module variables that live per-thread 2015-12-17 14:28:19 +01:00
proxy_object.rb
rails.rb [ci skip] Update ActiveSupport::Rails and ActiveSupport::Rescuable docs 2015-04-26 15:38:52 -04:00
railtie.rb Use "rake time:zones:all" instead of "rake -D time" [ci skip] 2015-10-17 09:17:42 +03:00
reloader.rb Directly support stateful executor hooks 2016-04-05 06:57:01 +09:30
rescuable.rb Action Mailer: Declarative exception handling with rescue_from. 2016-05-15 18:44:16 -07:00
security_utils.rb use secure string comparisons for basic auth username / password 2016-01-22 14:55:14 -08:00
string_inquirer.rb Doc fix [ci skip] 2015-03-05 10:05:34 +05:30
subscriber.rb Merge pull request #19902 from khundawg/dm-active-support-subsciber-doc 2015-04-25 21:44:36 -05:00
tagged_logging.rb Doc fix [ci skip] 2015-03-05 11:32:51 +05:30
test_case.rb Fix assert_nothing_raised deprecation warning format 2016-02-24 09:21:06 +09:00
time.rb
time_with_zone.rb Make getlocal and getutc always return instances of Time 2016-04-23 19:34:54 +01:00
version.rb
xml_mini.rb Support for unified Integer class in Ruby 2.4+ 2016-05-18 21:58:51 -07:00