forked from chef/mixlib-config
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRakefile
52 lines (43 loc) · 1.27 KB
/
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
require 'rubygems'
require 'rake'
require 'yaml'
begin
require 'jeweler'
Jeweler::Tasks.new do |gem|
gem.name = "mixlib-config"
gem.summary = "A class based config mixin, similar to the one found in Chef."
gem.email = "info@opscode.com"
gem.homepage = "http://www.opscode.com"
gem.authors = ["Opscode, Inc."]
# gem is a Gem::Specification... see http://www.rubygems.org/read/chapter/20 for additional settings
end
rescue LoadError
puts "Jeweler (or a dependency) not available. Install from gemcutter with: sudo gem install gemcutter jeweler"
end
begin
require 'rspec/core/rake_task'
RSpec::Core::RakeTask.new(:spec) do |spec|
spec.pattern = 'spec/**/*_spec.rb'
end
end
task :default => :spec
require 'rake/rdoctask'
Rake::RDocTask.new do |rdoc|
if File.exist?('VERSION.yml')
config = YAML.load(File.read('VERSION.yml'))
version = "#{config[:major]}.#{config[:minor]}.#{config[:patch]}"
else
version = ""
end
rdoc.rdoc_dir = 'rdoc'
rdoc.title = "mixlib-config #{version}"
rdoc.rdoc_files.include('README*')
rdoc.rdoc_files.include('lib/**/*.rb')
end
desc "remove build files"
task :clean do
sh %Q{ rm -f pkg/*.gem }
end
desc "Run the spec and features"
task :test => [ :features, :spec ]
Jeweler::GemcutterTasks.new