omniauth-vkontakte 1.6.0 → 1.6.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: a66fd112fb2f1d79deedab3d2f7eb3eef303e0e22f827ccdb3174fe50a7f9b8c
4
- data.tar.gz: 1651a2707b44331710292fa786093762a3b02797067cbb2402f615b44d5aafe7
3
+ metadata.gz: 13aa87f9404267d06342ee9a10b702870eb028dc6f6723752ac89ffb9f4bff85
4
+ data.tar.gz: 3f305a40036e95cc43011325fcd0411c0687131109ccd4789d6d2a6146d3c97d
5
5
  SHA512:
6
- metadata.gz: 72ecf8d314ae1095196f46b23e27b2408145fd25d790e66e04a4c236b0c6d26c0ead47edbe65b059cd9cf1089ce996d437dd9696a625c860d70a5812907557cd
7
- data.tar.gz: abeaf3b11d33befae097b787e099094ca2c608391d63426de50159d52ccb72507e0038a622ceff527e3a60e8ce1542fc0b4cd2bd0b08e50b65a5efd237f24532
6
+ metadata.gz: 7fea2f768f4503eedb8d0f6675df790a5130f745434ef7de0093ee0a107a746d72e6e0f774e44be791e0f2f8590cc47ca66b35bfcfd6450750ffb85fe676dc40
7
+ data.tar.gz: d48097f8caf9163047a7bd6d0d93fdb8dbeebb58f3242d92079b73088ca95561d0314af9ca8d25d2162005bee6112e59e38d41c086694e10be5490bcec13da45
@@ -0,0 +1,23 @@
1
+ name: Ruby
2
+
3
+ on:
4
+ push:
5
+ branches: [ master ]
6
+ pull_request:
7
+ branches: [ master ]
8
+
9
+ jobs:
10
+ test:
11
+
12
+ runs-on: ubuntu-latest
13
+
14
+ steps:
15
+ - uses: actions/checkout@v2
16
+ - name: Set up Ruby
17
+ uses: ruby/setup-ruby@v1
18
+ with:
19
+ ruby-version: 2.6
20
+ - name: Install dependencies
21
+ run: bundle install
22
+ - name: Run tests
23
+ run: rspec
@@ -1,3 +1,6 @@
1
+ AllCops:
2
+ NewCops: enable
3
+ TargetRubyVersion: 2.6
1
4
  Metrics/LineLength:
2
5
  Max: 120
3
6
  Metrics/MethodLength:
@@ -5,10 +5,8 @@ before_install:
5
5
  - gem update --system
6
6
  - gem --version
7
7
  rvm:
8
- - 2.6.0
9
- - 2.5.3
10
- - 2.4.5
11
- - 2.3.8
8
+ - 2.7.1
9
+ - 2.6.6
12
10
  - jruby-head
13
11
  script:
14
12
  - bundle exec rspec
data/LICENSE CHANGED
@@ -1,6 +1,6 @@
1
1
  MIT License
2
2
 
3
- Copyright (c) 2011-2019 Anton Maminov
3
+ Copyright (c) 2011-2020 Anton Maminov
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal
data/README.md CHANGED
@@ -112,7 +112,7 @@ Tested with the following Ruby versions:
112
112
 
113
113
  ## License
114
114
 
115
- Copyright: 2011-2019 Anton Maminov (anton.maminov@gmail.com)
115
+ Copyright: 2011-2020 Anton Maminov (anton.maminov@gmail.com)
116
116
 
117
117
  This library is distributed under the MIT license. Please see the LICENSE file.
118
118
 
@@ -2,6 +2,6 @@
2
2
 
3
3
  module OmniAuth
4
4
  module Vkontakte
5
- VERSION = '1.6.0'
5
+ VERSION = '1.6.1'
6
6
  end
7
7
  end
@@ -4,7 +4,7 @@ require File.expand_path('lib/omniauth/vkontakte/version', __dir__)
4
4
 
5
5
  Gem::Specification.new do |gem|
6
6
  gem.authors = ['Anton Maminov']
7
- gem.email = ['anton.linux@gmail.com']
7
+ gem.email = ['anton.maminov@gmail.com']
8
8
  gem.summary = 'Vkontakte OAuth2 Strategy for OmniAuth'
9
9
  gem.homepage = 'https://github.com/mamantoha/omniauth-vkontakte'
10
10
  gem.licenses = ['MIT']
@@ -16,5 +16,6 @@ Gem::Specification.new do |gem|
16
16
  gem.require_paths = ['lib']
17
17
  gem.version = OmniAuth::Vkontakte::VERSION
18
18
 
19
- gem.add_runtime_dependency 'omniauth-oauth2', ['>= 1.5', '<= 1.6']
19
+ gem.required_ruby_version = '>= 2.6.0'
20
+ gem.add_runtime_dependency 'omniauth-oauth2', ['>= 1.5', '<= 1.7.0']
20
21
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: omniauth-vkontakte
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.6.0
4
+ version: 1.6.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Anton Maminov
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-06-01 00:00:00.000000000 Z
11
+ date: 2020-08-18 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: omniauth-oauth2
@@ -19,7 +19,7 @@ dependencies:
19
19
  version: '1.5'
20
20
  - - "<="
21
21
  - !ruby/object:Gem::Version
22
- version: '1.6'
22
+ version: 1.7.0
23
23
  type: :runtime
24
24
  prerelease: false
25
25
  version_requirements: !ruby/object:Gem::Requirement
@@ -29,14 +29,15 @@ dependencies:
29
29
  version: '1.5'
30
30
  - - "<="
31
31
  - !ruby/object:Gem::Version
32
- version: '1.6'
32
+ version: 1.7.0
33
33
  description:
34
34
  email:
35
- - anton.linux@gmail.com
35
+ - anton.maminov@gmail.com
36
36
  executables: []
37
37
  extensions: []
38
38
  extra_rdoc_files: []
39
39
  files:
40
+ - ".github/workflows/ruby.yml"
40
41
  - ".gitignore"
41
42
  - ".rspec"
42
43
  - ".rubocop.yml"
@@ -68,7 +69,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
68
69
  requirements:
69
70
  - - ">="
70
71
  - !ruby/object:Gem::Version
71
- version: '0'
72
+ version: 2.6.0
72
73
  required_rubygems_version: !ruby/object:Gem::Requirement
73
74
  requirements:
74
75
  - - ">="