Skip to content

Commit

Permalink
fix: Pin rubocop to 1.28.x for Ruby 2.5 compatibility (#48)
Browse files Browse the repository at this point in the history
  • Loading branch information
dazuma authored May 6, 2022
1 parent 450fb69 commit a612098
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions google-style.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ Gem::Specification.new do |gem|
gem.name = "google-style"
gem.version = Google::Style::VERSION

gem.authors = ["Graham Paye"]
gem.email = ["[email protected]"]
gem.authors = ["Daniel Azuma", "Graham Paye"]
gem.email = ["[email protected]", "[email protected]"]
gem.description = "Shared style guide for Google's ruby projects"
gem.summary = "Collection of rubocop rules"
gem.homepage = "https://github.com/googleapis/ruby-style/"
Expand All @@ -33,7 +33,8 @@ Gem::Specification.new do |gem|

gem.required_ruby_version = ">= 2.5.0"

gem.add_dependency "rubocop", "~> 1.9"
# Pin rubocop to 1.28.x because 1.29 drops Ruby 2.5 compatibility
gem.add_dependency "rubocop", "~> 1.28.2"
gem.add_development_dependency "bundler", "~> 2.0"
gem.add_development_dependency "rake", "~> 12.3"
end

0 comments on commit a612098

Please sign in to comment.