aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBryan Helmkamp <bryan@brynary.com>2009-09-20 12:18:31 -0400
committerBryan Helmkamp <bryan@brynary.com>2009-09-20 12:18:31 -0400
commit41ddc9d013cd8aa76954c486ae45de01bbe7b6f4 (patch)
tree4b043a1c23e8b05bca05f49deffaaab4e039defe
parent7e3fe3114bd8464b95ecff98bc452c9410bf4895 (diff)
downloadrails-41ddc9d013cd8aa76954c486ae45de01bbe7b6f4.tar.gz
rails-41ddc9d013cd8aa76954c486ae45de01bbe7b6f4.tar.bz2
rails-41ddc9d013cd8aa76954c486ae45de01bbe7b6f4.zip
Add description to Rakefile
-rw-r--r--Rakefile8
1 files changed, 7 insertions, 1 deletions
diff --git a/Rakefile b/Rakefile
index 940530cacc..eac3b54f61 100644
--- a/Rakefile
+++ b/Rakefile
@@ -14,7 +14,13 @@ else
s.email = "bryan" + "@" + "brynary.com"
s.homepage = "http://github.com/brynary/arel"
s.summary = "Arel is a relational algebra engine for Ruby"
- # s.description = "TODO"
+ s.description = <<-EOS.strip
+Arel is a Relational Algebra for Ruby. It 1) simplifies the generation complex
+of SQL queries and it 2) adapts to various RDBMS systems. It is intended to be
+a framework framework; that is, you can build your own ORM with it, focusing on
+innovative object and collection modeling as opposed to database compatibility
+and query generation.
+EOS
s.rubyforge_project = "arel"
s.extra_rdoc_files = %w(README.markdown)