Skip to content

Commit

Permalink
Merge pull request #124 from mbj/upgrade/tools-for-ruby23
Browse files Browse the repository at this point in the history
Upgrade flay, reek, rubocop, and mutant
  • Loading branch information
mbj committed Feb 15, 2016
2 parents 120f813 + 47e41e1 commit 51e7a13
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 5 deletions.
8 changes: 8 additions & 0 deletions config/rubocop.yml
Expand Up @@ -115,3 +115,11 @@ LambdaCall:
# Allow additional spaces
ExtraSpacing:
Enabled: false

# All objects can still be mutated if their eigenclass is patched
RedundantFreeze:
Enabled: false

# Prefer using `fail` when raising and `raise` when reraising
SignalException:
EnforcedStyle: semantic
8 changes: 4 additions & 4 deletions devtools.gemspec
Expand Up @@ -24,12 +24,12 @@ Gem::Specification.new do |gem|
gem.add_runtime_dependency 'rspec-its', '~> 1.2.0'
gem.add_runtime_dependency 'rake', '~> 10.4.2'
gem.add_runtime_dependency 'yard', '~> 0.8.7.6'
gem.add_runtime_dependency 'flay', '~> 2.6.1'
gem.add_runtime_dependency 'flay', '~> 2.7.0'
gem.add_runtime_dependency 'flog', '~> 4.3.2'
gem.add_runtime_dependency 'reek', '~> 3.7.0'
gem.add_runtime_dependency 'rubocop', '~> 0.35.1'
gem.add_runtime_dependency 'reek', '~> 3.10.2'
gem.add_runtime_dependency 'rubocop', '~> 0.37.2'
gem.add_runtime_dependency 'simplecov', '~> 0.10.0'
gem.add_runtime_dependency 'yardstick', '~> 0.9.9'
gem.add_runtime_dependency 'mutant', '~> 0.8.9'
gem.add_runtime_dependency 'mutant', '~> 0.8.10'
gem.add_runtime_dependency 'mutant-rspec', '~> 0.8.8'
end
2 changes: 1 addition & 1 deletion lib/devtools/project.rb
Expand Up @@ -59,7 +59,7 @@ def init_rspec
# @api private
#
def initialize_environment
@spec_root = root.join(SPEC_DIRECTORY_NAME)
@spec_root = root.join(SPEC_DIRECTORY_NAME)
end

# Initialize configs
Expand Down

0 comments on commit 51e7a13

Please sign in to comment.