Sha256: 6bed6deb61d5bfe19a57868694ea7d85bc6775d5be51c2ec04254e1ae0cdeced

Contents?: true

Size: 1.14 KB

Versions: 23

Compression:

Stored size: 1.14 KB

Contents

require 'bundler/gem_tasks'
require 'appraisal'
require 'rake/testtask'
require 'cucumber/rake/task'

desc 'Default: run unit tests.'
task :default => [:clean, :all]

desc 'Test the paperclip plugin under all supported Rails versions.'
task :all do |t|
  if ENV['BUNDLE_GEMFILE']
    exec('rake test cucumber')
  else
    Rake::Task["appraisal:install"].execute
    exec('rake appraisal test cucumber')
  end
end

desc 'Test the paperclip plugin.'
Rake::TestTask.new(:test) do |t|
  t.libs << 'lib' << 'profile'
  t.pattern = 'test/**/*_test.rb'
  t.verbose = true
end

desc 'Run integration test'
Cucumber::Rake::Task.new do |t|
  t.cucumber_opts = %w{--format progress}
end

desc 'Start an IRB session with all necessary files required.'
task :shell do |t|
  chdir File.dirname(__FILE__)
  exec 'irb -I lib/ -I lib/paperclip -r rubygems -r active_record -r tempfile -r init'
end

desc 'Clean up files.'
task :clean do |t|
  FileUtils.rm_rf "doc"
  FileUtils.rm_rf "tmp"
  FileUtils.rm_rf "pkg"
  FileUtils.rm_rf "public"
  FileUtils.rm "test/debug.log" rescue nil
  FileUtils.rm "test/paperclip.db" rescue nil
  Dir.glob("paperclip-*.gem").each{|f| FileUtils.rm f }
end

Version data entries

23 entries across 23 versions & 2 rubygems

Version Path
paperclip-4.1.1 Rakefile
paperclip-4.1.0 Rakefile
paperclip-3.5.4 Rakefile
paperclip-4.0.0 Rakefile
paperclip-3.5.3 Rakefile
paperclip-3.5.2 Rakefile
paperclip-3.5.1 Rakefile
paperclip-3.5.0 Rakefile
paperclip-3.4.2 Rakefile
paperclip-3.4.1 Rakefile
paperclip-3.4.0 Rakefile
paperclip-3.3.1 Rakefile
paperclip-3.2.1 Rakefile
paperclip-3.3.0 Rakefile
paperclip-3.2.0 Rakefile
paperclip-3.1.4 Rakefile
paperclip-3.1.2 Rakefile
paperclip-3.1.1 Rakefile
paperclip-3.1.0 Rakefile
paperclip-3.0.4 Rakefile