forked from er1c/gattica
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathRakefile
24 lines (22 loc) · 795 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
require 'rake'
require 'rake/testtask'
require 'rake/rdoctask'
begin
require 'jeweler'
Jeweler::Tasks.new do |gemspec|
gemspec.name = "gattica"
gemspec.summary = "Gattica is a Ruby library for extracting data from the Google Analytics API."
gemspec.email = "[email protected]"
gemspec.homepage = "http://github.com/cannikin/gattica"
gemspec.description = "Gattica is a Ruby library for extracting data from the Google Analytics API."
gemspec.authors = ["Rob Cameron"]
gemspec.add_dependency('hpricot','>=0.6.164')
end
rescue LoadError
puts "Jeweler not available. Install it with: sudo gem install technicalpickles-jeweler -s http://gems.github.com"
end
Rake::TestTask.new do |t|
t.libs << 'lib'
t.pattern = 'test/**/test_*.rb'
t.verbose = false
end