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.
18 lines
337 B
18 lines
337 B
# encoding: UTF-8
|
|
|
|
require 'rubygems' unless ENV['NO_RUBYGEMS']
|
|
|
|
require 'bundler'
|
|
require 'rspec/core/rake_task'
|
|
require 'rubygems/package_task'
|
|
|
|
require './lib/cldr-plurals/ruby_runtime'
|
|
|
|
Bundler::GemHelper.install_tasks
|
|
|
|
task :default => :spec
|
|
|
|
desc 'Run specs'
|
|
RSpec::Core::RakeTask.new do |t|
|
|
t.pattern = './spec/**/*_spec.rb'
|
|
end |