-
Notifications
You must be signed in to change notification settings - Fork 29
/
Rakefile
27 lines (23 loc) · 863 Bytes
/
Rakefile
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
# -*- mode: ruby -*-
# vi: set ft=ruby :
#
# Managed by modulesync
# Configs https://github.com/Mylezeem/mylezeem-msync
#
require 'puppetlabs_spec_helper/rake_tasks'
require 'puppet_blacksmith/rake_tasks'
require 'puppet-lint/tasks/puppet-lint'
require 'puppet-syntax/tasks/puppet-syntax'
TDIR = File.expand_path(File.dirname(__FILE__))
NAME = "yguenane-#{File.basename(TDIR).split('-')[1]}"
exclude_path = ["spec/**/*","pkg/**/*","vendor/**/*"]
PuppetLint.configuration.fail_on_warnings = true
PuppetLint.configuration.send('disable_80chars')
PuppetLint.configuration.ignore_paths = exclude_path
PuppetSyntax.exclude_paths = exclude_path
namespace :module do
desc "Build #{NAME} module (in a clean env, for puppetforge)"
task :build do
exec "rsync -rv --exclude-from=#{TDIR}/.forgeignore . /tmp/#{NAME};cd /tmp/#{NAME};puppet module build"
end
end