-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvagrant-json-config.gemspec
24 lines (23 loc) · 1.23 KB
/
vagrant-json-config.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'vagrant-json-config/version'
Gem::Specification.new do |spec|
spec.name = "vagrant-json-config"
spec.version = VagrantPlugins::JsonConfig::VERSION
spec.authors = ["Jan Schumann"]
spec.email = ["[email protected]"]
spec.summary = %q{A Vagrant plugin to set configuration variables via json.}
spec.description = %q{This is a simple Vagrant plugin that loads configuration variables from a json file to be able to dynamically configure a vagrant machine without changing the actual Vagrantfile.}
spec.homepage = "https://github.com/Bauer-Xcel-Media/vagrant-json-config"
spec.license = "MIT"
spec.files = %w(README.md LICENSE.txt
vagrant-json-config.gemspec
lib/vagrant-json-config.rb
lib/vagrant-json-config/version.rb
lib/vagrant-json-config/config.rb
lib/vagrant-json-config/plugin.rb)
spec.require_paths = ["lib"]
spec.add_development_dependency "bundler", "~> 1.6"
spec.add_development_dependency "rspec", '~> 2.14', '>= 2.14.0'
end