forked from newrelic/newrelic_api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRakefile
59 lines (54 loc) · 1.56 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
53
54
55
56
57
58
59
require 'rubygems'
require 'bundler'
begin
Bundler.setup(:default, :development)
rescue Bundler::BundlerError => e
$stderr.puts e.message
$stderr.puts "Run `bundle install` to install missing gems"
exit e.status_code
end
require 'rake'
require 'jeweler'
require 'rdiscount'
require 'ci/reporter/rake/test_unit'
API_VERSION = File.read('CHANGELOG')[/^.*$/]
TITLE = %Q{Documentation and helper code for the New Relic API}
RDOC_FILES=Dir['README*', 'CHANGELOG', 'sample*']
Jeweler::Tasks.new do |gem|
gem.version = API_VERSION
gem.name = "newrelic_api"
gem.homepage = "http://www.github.com/newrelic/newrelic_api"
gem.license = "MIT"
gem.summary = TITLE
gem.description = %Q{Use this gem to access New Relic application information via a REST api}
gem.email = "[email protected]"
gem.authors = ["New Relic"]
gem.extra_rdoc_files = FileList[*RDOC_FILES]
gem.rdoc_options <<
"--line-numbers" <<
"--title" << TITLE <<
"-m" << "README.rdoc"
end
#Jeweler::RubygemsDotOrgTasks.new
require 'rake/testtask'
Rake::TestTask.new(:test) do |test|
test.libs << 'lib' << 'test'
test.pattern = 'test/**/*_test.rb'
test.verbose = true
end
require 'rcov/rcovtask'
Rcov::RcovTask.new do |test|
test.libs << 'test'
test.pattern = 'test/**/test_*.rb'
test.verbose = true
end
task :default => :test
require 'rdoc/task'
Rake::RDocTask.new do |rdoc|
rdoc.rdoc_dir = 'rdoc'
rdoc.title = TITLE
# I don't know why, but the next line has no effect
rdoc.rdoc_files.include(*RDOC_FILES)
rdoc.rdoc_files.include('lib/**/*.rb')
rdoc.main = "README.rdoc"
end