Use triage (renamed devtools) and synced triage Gemfile
This commit is contained in:
parent
7e6960263d
commit
41c69fd214
6 changed files with 8 additions and 8 deletions
4
Gemfile
4
Gemfile
|
@ -7,7 +7,7 @@ gemspec
|
|||
gem 'mutant', path: '.'
|
||||
|
||||
group :development, :test do
|
||||
gem 'devtools', git: 'https://github.com/rom-rb/devtools.git'
|
||||
gem 'triage', git: 'https://github.com/rom-rb/devtools.git', :branch => 'triage-rename'
|
||||
end
|
||||
|
||||
eval_gemfile File.join(File.dirname(__FILE__), 'Gemfile.devtools')
|
||||
eval_gemfile File.join(File.dirname(__FILE__), 'Gemfile.triage')
|
||||
|
|
|
@ -30,11 +30,11 @@ group :guard do
|
|||
end
|
||||
|
||||
group :metrics do
|
||||
gem 'coveralls', '~> 0.6.7'
|
||||
gem 'coveralls', '~> 0.7.0'
|
||||
gem 'flay', '~> 2.4.0'
|
||||
gem 'flog', '~> 4.1.1'
|
||||
gem 'reek', '~> 1.3.2'
|
||||
gem 'rubocop', '~> 0.13.0'
|
||||
gem 'rubocop', '~> 0.14.1'
|
||||
gem 'simplecov', '~> 0.7.1'
|
||||
gem 'yardstick', '~> 0.9.7', git: 'https://github.com/dkubb/yardstick.git'
|
||||
|
4
Rakefile
4
Rakefile
|
@ -1,8 +1,8 @@
|
|||
# encoding: utf-8
|
||||
|
||||
require 'devtools'
|
||||
require 'triage'
|
||||
|
||||
Devtools.init_rake_tasks
|
||||
Triage.init_rake_tasks
|
||||
|
||||
Rake.application.load_imports
|
||||
task('metrics:mutant').clear
|
||||
|
|
|
@ -2,7 +2,7 @@ AllCops:
|
|||
Includes:
|
||||
- '../**/*.rake'
|
||||
- 'Gemfile'
|
||||
- 'Gemfile.devtools'
|
||||
- 'Gemfile.triage'
|
||||
- 'mutant.gemspec'
|
||||
Excludes:
|
||||
- '**/vendor/**'
|
||||
|
|
|
@ -22,7 +22,7 @@ if ENV['COVERAGE'] == 'true'
|
|||
end
|
||||
|
||||
require 'equalizer'
|
||||
require 'devtools/spec_helper'
|
||||
require 'triage/spec_helper'
|
||||
require 'mutant'
|
||||
|
||||
$LOAD_PATH << File.join(TestApp.root, 'lib')
|
||||
|
|
Loading…
Reference in a new issue