glogin 0.8.0 → 0.9.0

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: f1d167febc4cddb92a21a6e768ba084262e600379dafd23440768ce622b2abe7
4
- data.tar.gz: 7afd525bbc7ec53f454a279d2840575456af556f46b28cff73ca84f727d6941d
3
+ metadata.gz: 4cc141a23e15b0f3ab7b965b281e0af9f0b62d35d4d6e4bfe7f08126f5fd15a8
4
+ data.tar.gz: f1c8f19028513466cc34370655d07d2a9eb0036ee12d36a191c0f46c5e8b89d2
5
5
  SHA512:
6
- metadata.gz: 8a6be3c9cdd283c53b19bc6ab5add3d6ba4687a55a5d49521cf1997e79be4c6974ab0e72d49baf098f7978f73c6aec8135a66f224531c0f308a2a2915f393c2e
7
- data.tar.gz: ddda55fec3c9483989f186fbe43f3ca006fe041677cf22a5d5c84604bd4e157cb5c6e14e67c0abae14729dedef405bb02c57424d00e3df1a5527feaaa5466124
6
+ metadata.gz: '0639b3241684fb1b20c81e0008f1e4366c579acedb4fa5fede72c0920b9e9c6b9b3f8a7a6cae4a63eb49f394ad7592e86f7a11b7dca1765795cdd4e5c9908266'
7
+ data.tar.gz: 584d6a182b189286a3a2feb9559e9decdf5a0821aa3a62241c4b71373201b348c12969f2afd72352f5e81c27ce629929dbc17f1aa1832dc0a095973aa5d9144f
@@ -8,13 +8,13 @@ jobs:
8
8
  codecov:
9
9
  runs-on: ubuntu-latest
10
10
  steps:
11
- - uses: actions/checkout@v2
11
+ - uses: actions/checkout@v3
12
12
  - uses: actions/setup-ruby@v1
13
13
  with:
14
14
  ruby-version: 2.7
15
15
  - run: bundle update
16
16
  - run: bundle exec rake
17
- - uses: codecov/codecov-action@v1
17
+ - uses: codecov/codecov-action@v3
18
18
  with:
19
19
  file: coverage/.resultset.json
20
20
  fail_ci_if_error: true
@@ -16,7 +16,7 @@ jobs:
16
16
  ruby: [2.7]
17
17
  runs-on: ${{ matrix.os }}
18
18
  steps:
19
- - uses: actions/checkout@v2
19
+ - uses: actions/checkout@v3
20
20
  - uses: actions/setup-ruby@v1
21
21
  with:
22
22
  ruby-version: ${{ matrix.ruby }}
data/.rubocop.yml CHANGED
@@ -7,6 +7,8 @@ AllCops:
7
7
  SuggestExtensions: false
8
8
  NewCops: enable
9
9
 
10
+ Gemspec/RequiredRubyVersion:
11
+ Enabled: false
10
12
  Metrics/MethodLength:
11
13
  Enabled: false
12
14
  Style/ClassAndModuleChildren:
data/glogin.gemspec CHANGED
@@ -28,7 +28,7 @@ require_relative 'lib/glogin/version'
28
28
 
29
29
  Gem::Specification.new do |s|
30
30
  s.required_rubygems_version = Gem::Requirement.new('>= 0') if s.respond_to? :required_rubygems_version=
31
- s.required_ruby_version = '~>2.3'
31
+ s.required_ruby_version = '>=2.3'
32
32
  s.name = 'glogin'
33
33
  s.version = GLogin::VERSION
34
34
  s.license = 'MIT'
@@ -26,5 +26,5 @@
26
26
  # Copyright:: Copyright (c) 2017-2022 Yegor Bugayenko
27
27
  # License:: MIT
28
28
  module GLogin
29
- VERSION = '0.8.0'
29
+ VERSION = '0.9.0'
30
30
  end
data/renovate.json ADDED
@@ -0,0 +1,6 @@
1
+ {
2
+ "$schema": "https://docs.renovatebot.com/renovate-schema.json",
3
+ "extends": [
4
+ "config:base"
5
+ ]
6
+ }
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: glogin
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.8.0
4
+ version: 0.9.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Yegor Bugayenko
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-07-01 00:00:00.000000000 Z
11
+ date: 2022-12-20 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: base58
@@ -146,8 +146,6 @@ extra_rdoc_files:
146
146
  files:
147
147
  - ".0pdd.yml"
148
148
  - ".gitattributes"
149
- - ".github/ISSUE_TEMPLATE.md"
150
- - ".github/PULL_REQUEST_TEMPLATE.md"
151
149
  - ".github/workflows/codecov.yml"
152
150
  - ".github/workflows/rake.yml"
153
151
  - ".gitignore"
@@ -166,6 +164,7 @@ files:
166
164
  - lib/glogin/cookie.rb
167
165
  - lib/glogin/version.rb
168
166
  - logo.svg
167
+ - renovate.json
169
168
  - test/glogin/test_auth.rb
170
169
  - test/glogin/test_codec.rb
171
170
  - test/glogin/test_cookie.rb
@@ -183,7 +182,7 @@ require_paths:
183
182
  - lib
184
183
  required_ruby_version: !ruby/object:Gem::Requirement
185
184
  requirements:
186
- - - "~>"
185
+ - - ">="
187
186
  - !ruby/object:Gem::Version
188
187
  version: '2.3'
189
188
  required_rubygems_version: !ruby/object:Gem::Requirement
@@ -1,12 +0,0 @@
1
- Make sure the title of the issue explains the problem you are having. Also, the description of the issue must clearly explain what is broken, not what you want us to implement. Go through this checklist and make sure you answer "YES" to all points:
2
-
3
- - You have all pre-requisites listed in README.md installed
4
- - You are sure that you are not reporting a duplicate (search all issues)
5
- - You say "is broken" or "doesn't work" in the title
6
- - You tell us what you are trying to do
7
- - You explain the results you are getting
8
- - You suggest an alternative result you would like to see
9
-
10
- This article will help you understand what we are looking for: http://www.yegor256.com/2014/11/24/principles-of-bug-tracking.html
11
-
12
- Thank you for your contribution!
@@ -1,11 +0,0 @@
1
- Many thanks for your contribution, we truly appreciate it. We will appreciate it even more, if you make sure that you can say "YES" to each point in this short checklist:
2
-
3
- - You made a small amount of changes (less than 100 lines, less than 10 files)
4
- - You made changes related to only one bug (create separate PRs for separate problems)
5
- - You are ready to defend your changes (there will be a code review)
6
- - You don't touch what you don't understand
7
- - You ran the build locally and it passed
8
-
9
- This article will help you understand what we are looking for: http://www.yegor256.com/2015/02/09/serious-code-reviewer.html
10
-
11
- Thank you for your contribution!