class ActiveRecord::FixtureSet::RenderContext

:nodoc:
order for rendering context subclassing to work correctly.
NOTE: This class has to be defined in compact style in

def self.create_subclass

:nodoc:
order for rendering context subclassing to work correctly.
NOTE: This class has to be defined in compact style in
def self.create_subclass
  Class.new(ActiveRecord::FixtureSet.context_class) do
    def get_binding
      binding()
    end
    def binary(path)
      %(!!binary "#{Base64.strict_encode64(File.binread(path))}")
    end
  end
end

def binary(path)

def binary(path)
  %(!!binary "#{Base64.strict_encode64(File.binread(path))}")
end

def get_binding

def get_binding
  binding()
end