class Cassie::Schema::VersionObjectLoader
Public Class Methods
new(version)
click to toggle source
# File lib/cassie/schema/version_object_loader.rb, line 7 def initialize(version) @version = version @filename = build_filename end
Protected Instance Methods
build_filename()
click to toggle source
# File lib/cassie/schema/version_object_loader.rb, line 14 def build_filename path = VersionWriter.new(version).existing_file File.absolute_path(path) if path end