mirror of https://github.com/docusealco/docuseal
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.
19 lines
321 B
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
|