Merge branch 'master' of bitbucket.org:datatransition_/mm2ep_depend
This commit is contained in:
commit
c87fc440bf
7 changed files with 23 additions and 5 deletions
28
Rakefile
28
Rakefile
|
@ -1,10 +1,28 @@
|
|||
require "bundler/gem_tasks"
|
||||
require "rake/testtask"
|
||||
require 'rubocop/rake_task'
|
||||
|
||||
Rake::TestTask.new(:test) do |t|
|
||||
t.libs << "test"
|
||||
t.libs << "lib"
|
||||
t.test_files = FileList["test/**/*_test.rb"]
|
||||
# Add additional test suite definitions to the default test task here
|
||||
namespace :spec do
|
||||
desc 'Runs RuboCop on specified directories'
|
||||
RuboCop::RakeTask.new(:rubocop) do |task|
|
||||
# Dirs: app, lib, test
|
||||
task.patterns = ['exe/**/*.rb', 'lib/**/*.rb', 'spec/**/*_spec.rb']
|
||||
|
||||
# Make it easier to disable cops.
|
||||
task.options << "--display-cop-names"
|
||||
|
||||
# Abort on failures (fix your code first)
|
||||
task.fail_on_error = true
|
||||
end
|
||||
end
|
||||
|
||||
task :default => :test
|
||||
Rake::TestTask.new(:spec) do |t|
|
||||
t.libs << "spec"
|
||||
t.libs << "lib"
|
||||
t.test_files = FileList['spec/**/*_spec.rb']
|
||||
end
|
||||
|
||||
# Rake::Task[:spec].enhance ['spec:rubocop']
|
||||
|
||||
task :default => :spec
|
||||
|
|
Loading…
Reference in a new issue