aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/connection_adapters/type/text.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/text.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/text.rb')
-rw-r--r--activerecord/lib/active_record/connection_adapters/type/text.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/activerecord/lib/active_record/connection_adapters/type/text.rb b/activerecord/lib/active_record/connection_adapters/type/text.rb
index 61095ebb38..ee5842a3fc 100644
--- a/activerecord/lib/active_record/connection_adapters/type/text.rb
+++ b/activerecord/lib/active_record/connection_adapters/type/text.rb
@@ -3,7 +3,7 @@ require 'active_record/connection_adapters/type/string'
module ActiveRecord
module ConnectionAdapters
module Type
- class Text < String
+ class Text < String # :nodoc:
def type
:text
end