Created
November 26, 2016 16:28
-
-
Save dustymabe/b8a467581c9b5ee4473c1649e6c6aacc to your computer and use it in GitHub Desktop.
vagrant-sshfs.gemspec
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# -*- encoding: utf-8 -*- | |
# stub: vagrant-sshfs 1.3.0 ruby lib | |
Gem::Specification.new do |s| | |
s.name = "vagrant-sshfs".freeze | |
s.version = "1.3.0" | |
s.required_rubygems_version = Gem::Requirement.new(">= 0".freeze) if s.respond_to? :required_rubygems_version= | |
s.require_paths = ["lib".freeze] | |
s.authors = ["Dusty Mabe".freeze] | |
s.date = "2016-11-26" | |
s.description = "\n A Vagrant synced folder plugin that mounts folders via SSHFS. \n This is the successor to Fabio Kreusch's implementation:\n https://github.com/fabiokr/vagrant-sshfs".freeze | |
s.email = ["[email protected]".freeze] | |
s.files = [".gitignore".freeze, "Gemfile".freeze, "LICENSE".freeze, "README.adoc".freeze, "RELEASE.txt".freeze, "Rakefile".freeze, "features/README.md".freeze, "features/sshfs_cwd_mount.feature".freeze, "features/step_definitions/sshfs_cwd_mount_steps.rb".freeze, "features/support/env.rb".freeze, "lib/vagrant-sshfs.rb".freeze, "lib/vagrant-sshfs/cap/guest/arch/sshfs_client.rb".freeze, "lib/vagrant-sshfs/cap/guest/debian/sshfs_client.rb".freeze, "lib/vagrant-sshfs/cap/guest/fedora/sshfs_client.rb".freeze, "lib/vagrant-sshfs/cap/guest/linux/sshfs_client.rb".freeze, "lib/vagrant-sshfs/cap/guest/linux/sshfs_forward_mount.rb".freeze, "lib/vagrant-sshfs/cap/guest/linux/sshfs_get_absolute_path.rb".freeze, "lib/vagrant-sshfs/cap/guest/redhat/sshfs_client.rb".freeze, "lib/vagrant-sshfs/cap/guest/suse/sshfs_client.rb".freeze, "lib/vagrant-sshfs/cap/host/darwin/sshfs_reverse_mount.rb".freeze, "lib/vagrant-sshfs/cap/host/linux/sshfs_reverse_mount.rb".freeze, "lib/vagrant-sshfs/command.rb".freeze, "lib/vagrant-sshfs/errors.rb".freeze, "lib/vagrant-sshfs/plugin.rb".freeze, "lib/vagrant-sshfs/synced_folder.rb".freeze, "lib/vagrant-sshfs/synced_folder/sshfs_forward_mount.rb".freeze, "lib/vagrant-sshfs/synced_folder/sshfs_reverse_mount.rb".freeze, "lib/vagrant-sshfs/version.rb".freeze, "locales/synced_folder_sshfs.yml".freeze, "test/libvirt/README.txt".freeze, "test/libvirt/Vagrantfile".freeze, "test/misc/README.txt".freeze, "test/misc/Vagrantfile".freeze, "test/misc/dotests.sh".freeze, "test/virtualbox/README.txt".freeze, "test/virtualbox/Vagrantfile".freeze, "vagrant-sshfs.gemspec".freeze] | |
s.homepage = "https://github.com/dustymabe/vagrant-sshfs".freeze | |
s.licenses = ["GPL-2.0".freeze] | |
s.rubygems_version = "2.5.2".freeze | |
s.summary = "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".freeze | |
s.test_files = ["features/README.md".freeze, "features/sshfs_cwd_mount.feature".freeze, "features/step_definitions/sshfs_cwd_mount_steps.rb".freeze, "features/support/env.rb".freeze, "test/libvirt/README.txt".freeze, "test/libvirt/Vagrantfile".freeze, "test/misc/README.txt".freeze, "test/misc/Vagrantfile".freeze, "test/misc/dotests.sh".freeze, "test/virtualbox/README.txt".freeze, "test/virtualbox/Vagrantfile".freeze] | |
if s.respond_to? :specification_version then | |
s.specification_version = 4 | |
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then | |
s.add_runtime_dependency(%q<win32-process>.freeze, [">= 0"]) | |
s.add_development_dependency(%q<bundler>.freeze, ["~> 1.7"]) | |
s.add_development_dependency(%q<rake>.freeze, ["~> 10.0"]) | |
s.add_development_dependency(%q<cucumber>.freeze, ["~> 2.1"]) | |
s.add_development_dependency(%q<aruba>.freeze, ["~> 0.13"]) | |
s.add_development_dependency(%q<komenda>.freeze, ["~> 0.1.6"]) | |
else | |
s.add_dependency(%q<win32-process>.freeze, [">= 0"]) | |
s.add_dependency(%q<bundler>.freeze, ["~> 1.7"]) | |
s.add_dependency(%q<rake>.freeze, ["~> 10.0"]) | |
s.add_dependency(%q<cucumber>.freeze, ["~> 2.1"]) | |
s.add_dependency(%q<aruba>.freeze, ["~> 0.13"]) | |
s.add_dependency(%q<komenda>.freeze, ["~> 0.1.6"]) | |
end | |
else | |
s.add_dependency(%q<win32-process>.freeze, [">= 0"]) | |
s.add_dependency(%q<bundler>.freeze, ["~> 1.7"]) | |
s.add_dependency(%q<rake>.freeze, ["~> 10.0"]) | |
s.add_dependency(%q<cucumber>.freeze, ["~> 2.1"]) | |
s.add_dependency(%q<aruba>.freeze, ["~> 0.13"]) | |
s.add_dependency(%q<komenda>.freeze, ["~> 0.1.6"]) | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment