aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/connection_adapters/type/binary.rb
diff options
context:
space:
mode:
authorSean Griffin <sean@thoughtbot.com>2014-05-27 13:08:13 -0700
committerSean Griffin <sean@thoughtbot.com>2014-05-27 15:34:23 -0700
commitaff73e094640b19cb1bdc975082be7b4767bf4bf (patch)
tree3ece105eed9aac9bd71c6a2abe590bb1ade622af /activerecord/lib/active_record/connection_adapters/type/binary.rb
parent52434e9a512477d632b492793bcae5b4732ea689 (diff)
downloadrails-aff73e094640b19cb1bdc975082be7b4767bf4bf.tar.gz
rails-aff73e094640b19cb1bdc975082be7b4767bf4bf.tar.bz2
rails-aff73e094640b19cb1bdc975082be7b4767bf4bf.zip
Remove AR Properties from the public API
Making this part of the public API was premature, let's make it private again while I continue to work on the surrounding code.
Diffstat (limited to 'activerecord/lib/active_record/connection_adapters/type/binary.rb')
-rw-r--r--activerecord/lib/active_record/connection_adapters/type/binary.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/activerecord/lib/active_record/connection_adapters/type/binary.rb b/activerecord/lib/active_record/connection_adapters/type/binary.rb
index 60afe44de1..4b2d1a66e0 100644
--- a/activerecord/lib/active_record/connection_adapters/type/binary.rb
+++ b/activerecord/lib/active_record/connection_adapters/type/binary.rb
@@ -1,7 +1,7 @@
module ActiveRecord
module ConnectionAdapters
module Type
- class Binary < Value
+ class Binary < Value # :nodoc:
def type
:binary
end