Skip to content

Commit 292a34b

Browse files
committed
Fix Rubocop Offenses
1 parent 8c180ea commit 292a34b

File tree

3 files changed

+6
-5
lines changed

3 files changed

+6
-5
lines changed

.rubocop.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,8 @@ Style/DoubleNegation:
3535
Style/HashSyntax:
3636
EnforcedStyle: hash_rockets
3737

38-
38+
Style/StderrPuts:
39+
Enabled: false
3940

4041
Style/StringLiterals:
4142
EnforcedStyle: double_quotes

Gemfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ group :test do
99
gem "rack-test"
1010
gem "rest-client", "~> 1.7.3", :platforms => %i[jruby ruby_18]
1111
gem "rspec", "~> 3.2"
12-
gem "rubocop", ">= 0.30", :platforms => %i[ruby_19 ruby_20 ruby_21 ruby_22]
12+
gem "rubocop", ">= 0.51", :platforms => %i[ruby_19 ruby_20 ruby_21 ruby_22]
1313
gem "simplecov", ">= 0.9"
1414
gem "webmock"
1515
end

omniauth-oauth2.gemspec

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,11 @@ Gem::Specification.new do |gem|
88

99
gem.add_development_dependency "bundler", "~> 1.0"
1010

11-
gem.authors = ["Michael Bleigh", "Erik Michaels-Ober"]
12-
11+
gem.authors = ["Michael Bleigh", "Erik Michaels-Ober", "Tom Milewski"]
12+
1313
gem.description = "An abstract OAuth2 strategy for OmniAuth."
1414
gem.summary = gem.description
15-
gem.homepage = "https://github.com/intridea/omniauth-oauth2"
15+
gem.homepage = "https://github.com/omniauth/omniauth-oauth2"
1616
gem.licenses = %w[MIT]
1717

1818
gem.executables = `git ls-files -- bin/*`.split("\n").collect { |f| File.basename(f) }

0 commit comments

Comments
 (0)