forked from appoxy/simple_record
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRakefile
24 lines (21 loc) · 872 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
# -*- ruby -*-
require 'rubygems'
require './lib/simple_record.rb'
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