Skip to content

Commit

Permalink
Rakefile configured.
Browse files Browse the repository at this point in the history
  • Loading branch information
sertangulveren committed Jan 27, 2020
1 parent a77f440 commit 1250a32
Showing 1 changed file with 16 additions and 6 deletions.
22 changes: 16 additions & 6 deletions Rakefile
Original file line number Diff line number Diff line change
@@ -1,10 +1,20 @@
require "bundler/gem_tasks"
require "rake/testtask"
# frozen_string_literal: true

require 'bundler/gem_tasks'
require 'rake/testtask'
require 'rubocop/rake_task'

import('lib/tasks/easy_manage_client.rake')

Rake::TestTask.new(:test) do |t|
t.libs << "test"
t.libs << "lib"
t.test_files = FileList["test/**/*_test.rb"]
t.libs << 'test'
t.libs << 'lib'
t.test_files = FileList['test/**/*_test.rb']
t.warning = false
end

task :default => :test
task default: :test

RuboCop::RakeTask.new

task default: %i[test rubocop]

0 comments on commit 1250a32

Please sign in to comment.