# coding: utf-8 lib = File.expand_path("../lib", __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require "vagrant-winrm-syncedfolders/version" Gem::Specification.new do |spec| spec.name = "vagrant-winrm-syncedfolders" spec.version = VagrantPlugins::SyncedFolderWinRM::VERSION spec.authors = ["Christopher Baldauf"] spec.email = ["cbaldauf@cimpress.com"] spec.summary = "Use WinRM synced folders for Windows guests using the WinRM communcator" spec.homepage = "https://github.com/Cimpress-MCP/vagrant-winrm-syncedfolders" spec.license = "Apache 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"] # 0.2.0 bundled with vagrant 1.7.4 has a known bug # we can force this dependency as a stop-gap [GH-3] spec.add_runtime_dependency "winrm-fs", "~> 0.2.2" spec.add_development_dependency "bundler", "~> 1.6" spec.add_development_dependency "rake", "~> 10.0" spec.add_development_dependency "rspec", "~> 2.14" spec.add_development_dependency "rubocop", "~> 0.28" end