Remove package:clean task

Introduced in d6f2000a67 and was only used by Action Cable. Now handled by Action Cable’s assets:compile task.
This commit is contained in:
Javan Makhmali 2016-05-23 17:05:44 -04:00
parent 11078dddbb
commit d12209cad2
10 changed files with 0 additions and 10 deletions

View File

@ -8,7 +8,6 @@ dir = File.dirname(__FILE__)
task :default => :test
task :package => "assets:compile"
task "package:clean"
Rake::TestTask.new do |t|
t.libs << "test"

View File

@ -4,7 +4,6 @@ desc "Default Task"
task default: [ :test ]
task :package
task "package:clean"
# Run the unit tests
Rake::TestTask.new { |t|

View File

@ -6,7 +6,6 @@ desc "Default Task"
task :default => :test
task :package
task "package:clean"
# Run the unit tests
Rake::TestTask.new do |t|

View File

@ -4,7 +4,6 @@ desc "Default Task"
task :default => :test
task :package
task "package:clean"
# Run the unit tests

View File

@ -8,7 +8,6 @@ task default: :test
task test: 'test:default'
task :package
task "package:clean"
namespace :test do
desc 'Run all adapter tests'

View File

@ -5,7 +5,6 @@ dir = File.dirname(__FILE__)
task :default => :test
task :package
task "package:clean"
Rake::TestTask.new do |t|
t.libs << "test"

View File

@ -21,7 +21,6 @@ desc 'Run mysql2, sqlite, and postgresql tests by default'
task :default => :test
task :package
task "package:clean"
desc 'Run mysql2, sqlite, and postgresql tests'
task :test do

View File

@ -3,7 +3,6 @@ require 'rake/testtask'
task :default => :test
task :package
task "package:clean"
Rake::TestTask.new do |t|
t.libs << 'test'

View File

@ -3,7 +3,6 @@ require 'rake/testtask'
task :default => :test
task :package
task "package:clean"
desc "Run all unit tests"
task :test => 'test:isolated'

View File

@ -13,7 +13,6 @@ directory "pkg"
task :clean do
rm_f gem
sh "cd #{framework} && bundle exec rake package:clean" unless framework == "rails"
end
task :update_versions do