forked from hasham2/amazon-awis
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Rakefile
28 lines (26 loc) · 838 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
25
26
27
28
require 'rake'
require 'rake/testtask'
require 'rake/rdoctask'
require 'rake/gempackagetask'
require 'rake/packagetask'
begin
require 'jeweler'
Jeweler::Tasks.new do |gemspec|
gemspec.name = "gaiottino-amazon-awis"
gemspec.summary = "Ruby Amazon Alexa web information service REST API"
gemspec.description = "Ruby Amazon Alexa web information service REST API"
gemspec.email = "daniel.gaiottino@gmail.com"
gemspec.homepage = "http://github.com/gaiottino/amazon-awis"
gemspec.authors = ["Daniel Gaiottino"]
gemspec.add_dependency('hpricot', '>= 0.4')
end
Jeweler::GemcutterTasks.new
rescue LoadError
puts "Jeweler not available. Install it with: sudo gem install jeweler"
end
desc "Run the unit tests in test"
Rake::TestTask.new(:test) do |t|
t.libs << "test"
t.pattern = 'test/**/*_test.rb'
t.verbose = true
end