aboutsummaryrefslogtreecommitdiffstats
path: root/Rakefile
diff options
context:
space:
mode:
authorBryan Helmkamp <bryan@brynary.com>2009-10-27 20:17:21 -0400
committerBryan Helmkamp <bryan@brynary.com>2009-10-27 20:17:21 -0400
commitefc167dc07e61cf18cfae8ccac23134d87299cc1 (patch)
tree72fb7086e77f0aae51fecb2a6cab0080d2ce5088 /Rakefile
parent5b4c964104f3cfd08500b37a14e220219e695aee (diff)
downloadrails-efc167dc07e61cf18cfae8ccac23134d87299cc1.tar.gz
rails-efc167dc07e61cf18cfae8ccac23134d87299cc1.tar.bz2
rails-efc167dc07e61cf18cfae8ccac23134d87299cc1.zip
Dropping Jeweler in favor of some simple Thor tasks (for Gemcutter)
Diffstat (limited to 'Rakefile')
-rw-r--r--Rakefile31
1 files changed, 0 insertions, 31 deletions
diff --git a/Rakefile b/Rakefile
index 0564da23ca..e1557bda70 100644
--- a/Rakefile
+++ b/Rakefile
@@ -1,37 +1,6 @@
require "rubygems"
begin
- require 'jeweler'
-rescue LoadError
- desc "Install gem using sudo"
- task(:install) do
- $stderr.puts "Jeweler not available. `gem install jeweler` to install this gem"
- end
-else
- Jeweler::Tasks.new do |s|
- s.name = "arel"
- s.authors = ["Bryan Helmkamp", "Nick Kallen"]
- s.email = "bryan" + "@" + "brynary.com"
- s.homepage = "http://github.com/brynary/arel"
- s.summary = "Arel is a relational algebra engine for Ruby"
- 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)
-
- s.add_dependency "activerecord", ">= 3.0pre"
- s.add_dependency "activesupport", ">= 3.0pre"
- end
-
- Jeweler::RubyforgeTasks.new
-end
-
-begin
require "spec/rake/spectask"
rescue LoadError
desc "Run specs"