Sha256: d42ac89f03297d6f4fa7966d805024c1854c8940d0cd793aa88fc6eb97565854
Contents?: true
Size: 1.23 KB
Versions: 3
Compression:
Stored size: 1.23 KB
Contents
# coding: utf-8 lib = File.expand_path('../lib', __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'vagrant-sshfs/version' Gem::Specification.new do |spec| spec.name = "vagrant-sshfs" spec.version = VagrantPlugins::SyncedFolderSSHFS::VERSION spec.authors = ["Dusty Mabe"] spec.email = ["dusty@dustymabe.com"] spec.description = """ A Vagrant synced folder plugin that mounts folders via SSHFS. This is the successor to Fabio Kreusch's implementation: https://github.com/fabiokr/vagrant-sshfs""" spec.summary = spec.description spec.homepage = "https://github.com/dustymabe/vagrant-sshfs" spec.license = "GPL-2.0" spec.files = `git ls-files -z`.split("\x0") spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) } spec.test_files = spec.files.grep(%r{^(test|spec|features)/}) spec.require_paths = ["lib"] spec.add_dependency 'win32-process' spec.add_development_dependency 'bundler', '~> 1.7' spec.add_development_dependency 'rake', '~> 10.0' spec.add_development_dependency 'cucumber', '~> 2.1' spec.add_development_dependency 'aruba', '~> 0.13' spec.add_development_dependency 'komenda', '~> 0.1.6' end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
vagrant-sshfs-1.3.0 | vagrant-sshfs.gemspec |
vagrant-sshfs-1.2.1 | vagrant-sshfs.gemspec |
vagrant-sshfs-1.2.0 | vagrant-sshfs.gemspec |