forked from scoutapp/scout-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRakefile
38 lines (32 loc) · 1.1 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
require 'bundler'
Bundler.setup(:default, :development)
$LOAD_PATH.unshift 'lib'
require 'scout_api/version'
require 'jeweler'
Jeweler::Tasks.new do |gem|
gem.version = Scout::VERSION
gem.name = "scout_api"
gem.summary = %Q{API wrapper for scoutapp.com}
gem.description = %Q{A library for interacting with Scout (http://scoutapp.com), a hosted server monitoring service. Query for metric data, manage servers, and more.}
gem.email = "[email protected]"
gem.homepage = "https://scoutapp.com/info/api"
gem.authors = ["Jesse Newland", "Derek Haynes"]
# gem is a Gem::Specification... see http://www.rubygems.org/read/chapter/20 for additional settings
# dependencies are handled in Gemfile
end
Jeweler::GemcutterTasks.new
require 'rake/rdoctask'
Rake::RDocTask.new do |rdoc|
version = Scout::VERSION
rdoc.rdoc_dir = 'rdoc'
rdoc.title = "scout_api #{version}"
rdoc.rdoc_files.include('README*')
rdoc.rdoc_files.include('lib/**/*.rb')
end
require "rake/testtask"
Rake::TestTask.new do |test|
test.libs << "test"
test.test_files = [ "test/*.rb" ]
test.verbose = true
end
task :default => :test