forked from dsander/vagrant-ansible
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRakefile
More file actions
27 lines (21 loc) · 704 Bytes
/
Rakefile
File metadata and controls
27 lines (21 loc) · 704 Bytes
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
# -*- ruby -*-
require 'rubygems'
if defined?(RUBY_ENGINE) && RUBY_ENGINE == 'ruby'
require 'hoe'
Hoe.plugin :git
Hoe.plugin :gemspec
Hoe.plugin :bundler
Hoe.plugin :gemcutter
Hoe.plugins.delete :rubyforge
Hoe.spec 'vagrant-ansible' do
developer('Dominik Sander', 'git@dsander.de')
self.description ="Develop & test your ansible playbooks with Vagrant"
self.summary = "Vagrant-ansible is a provisioning plugin for Vagrant, that makes developing and testing playbooks for ansible easy."
self.readme_file = 'README.md'
self.history_file = 'CHANGELOG.md'
self.extra_deps << ["vagrant"]
end
end
task :default => :spec
task :test => :spec
# vim: syntax=ruby