forked from hipchat/hipchat-rb
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Rakefile
32 lines (28 loc) · 929 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
28
29
30
31
32
require 'rubygems'
require 'rake'
begin
require 'jeweler'
Jeweler::Tasks.new do |gem|
gem.name = "hipchat"
gem.summary = %Q{Ruby library to interact with HipChat}
gem.description = %Q{Ruby library to interact with HipChat}
gem.email = "[email protected]"
gem.homepage = "http://github.com/mojotech/hipchat"
gem.authors = ["MojoTech"]
gem.add_dependency "httparty"
gem.add_development_dependency "rspec", "~> 2.0"
gem.add_development_dependency "rr", "~> 1.0"
end
Jeweler::GemcutterTasks.new
rescue LoadError
puts "Jeweler (or a dependency) not available. Install it with: gem install jeweler"
end
task :default => :spec
require 'rake/rdoctask'
Rake::RDocTask.new do |rdoc|
version = File.exist?('VERSION') ? File.read('VERSION') : ""
rdoc.rdoc_dir = 'rdoc'
rdoc.title = "hipchat #{version}"
rdoc.rdoc_files.include('README*')
rdoc.rdoc_files.include('lib/**/*.rb')
end