aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support/json/variable.rb
diff options
context:
space:
mode:
authorErich Menge <erich.menge@me.com>2012-05-30 12:18:29 -0500
committerErich Menge <erich.menge@me.com>2012-05-30 14:39:00 -0500
commit1f5dddcf2fb05f460c13f2ea32c81033ca6b14de (patch)
treeabffb19f16f4b336e6df92557012a82b7b94e439 /activesupport/lib/active_support/json/variable.rb
parent0406a13fac7f809cb511e45583259e66d8739b4f (diff)
downloadrails-1f5dddcf2fb05f460c13f2ea32c81033ca6b14de.tar.gz
rails-1f5dddcf2fb05f460c13f2ea32c81033ca6b14de.tar.bz2
rails-1f5dddcf2fb05f460c13f2ea32c81033ca6b14de.zip
Remove deprecated ActiveSupport::JSON::Variable.
Diffstat (limited to 'activesupport/lib/active_support/json/variable.rb')
-rw-r--r--activesupport/lib/active_support/json/variable.rb9
1 files changed, 0 insertions, 9 deletions
diff --git a/activesupport/lib/active_support/json/variable.rb b/activesupport/lib/active_support/json/variable.rb
deleted file mode 100644
index 5685ed18b7..0000000000
--- a/activesupport/lib/active_support/json/variable.rb
+++ /dev/null
@@ -1,9 +0,0 @@
-module ActiveSupport
- module JSON
- # A string that returns itself as its JSON-encoded form.
- class Variable < String
- def as_json(options = nil) self end #:nodoc:
- def encode_json(encoder) self end #:nodoc:
- end
- end
-end