mirror of
https://github.com/samsonjs/simple_oauth.git
synced 2026-03-25 08:45:54 +00:00
Fix RuboCop offenses introduced in version 0.20.0
This commit is contained in:
parent
300f73d018
commit
65a3bdcde8
3 changed files with 3 additions and 6 deletions
|
|
@ -1,5 +1,5 @@
|
|||
AllCops:
|
||||
Includes:
|
||||
Include:
|
||||
- 'Gemfile'
|
||||
- 'Rakefile'
|
||||
- 'simple_oauth.gemspec'
|
||||
|
|
|
|||
2
Gemfile
2
Gemfile
|
|
@ -8,7 +8,7 @@ group :test do
|
|||
gem 'coveralls', :require => false
|
||||
gem 'mime-types', '~> 1.25', :platforms => [:jruby, :ruby_18]
|
||||
gem 'rspec', '>= 2.14'
|
||||
gem 'rubocop', '>= 0.19', :platforms => [:ruby_19, :ruby_20, :ruby_21]
|
||||
gem 'rubocop', '>= 0.20', :platforms => [:ruby_19, :ruby_20, :ruby_21]
|
||||
gem 'simplecov', :require => false
|
||||
gem 'yardstick'
|
||||
end
|
||||
|
|
|
|||
|
|
@ -1,10 +1,7 @@
|
|||
require 'simplecov'
|
||||
require 'coveralls'
|
||||
|
||||
SimpleCov.formatter = SimpleCov::Formatter::MultiFormatter[
|
||||
SimpleCov::Formatter::HTMLFormatter,
|
||||
Coveralls::SimpleCov::Formatter
|
||||
]
|
||||
SimpleCov.formatter = SimpleCov::Formatter::MultiFormatter[SimpleCov::Formatter::HTMLFormatter, Coveralls::SimpleCov::Formatter]
|
||||
|
||||
SimpleCov.start do
|
||||
add_filter '/spec/'
|
||||
|
|
|
|||
Loading…
Reference in a new issue