Sha256: 73cf8bf52a4f6ac239e5550ea7340785703f777d500828dad20ed1dfdd4334e6

Contents?: true

Size: 632 Bytes

Versions: 1

Compression:

Stored size: 632 Bytes

Contents

#encoding: utf-8
Dir.new(File.join(File.dirname(__FILE__), 'uploader')).each do |file|
  next if file.start_with?('.') || !file.end_with?('.rb')
  require "vagabond/uploader/#{file}"
end

require 'vagabond/helpers'

module Vagabond
  class Uploader

    attr_reader :store
    attr_reader :options
    attr_reader :ui
    attr_reader :vagabondfile

    include Helpers
    
    def initialize(vagabondfile, base_directory, options={})
      @store = base_directory
      @options = Mash.new(options)
      @ui = options[:ui]
      @vagabondfile = vagabondfile
    end

    def prepare
    end

    def upload
    end
    
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
vagabond-0.2.10 lib/vagabond/uploader.rb