aboutsummaryrefslogtreecommitdiffstats
path: root/activejob/Rakefile
diff options
context:
space:
mode:
authorArun Agrawal <arunagw@gmail.com>2015-05-28 09:06:10 +0200
committerArun Agrawal <arunagw@gmail.com>2015-05-28 09:06:10 +0200
commit21b6b68f63bf2cc461483001b3b81e747d87b79d (patch)
tree210fbf3ce827d311d9999f0d9b6a272487d2fe95 /activejob/Rakefile
parent7cc9754209c0ae00d70bdd629fa4a81a1c74cc6f (diff)
downloadrails-21b6b68f63bf2cc461483001b3b81e747d87b79d.tar.gz
rails-21b6b68f63bf2cc461483001b3b81e747d87b79d.tar.bz2
rails-21b6b68f63bf2cc461483001b3b81e747d87b79d.zip
Remove unused package tasks
We are using `all:build` now.
Diffstat (limited to 'activejob/Rakefile')
-rw-r--r--activejob/Rakefile8
1 files changed, 0 insertions, 8 deletions
diff --git a/activejob/Rakefile b/activejob/Rakefile
index ab35170e3c..8c86df3c91 100644
--- a/activejob/Rakefile
+++ b/activejob/Rakefile
@@ -1,5 +1,4 @@
require 'rake/testtask'
-require 'rubygems/package_task'
ACTIVEJOB_ADAPTERS = %w(inline delayed_job qu que queue_classic resque sidekiq sneakers sucker_punch backburner test)
ACTIVEJOB_ADAPTERS -= %w(queue_classic) if defined?(JRUBY_VERSION)
@@ -74,10 +73,3 @@ def run_without_aborting(tasks)
abort "Errors running #{errors.join(', ')}" if errors.any?
end
-
-
-spec = eval(File.read('activejob.gemspec'))
-
-Gem::PackageTask.new(spec) do |p|
- p.gem_spec = spec
-end