forked from oswaldlabs/chef-rundeck
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Rakefile
48 lines (42 loc) · 1.39 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
require 'rubygems'
require 'rake'
begin
require 'jeweler'
Jeweler::Tasks.new do |gem|
gem.name = "chef-rundeck"
gem.summary = %Q{Integrates Chef with RunDeck}
gem.description = %Q{Provides a resource endpoint for RunDeck from a Chef Server}
gem.email = "adam@opscode.com"
gem.homepage = "http://github.com/opscode/chef-rundeck"
gem.authors = ["Adam Jacob"]
gem.add_dependency "sinatra"
gem.add_dependency "chef"
gem.add_dependency "mixlib-cli"
gem.add_development_dependency "rspec", ">= 1.2.9"
gem.add_development_dependency "yard", ">= 0"
# gem is a Gem::Specification... see http://www.rubygems.org/read/chapter/20 for additional settings
end
Jeweler::GemcutterTasks.new
rescue LoadError
puts "Jeweler (or a dependency) not available. Install it with: gem install jeweler"
end
require 'rspec/core/rake_task'
RSpec::Core::RakeTask.new(:spec) do |spec|
spec.rspec_opts = [ '-I', 'lib', '-I', 'spec' ]
spec.pattern = FileList['spec/**/*_spec.rb']
end
RSpec::Core::RakeTask.new(:rcov) do |spec|
spec.rspec_opts = [ '-I', 'lib', '-I', 'spec' ]
spec.pattern = FileList['spec/**/*_spec.rb']
spec.rcov = true
end
task :spec => :check_dependencies
task :default => :spec
begin
require 'yard'
YARD::Rake::YardocTask.new
rescue LoadError
task :yardoc do
abort "YARD is not available. In order to run yardoc, you must: sudo gem install yard"
end
end