-
Notifications
You must be signed in to change notification settings - Fork 29
/
Rakefile
31 lines (27 loc) · 1008 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
29
30
31
# -*- ruby -*-
require 'rubygems'
require './lib/simple_record.rb'
require 'rake/testtask'
Rake::TestTask.new do |t|
t.libs << "test"
t.test_files = FileList['test/test*.rb']
t.verbose = true
end
begin
require 'jeweler'
Jeweler::Tasks.new do |gemspec|
gemspec.name = "simple_record"
gemspec.summary = "ActiveRecord like interface for Amazon SimpleDB. By http://www.appoxy.com"
gemspec.email = "[email protected]"
gemspec.homepage = "http://github.com/appoxy/simple_record/"
gemspec.description = "ActiveRecord like interface for Amazon SimpleDB. Store, query, shard, etc. By http://www.appoxy.com"
gemspec.authors = ["Travis Reeder", "Chad Arimura", "RightScale"]
gemspec.files = FileList['lib/**/*.rb']
gemspec.add_dependency 'aws'
gemspec.add_dependency 'concur'
end
Jeweler::GemcutterTasks.new
rescue LoadError
puts "Jeweler not available. Install it with: sudo gem install technicalpickles-jeweler -s http://gems.github.com"
end
# vim: syntax=Ruby