class PostgresqlArrayTest::MyTags
Public Class Methods
dump(object)
click to toggle source
# File activerecord/test/cases/adapters/postgresql/array_test.rb, line 63 def self.dump(object); object.to_a end
load(tags)
click to toggle source
# File activerecord/test/cases/adapters/postgresql/array_test.rb, line 62 def self.load(tags); new(tags) end
new(tags)
click to toggle source
# File activerecord/test/cases/adapters/postgresql/array_test.rb, line 60 def initialize(tags); @tags = tags end
Public Instance Methods
to_a()
click to toggle source
# File activerecord/test/cases/adapters/postgresql/array_test.rb, line 61 def to_a; @tags end