-
Notifications
You must be signed in to change notification settings - Fork 11
/
Rakefile
58 lines (50 loc) · 1.64 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
# encoding: UTF-8
require "rake"
require "rake/testtask"
require "rdoc/task"
require "fileutils"
require File.expand_path("../lib/rails_metrics/version", __FILE__)
desc "Default: run unit tests"
task :default => :test
desc "Prepare environment for tests"
task :prepare do
FileUtils.cd File.expand_path("../test/dummy", __FILE__)
system("rake db:create:all")
system("rake db:migrate")
system("rake db:test:clone")
end
desc "Start the server for the dummy application used in tests"
task :server do
exec("test/dummy/script/rails server")
end
desc "Test RailsMetrics"
Rake::TestTask.new(:test) do |t|
t.libs << "test"
t.pattern = "test/**/*_test.rb"
t.verbose = true
end
desc "Generate documentation for RailsMetrics"
RDoc::Task.new(:rdoc) do |rdoc|
rdoc.rdoc_dir = "rdoc"
rdoc.title = "RailsMetrics"
rdoc.options << "--line-numbers" << "--inline-source"
rdoc.rdoc_files.include("README.rdoc")
rdoc.rdoc_files.include("lib/**/*.rb")
end
begin
require "jeweler"
Jeweler::Tasks.new do |s|
s.name = "rails_metrics"
s.version = RailsMetrics::VERSION
s.summary = "Metrics measurement for your app on top of ActiveSupport::Notifications"
s.email = "[email protected]"
s.homepage = "http://github.com/engineyard"
s.description = "Metrics measurement for your app on top of ActiveSupport::Notifications"
s.authors = ["José Valim"]
s.files = FileList["[A-Z]*", "{app,config,lib,public}/**/*"]
s.files.exclude("public/javascripts/rails_metrics.js")
end
Jeweler::GemcutterTasks.new
rescue LoadError
puts "Jeweler, or one of its dependencies, is not available. Install it with: sudo gem install jeweler"
end