forked from appoxy/simple_record
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Rakefile
23 lines (20 loc) · 834 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
# -*- ruby -*-
require 'rubygems'
require './lib/simple_record.rb'
begin
require 'jeweler'
Jeweler::Tasks.new do |gemspec|
gemspec.name = "simple_record"
gemspec.summary = "Drop in replacement for ActiveRecord to Amazon SimpleDB instead."
gemspec.email = "[email protected]"
gemspec.homepage = "http://github.com/appoxy/simple_record/"
gemspec.description = "Drop in replacement for ActiveRecord to Amazon SimpleDB instead."
gemspec.authors = ["Travis Reeder", "Chad Arimura", "RightScale"]
gemspec.files = FileList['lib/**/*.rb']
gemspec.add_dependency 'aws'
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