$LOAD_PATH.push File.expand_path('../lib', __FILE__) require 'vagrant-environments/version' Gem::Specification.new do |s| s.name = 'vagrant-environments' s.version = VagrantPlugins::Environments::VERSION s.platform = Gem::Platform::RUBY s.author = 'Igor Rodionov' s.email = 'goruha@gmail.com' s.homepage = 'http://github.com/goruha/vagrant-environments' s.summary = 'Allow to config Vagrant work with multiple environments' s.description = 'Vagrant plugin to config muiltiple environments (dev, test, stage, prod)' s.license = 'MIT' s.files = `git ls-files`.split("\n") s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n") s.executables = `git ls-files -- bin/*`.split("\n").map { |f| File.basename(f) } s.require_paths = %w(lib) end