-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathRakefile
More file actions
23 lines (21 loc) · 723 Bytes
/
Rakefile
File metadata and controls
23 lines (21 loc) · 723 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
require 'rake'
require 'spec/rake/spectask'
begin
require 'jeweler'
Jeweler::Tasks.new do |gemspec|
gemspec.name = "g_viz"
gemspec.summary = "Google Visualization API Ruby Client"
gemspec.email = "gary.tsang@gmail.com"
gemspec.homepage = "http://github.com/garru/g_viz"
gemspec.description = "Google Visualization API Ruby Client"
gemspec.authors = ["Gary Tsang"]
end
rescue LoadError
puts "Jeweler not available. Install it with: sudo gem install technicalpickles-jeweler -s http://gems.github.com"
end
desc "Run all tests"
Spec::Rake::SpecTask.new do |t|
t.libs = [File.join(File.dirname(__FILE__), 'lib', 'g_viz')]
t.fail_on_error = false
t.spec_files = FileList['spec/*.rb']
end