github.com/nycdavid/zeus@v0.0.0-20201208104106-9ba439429e03/vagrant/vagrant-zeus.gemspec (about) 1 # -*- encoding: utf-8 -*- 2 3 # This preamble is basically used to deal with bundler/gem_tasks, which loads the gemspec 4 # on rake init, even though some prerequisites are not generated until `rake build` is invoked. 5 version = begin 6 require File.expand_path('../lib/vagrant-zeus/version', __FILE__) 7 VagrantPlugins::Zeus::VERSION 8 rescue LoadError 9 "0.0.0" 10 end 11 12 files = File.exist?('MANIFEST') ? File.read("MANIFEST").lines.map(&:chomp) : [] 13 14 Gem::Specification.new do |gem| 15 gem.authors = ["Burke Libbey"] 16 gem.email = ["burke@libbey.me"] 17 gem.description = %q{Vagrant plugin to pass along filesystem events on directories shared with the VM} 18 gem.summary = %q{This plugin watches for filesystem events on the local filesystem, and sends them over a network socket to Zeus listening from inside the VM.} 19 gem.homepage = "http://zeus.is" 20 21 gem.files = files 22 gem.extensions = [ 23 "ext/inotify-wrapper/extconf.rb", 24 ] 25 gem.executables = [] 26 gem.test_files = [] 27 gem.name = "vagrant-zeus" 28 gem.require_paths = ["lib"] 29 gem.version = version 30 gem.license = "MIT" 31 end