Skip to content

Commit

Permalink
fix rubocop issues
Browse files Browse the repository at this point in the history
  • Loading branch information
mapra99 committed Apr 17, 2023
1 parent b483ece commit b0d91b4
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .rubocop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ require:
- rubocop-rspec

AllCops:
TargetRubyVersion: 3.1.2
TargetRubyVersion: 2.6.0

Style/StringLiterals:
Enabled: true
Expand Down
10 changes: 5 additions & 5 deletions rb-snake.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -29,12 +29,12 @@ Gem::Specification.new do |spec|
spec.require_paths = ["lib"]

# Uncomment to register a new dependency of your gem
spec.add_dependency 'ruby2d', '~> 0.12.0'
spec.add_dependency "ruby2d", "~> 0.12.0"

spec.add_development_dependency 'rake', '~> 13.0'
spec.add_development_dependency 'rspec', '~> 3.0'
spec.add_development_dependency 'rubocop', '~> 1.21'
spec.add_development_dependency 'rubocop-rspec', '~> 2.16.0'
spec.add_development_dependency "rake", "~> 13.0"
spec.add_development_dependency "rspec", "~> 3.0"
spec.add_development_dependency "rubocop", "~> 1.21"
spec.add_development_dependency "rubocop-rspec", "~> 2.16.0"

# For more information and examples about making a new gem, check out our
# guide at: https://bundler.io/guides/creating_gem.html
Expand Down

0 comments on commit b0d91b4

Please sign in to comment.