-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathRakefile
More file actions
24 lines (22 loc) · 752 Bytes
/
Rakefile
File metadata and controls
24 lines (22 loc) · 752 Bytes
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 'rubygems'
require './lib/cloudservers.rb'
require 'rake/testtask'
begin
require 'jeweler'
Jeweler::Tasks.new do |gemspec|
gemspec.name = "cloudservers"
gemspec.summary = "Rackspace Cloud Servers Ruby API"
gemspec.description = "A Ruby API to version 1.0 of the Rackspace Cloud Servers product."
gemspec.email = "minter@lunenburg.org"
gemspec.homepage = "http://github.com/rackspace/cloudservers"
gemspec.authors = ["H. Wade Minter","Mike Mayo"]
gemspec.add_dependency 'json'
end
rescue LoadError
puts "Jeweler not available. Install it with: sudo gem install jeweler"
end
Rake::TestTask.new(:test) do |t|
t.pattern = 'test/*_test.rb'
t.verbose = true
end
Rake::Task['test'].comment = "Unit"