Sha256: f9279f06183800591be92db735cb522864dff6e7a0f316b9fd0efeff9671740d
Contents?: true
Size: 392 Bytes
Versions: 92
Compression:
Stored size: 392 Bytes
Contents
module EasyML module Support class LocalFile attr_accessor :root_dir, :filename def initialize(options = {}) @root_dir = options[:root_dir] @filename = options[:filename] end def upload(file_path) file_path end def download(full_path) full_path end def synced? true end end end end
Version data entries
92 entries across 92 versions & 1 rubygems