You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
docuseal/vendor/bundle/ruby/4.0.0/gems/mini_magick-5.3.1/Rakefile

19 lines
321 B

require 'bundler'
Bundler::GemHelper.install_tasks
$:.unshift 'lib'
desc 'Default: run unit tests.'
task :default => [:print_version, :spec]
task :print_version do
puts `mogrify --version`
end
require 'rspec/core/rake_task'
desc 'Run specs'
RSpec::Core::RakeTask.new do |t|
t.pattern = './spec/**/*_spec.rb'
end