diff options
author | Evgenii Pecherkin <e.pecherkin@gmail.com> | 2017-10-23 17:29:28 +0400 |
---|---|---|
committer | Rafael Mendonça França <rafaelmfranca@gmail.com> | 2018-02-14 13:10:07 -0500 |
commit | 3785a5729959a838bb13f2d298a59e12e1844f74 (patch) | |
tree | 6f2e5d536e79a00a7650cbdcf2afe42ca2bd3389 /guides/source | |
parent | e360ac12315ed6b9eadca5bcc0d95dc766ba8523 (diff) | |
download | rails-3785a5729959a838bb13f2d298a59e12e1844f74.tar.gz rails-3785a5729959a838bb13f2d298a59e12e1844f74.tar.bz2 rails-3785a5729959a838bb13f2d298a59e12e1844f74.zip |
Remove non-default serializers
Diffstat (limited to 'guides/source')
-rw-r--r-- | guides/source/active_job_basics.md | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/guides/source/active_job_basics.md b/guides/source/active_job_basics.md index a7067cb97d..eea64f9367 100644 --- a/guides/source/active_job_basics.md +++ b/guides/source/active_job_basics.md @@ -345,10 +345,6 @@ Supported types for arguments ActiveJob supports the following types of arguments by default: - Basic types (`NilClass`, `String`, `Integer`, `Fixnum`, `Bignum`, `Float`, `BigDecimal`, `TrueClass`, `FalseClass`) - - `Symbol` (`:foo`, `:bar`, ...) - - `ActiveSupport::Duration` (`1.day`, `2.weeks`, ...) - - Classes constants (`ActiveRecord::Base`, `MySpecialService`, ...) - - Struct instances (`Struct.new('Rectangle', :width, :height).new(12, 20)`, ...) - `Hash`. Keys should be of `String` or `Symbol` type - `ActiveSupport::HashWithIndifferentAccess` - `Array` |