-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathvagrant-flow.gemspec
32 lines (25 loc) · 1.01 KB
/
vagrant-flow.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
25
26
27
28
29
30
31
32
# -*- encoding: utf-8 -*-
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'vagrant-flow/version'
Gem::Specification.new do |s|
s.name = "vagrant-flow"
s.version = VagrantPlugins::VagrantFlow::VERSION
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["Steve Morin"]
s.date = "2014-02-23"
s.summary = %q{Enables Vagrant to Generate Ansible Inventory Files.}
s.description = s.summary
s.email = "[email protected]"
s.homepage = "http://github.com/DemandCube/vagrant-flow"
s.licenses = ["AGPL"]
s.rubyforge_project = "vagrant-flow"
s.rubygems_version = "2.0.14"
s.files = `git ls-files -z`.split("\x0")
s.executables = s.files.grep(%r{^bin/}) { |f| File.basename(f) }
s.test_files = s.files.grep(%r{^(test|spec|features)/})
s.require_paths = ["lib"]
s.add_development_dependency "bundler", "~> 1.5"
s.add_development_dependency "rake"
end