aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support/core_ext/object/json.rb
diff options
context:
space:
mode:
authorGodfrey Chan <godfreykfc@gmail.com>2013-11-23 23:45:33 -0800
committerGodfrey Chan <godfreykfc@gmail.com>2013-11-26 09:51:51 -0800
commit6ef53181ebd2299ba8a3e0e605d955a43c9c6236 (patch)
tree8fe49cab6a58205c5f5ec5ceb7a220c026060bec /activesupport/lib/active_support/core_ext/object/json.rb
parentd4ef6c00298103144eeda3f5f40ead2f184afacb (diff)
downloadrails-6ef53181ebd2299ba8a3e0e605d955a43c9c6236.tar.gz
rails-6ef53181ebd2299ba8a3e0e605d955a43c9c6236.tar.bz2
rails-6ef53181ebd2299ba8a3e0e605d955a43c9c6236.zip
Process::Status should get a :nodoc: [ci skip]
Diffstat (limited to 'activesupport/lib/active_support/core_ext/object/json.rb')
-rw-r--r--activesupport/lib/active_support/core_ext/object/json.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/activesupport/lib/active_support/core_ext/object/json.rb b/activesupport/lib/active_support/core_ext/object/json.rb
index 75ab3db268..1675145ffe 100644
--- a/activesupport/lib/active_support/core_ext/object/json.rb
+++ b/activesupport/lib/active_support/core_ext/object/json.rb
@@ -190,7 +190,7 @@ class DateTime
end
end
-class Process::Status
+class Process::Status #:nodoc:
def as_json(options = nil)
{ :exitstatus => exitstatus, :pid => pid }
end