Skip to content

Commit 478ed59

Browse files
committed
Merge branch 'yb-update-oauth2-to-1-1' of https://github.com/sutori/omniauth-oauth2 into sutori-yb-update-oauth2-to-1-1
2 parents ee63077 + f9a8a5e commit 478ed59

File tree

3 files changed

+12
-4
lines changed

3 files changed

+12
-4
lines changed

.rubocop.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,5 +41,12 @@ Style/StderrPuts:
4141
Style/StringLiterals:
4242
EnforcedStyle: double_quotes
4343

44+
<<<<<<< HEAD
4445
Style/TrailingCommaInLiteral:
4546
EnforcedStyleForMultiline: 'comma'
47+
=======
48+
Style/TrailingCommaInArguments:
49+
EnforcedStyleForMultiline: comma
50+
Style/TrailingCommaInLiteral:
51+
EnforcedStyleForMultiline: comma
52+
>>>>>>> f9a8a5eea4c3445c435bc84a819593f78aad9064

Gemfile

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
source "http://rubygems.org"
22

3-
gem "rake"
3+
gem "rake", "~> 10.5"
44

55
group :test do
66
gem "coveralls"
@@ -9,9 +9,10 @@ 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.51", :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, :ruby_23, :ruby_24]
1313
gem "simplecov", ">= 0.9"
14-
gem "webmock"
14+
gem "webmock", "~> 1.0"
15+
gem "addressable", "~> 2.3.8", :platforms => [:jruby, :ruby_18]
1516
end
1617

1718
# Specify your gem's dependencies in omniauth-oauth2.gemspec

omniauth-oauth2.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
33
require "omniauth-oauth2/version"
44

55
Gem::Specification.new do |gem|
6-
gem.add_dependency "oauth2", "~> 1.0"
6+
gem.add_dependency "oauth2", "~> 1.1"
77
gem.add_dependency "omniauth", "~> 1.2"
88

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

0 commit comments

Comments
 (0)