backtrace 0.3.0 → 0.4.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: d4eed452fb8bad8a8202f534cfccdda6ccda8062c237b85f7e32e67a8ae07432
4
- data.tar.gz: 11bc2f7a9bd4bcb60a1dce74ae7c535d0aed798907113d06ce155ad4cd5b2d4c
3
+ metadata.gz: a7ca8069e796b448e1c29d62f6c73c33447420ac8bbfb981a21fb83ad0527c8e
4
+ data.tar.gz: b161935df3c56cf549ea7c5f19e2a349766db9dce8978c09d38dde03b4239170
5
5
  SHA512:
6
- metadata.gz: d19a79b5fbbe51f0ca56a57cfe2833ec0ef48a94917b355249c2b39f5d0d204ebf3eb34f07b366148b2c35e4446de844b8ad3947778718908e60c87d7c98ba25
7
- data.tar.gz: edf7cee2177c38ed25d1e32b51d06b7e789b4533b6dd17089a0958a3d288c20a54046a0201df25ba7cd099c7f2839a00d5e3e75486e094e56f13aa9ae4b54a16
6
+ metadata.gz: c2dc82ffca0ecdd1686455a8f851b9b9f33b2e02d0e5d4cd8bb09055e035572fe9f4761ba86d081026bd58c1d1cf12567fb1b390485616f26444353c25165bc1
7
+ data.tar.gz: 28d7915d28f31e34a3fe318c3aa6511a441390daa2ddc4648280a939b8c73ec094ea270fa164c612fc498cdd7cf5cf8f7a75a7136fd14e6c99afd1a82dd52790
@@ -0,0 +1,11 @@
1
+ ---
2
+ name: pdd
3
+ on:
4
+ push:
5
+ pull_request:
6
+ jobs:
7
+ pdd:
8
+ runs-on: ubuntu-20.04
9
+ steps:
10
+ - uses: actions/checkout@v3
11
+ - uses: g4s8/pdd-action@master
@@ -0,0 +1,23 @@
1
+ ---
2
+ name: rake
3
+ on:
4
+ push:
5
+ branches:
6
+ - master
7
+ pull_request:
8
+ branches:
9
+ - master
10
+ jobs:
11
+ test:
12
+ strategy:
13
+ matrix:
14
+ os: [ubuntu-20.04]
15
+ ruby: ['3.0']
16
+ runs-on: ${{ matrix.os }}
17
+ steps:
18
+ - uses: actions/checkout@v3
19
+ - uses: ruby/setup-ruby@v1
20
+ with:
21
+ ruby-version: ${{ matrix.ruby }}
22
+ - run: bundle update
23
+ - run: bundle exec rake
@@ -0,0 +1,11 @@
1
+ ---
2
+ name: xcop
3
+ on:
4
+ push:
5
+ pull_request:
6
+ jobs:
7
+ xcop:
8
+ runs-on: ubuntu-20.04
9
+ steps:
10
+ - uses: actions/checkout@v3
11
+ - uses: g4s8/xcop-action@master
data/.rubocop.yml CHANGED
@@ -1,6 +1,8 @@
1
1
  AllCops:
2
2
  DisplayCopNames: true
3
3
  TargetRubyVersion: 2.3.3
4
+ SuggestExtensions: false
5
+ NewCops: enable
4
6
 
5
7
  Layout/MultilineMethodCallIndentation:
6
8
  Enabled: false
data/.rultor.yml CHANGED
@@ -1,12 +1,14 @@
1
+ docker:
2
+ image: yegor256/rultor-image:1.19.0
1
3
  assets:
2
- rubygems.yml: zerocracy/home#assets/rubygems.yml
4
+ rubygems.yml: yegor256/home#assets/rubygems.yml
3
5
  install: |-
4
- export GEM_HOME=~/.ruby
5
- export GEM_PATH=$GEM_HOME:$GEM_PATH
6
+ sudo gem install openssl -- --with-openssl-dir=/usr/local/rvm/rubies/ruby-3.0.1/lib/ruby/3.0.0/openssl
7
+ pdd -f /dev/null
8
+ sudo bundle install --no-color "--gemfile=$(pwd)/Gemfile"
6
9
  release:
7
10
  script: |-
8
- bundle install
9
- rake
11
+ bundle exec rake
10
12
  rm -rf *.gem
11
13
  sed -i "s/0\.0\.0/${tag}/g" backtrace.gemspec
12
14
  git add backtrace.gemspec
@@ -14,10 +16,6 @@ release:
14
16
  gem build backtrace.gemspec
15
17
  chmod 0600 ../rubygems.yml
16
18
  gem push *.gem --config-file ../rubygems.yml
17
- commanders:
18
- - yegor256
19
- architect:
20
- - yegor256
21
19
  merge:
22
- commanders: []
23
- deploy: {}
20
+ script: |-
21
+ bundle exec rake
data/.travis.yml CHANGED
@@ -1,6 +1,6 @@
1
1
  language: ruby
2
2
  rvm:
3
- - 2.3.3
3
+ - 2.6.0
4
4
  branches:
5
5
  only:
6
6
  - master
@@ -8,5 +8,4 @@ install:
8
8
  - bundle install
9
9
  script:
10
10
  - set -e
11
- - rake
12
-
11
+ - bundle exec rake
data/Gemfile CHANGED
@@ -1,6 +1,6 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- # Copyright (c) 2018 Yegor Bugayenko
3
+ # Copyright (c) 2018-2023 Yegor Bugayenko
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
@@ -22,3 +22,9 @@
22
22
 
23
23
  source 'https://rubygems.org'
24
24
  gemspec
25
+
26
+ gem 'minitest', '~>5.11', require: false
27
+ gem 'rake', '13.0.6', require: false
28
+ gem 'rdoc', '6.5.0', require: false
29
+ gem 'rubocop', '1.52.1', require: false
30
+ gem 'rubocop-rspec', '2.22.0', require: false
data/LICENSE.txt ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2018-2023 Yegor Bugayenko
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included
13
+ in all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
data/README.md CHANGED
@@ -1,9 +1,14 @@
1
+ <img src="/logo.svg" width="64px" height="64px"/>
2
+
1
3
  [![DevOps By Rultor.com](http://www.rultor.com/b/yegor256/backtrace)](http://www.rultor.com/p/yegor256/backtrace)
2
- [![We recommend RubyMine](http://www.elegantobjects.org/rubymine.svg)](https://www.jetbrains.com/ruby/)
4
+ [![We recommend RubyMine](https://www.elegantobjects.org/rubymine.svg)](https://www.jetbrains.com/ruby/)
3
5
 
4
- [![Build Status](https://travis-ci.org/yegor256/backtrace.svg)](https://travis-ci.org/yegor256/backtrace)
6
+ [![rake](https://github.com/yegor256/backtrace/actions/workflows/rake.yml/badge.svg)](https://github.com/yegor256/backtrace/actions/workflows/rake.yml)
5
7
  [![Gem Version](https://badge.fury.io/rb/backtrace.svg)](http://badge.fury.io/rb/backtrace)
6
8
  [![Maintainability](https://api.codeclimate.com/v1/badges/0296baf81e86b90fba70/maintainability)](https://codeclimate.com/github/yegor256/backtrace/maintainability)
9
+ [![Yard Docs](http://img.shields.io/badge/yard-docs-blue.svg)](http://rubydoc.info/github/yegor256/backtrace/master/frames)
10
+ [![Hits-of-Code](https://hitsofcode.com/github/yegor256/backtrace)](https://hitsofcode.com/view/github/yegor256/backtrace)
11
+ [![License](https://img.shields.io/badge/license-MIT-green.svg)](https://github.com/yegor256/backtrace/blob/master/LICENSE.txt)
7
12
 
8
13
  A Ruby backtrace nicely printed.
9
14
 
@@ -61,26 +66,16 @@ end
61
66
 
62
67
  That's it.
63
68
 
64
- # License
65
-
66
- (The MIT License)
67
-
68
- Copyright (c) 2018 Yegor Bugayenko
69
+ ## How to contribute
69
70
 
70
- Permission is hereby granted, free of charge, to any person obtaining a copy
71
- of this software and associated documentation files (the 'Software'), to deal
72
- in the Software without restriction, including without limitation the rights
73
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
74
- copies of the Software, and to permit persons to whom the Software is
75
- furnished to do so, subject to the following conditions:
71
+ Read [these guidelines](https://www.yegor256.com/2014/04/15/github-guidelines.html).
72
+ Make sure you build is green before you contribute
73
+ your pull request. You will need to have [Ruby](https://www.ruby-lang.org/en/) 2.3+ and
74
+ [Bundler](https://bundler.io/) installed. Then:
76
75
 
77
- The above copyright notice and this permission notice shall be included in all
78
- copies or substantial portions of the Software.
76
+ ```
77
+ $ bundle update
78
+ $ bundle exec rake
79
+ ```
79
80
 
80
- THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
81
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
82
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
83
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
84
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
85
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
86
- SOFTWARE.
81
+ If it's clean and you don't see any error messages, submit your pull request.
data/Rakefile CHANGED
@@ -1,6 +1,6 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- # Copyright (c) 2018 Yegor Bugayenko
3
+ # Copyright (c) 2018-2023 Yegor Bugayenko
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/backtrace.gemspec CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  # (The MIT License)
4
4
  #
5
- # Copyright (c) 2018 Yegor Bugayenko
5
+ # Copyright (c) 2018-2023 Yegor Bugayenko
6
6
  #
7
7
  # Permission is hereby granted, free of charge, to any person obtaining a copy
8
8
  # of this software and associated documentation files (the 'Software'), to deal
@@ -24,27 +24,18 @@
24
24
 
25
25
  require 'English'
26
26
  Gem::Specification.new do |s|
27
- s.specification_version = 2 if s.respond_to? :specification_version=
28
- if s.respond_to? :required_rubygems_version=
29
- s.required_rubygems_version = Gem::Requirement.new('>= 0')
30
- end
31
- s.rubygems_version = '2.3.3'
27
+ s.required_rubygems_version = Gem::Requirement.new('>= 0') if s.respond_to? :required_rubygems_version=
32
28
  s.required_ruby_version = '>=2.3'
33
29
  s.name = 'backtrace'
34
- s.version = '0.3.0'
30
+ s.version = '0.4.0'
35
31
  s.license = 'MIT'
36
32
  s.summary = 'Backtrace printer'
37
- s.description = 'Nicely prints Ruby backtrace'
33
+ s.description = 'Nicely prints Ruby backtrace to the console'
38
34
  s.authors = ['Yegor Bugayenko']
39
35
  s.email = 'yegor256@gmail.com'
40
- s.homepage = 'http://github.com/yegor256/backtrace'
36
+ s.homepage = 'https://github.com/yegor256/backtrace'
41
37
  s.files = `git ls-files`.split($RS)
42
- s.test_files = s.files.grep(%r{^(test)/})
43
38
  s.rdoc_options = ['--charset=UTF-8']
44
39
  s.extra_rdoc_files = ['README.md']
45
- s.add_development_dependency 'minitest', '~>5.11'
46
- s.add_development_dependency 'rake', '~>12.3'
47
- s.add_development_dependency 'rdoc', '~>4.2'
48
- s.add_development_dependency 'rubocop', '0.58.1'
49
- s.add_development_dependency 'rubocop-rspec', '1.27.0'
40
+ s.metadata['rubygems_mfa_required'] = 'true'
50
41
  end
data/lib/backtrace.rb CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  # (The MIT License)
4
4
  #
5
- # Copyright (c) 2018 Yegor Bugayenko
5
+ # Copyright (c) 2018-2023 Yegor Bugayenko
6
6
  #
7
7
  # Permission is hereby granted, free of charge, to any person obtaining a copy
8
8
  # of this software and associated documentation files (the 'Software'), to deal
@@ -24,7 +24,7 @@
24
24
 
25
25
  # Backtrace as a string.
26
26
  # Author:: Yegor Bugayenko (yegor256@gmail.com)
27
- # Copyright:: Copyright (c) 2018 Yegor Bugayenko
27
+ # Copyright:: Copyright (c) 2018-2023 Yegor Bugayenko
28
28
  # License:: MIT
29
29
  class Backtrace
30
30
  def initialize(exp, mine: '')
data/logo.svg ADDED
@@ -0,0 +1,19 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <svg width="314px" height="314px" viewBox="0 0 314 314" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
3
+ <!-- Generator: Sketch 43.2 (39069) - http://www.bohemiancoding.com/sketch -->
4
+ <title>Group 2</title>
5
+ <desc>Created with Sketch.</desc>
6
+ <defs></defs>
7
+ <g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
8
+ <g id="Group-2">
9
+ <g id="Group">
10
+ <circle id="Oval" fill="#053C5E" cx="157" cy="157" r="157"></circle>
11
+ <rect id="Rectangle" fill="#2B2B2B" x="0" y="234" width="300" height="68"></rect>
12
+ <text id="backtrace" font-family="CourierNewPS-BoldMT, Courier New" font-size="50" font-weight="bold" fill="#FFFFFF">
13
+ <tspan x="15.4780273" y="284">backtrace</tspan>
14
+ </text>
15
+ <path d="M135.676765,111.215287 C135.211714,113.540467 132.770932,120.688823 130.252813,127.100603 C127.734621,133.512383 125.2898,140.431445 124.819828,142.476214 C123.6868,147.405663 121.517836,147.185477 119.69487,141.95608 C116.899865,133.938362 105.171362,111.043501 103.859129,111.043501 C100.420089,111.043501 101.508757,114.986149 109.1771,130.30227 C113.739327,139.414532 118.032086,147.448041 118.716515,148.15443 C120.694817,150.196115 120.172626,154.319657 117.358599,158.877992 C113.567467,165.019055 107.570942,183.721189 108.054206,187.896804 C108.804956,194.383204 112.436054,192.210274 113.355359,184.724515 C114.48376,175.535577 120.945556,159.641154 124.897459,156.333653 C127.109021,154.482778 128.268636,151.905536 128.573284,148.163978 C128.818001,145.157747 131.906711,135.560972 135.437115,126.837819 C138.96752,118.114666 141.511492,110.079835 141.090434,108.982574 C139.755727,105.504315 136.554941,106.824333 135.676765,111.215287 M174.714659,126.841564 C169.37392,129.699438 169.197653,130.049915 167.452978,141.283475 C165.577352,153.360398 165.225112,168.513913 166.548289,180.203784 L167.566817,189.202501 L161.346213,191.9541 C154.601949,194.937416 150.91195,200.302465 153.156708,203.861146 C155.104824,206.949562 157.09025,206.70198 157.571826,203.310532 C158.083734,199.706169 166.097413,193.204052 170.29418,192.987978 C172.116999,192.894116 173.522874,191.717021 173.97823,189.903529 C174.383277,188.290613 177.740353,184.944554 181.438431,182.467858 C188.546172,177.707551 194.317883,170.450278 194.317883,166.273341 C194.317883,162.684548 189.493165,158.361603 185.487795,158.361603 C180.701636,158.361603 180.027195,155.239403 183.731222,150.229385 C188.308065,144.038966 188.284856,130.867646 183.690534,127.147387 C179.896537,124.075276 179.885006,124.074836 174.714659,126.841564 M182.67318,134.240439 C184.752542,140.153164 174.808961,161.185104 171.588639,157.68562 C169.868715,155.81653 172.863122,135.012708 175.266374,132.134564 C177.872553,129.013319 181.163896,129.949075 182.67318,134.240439 M184.854262,162.269586 C190.589839,163.855621 189.673839,167.881335 181.645765,176.371155 C177.281618,180.986262 173.904933,183.573859 173.371946,182.711474 C172.876636,181.91012 172.127869,176.711937 171.707987,171.159972 L170.944531,161.065463 L176.209475,161.200234 C179.105172,161.274339 182.995308,161.755548 184.854262,162.269586 M132.642184,172.492256 C131.593837,175.224098 133.152917,177.288844 136.264027,177.288844 C139.014965,177.288844 139.431396,176.221769 138.067531,172.667568 C137.039234,169.987871 133.645289,169.878218 132.642184,172.492256 M203.781503,185.840798 C203.781503,187.657595 209.264724,193.512152 210.966361,193.512152 C212.534035,193.512152 211.991059,187.391138 210.270768,185.670847 C208.092403,183.492409 203.781503,183.605293 203.781503,185.840798" id="Fill-6" fill="#427B8A" fill-rule="nonzero"></path>
16
+ </g>
17
+ </g>
18
+ </g>
19
+ </svg>
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
+ }
@@ -2,7 +2,7 @@
2
2
 
3
3
  # (The MIT License)
4
4
  #
5
- # Copyright (c) 2018 Yegor Bugayenko
5
+ # Copyright (c) 2018-2023 Yegor Bugayenko
6
6
  #
7
7
  # Permission is hereby granted, free of charge, to any person obtaining a copy
8
8
  # of this software and associated documentation files (the 'Software'), to deal
@@ -27,7 +27,7 @@ require_relative '../lib/backtrace'
27
27
 
28
28
  # Backtract test.
29
29
  # Author:: Yegor Bugayenko (yegor256@gmail.com)
30
- # Copyright:: Copyright (c) 2018 Yegor Bugayenko
30
+ # Copyright:: Copyright (c) 2018-2023 Yegor Bugayenko
31
31
  # License:: MIT
32
32
  class BacktraceTest < Minitest::Test
33
33
  def test_prints_exception
@@ -60,6 +60,7 @@ class BacktraceTest < Minitest::Test
60
60
 
61
61
  class FakeLog
62
62
  attr_reader :sent
63
+
63
64
  def error(msg)
64
65
  @sent = msg
65
66
  end
metadata CHANGED
@@ -1,86 +1,16 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: backtrace
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.0
4
+ version: 0.4.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: 2018-10-15 00:00:00.000000000 Z
12
- dependencies:
13
- - !ruby/object:Gem::Dependency
14
- name: minitest
15
- requirement: !ruby/object:Gem::Requirement
16
- requirements:
17
- - - "~>"
18
- - !ruby/object:Gem::Version
19
- version: '5.11'
20
- type: :development
21
- prerelease: false
22
- version_requirements: !ruby/object:Gem::Requirement
23
- requirements:
24
- - - "~>"
25
- - !ruby/object:Gem::Version
26
- version: '5.11'
27
- - !ruby/object:Gem::Dependency
28
- name: rake
29
- requirement: !ruby/object:Gem::Requirement
30
- requirements:
31
- - - "~>"
32
- - !ruby/object:Gem::Version
33
- version: '12.3'
34
- type: :development
35
- prerelease: false
36
- version_requirements: !ruby/object:Gem::Requirement
37
- requirements:
38
- - - "~>"
39
- - !ruby/object:Gem::Version
40
- version: '12.3'
41
- - !ruby/object:Gem::Dependency
42
- name: rdoc
43
- requirement: !ruby/object:Gem::Requirement
44
- requirements:
45
- - - "~>"
46
- - !ruby/object:Gem::Version
47
- version: '4.2'
48
- type: :development
49
- prerelease: false
50
- version_requirements: !ruby/object:Gem::Requirement
51
- requirements:
52
- - - "~>"
53
- - !ruby/object:Gem::Version
54
- version: '4.2'
55
- - !ruby/object:Gem::Dependency
56
- name: rubocop
57
- requirement: !ruby/object:Gem::Requirement
58
- requirements:
59
- - - '='
60
- - !ruby/object:Gem::Version
61
- version: 0.58.1
62
- type: :development
63
- prerelease: false
64
- version_requirements: !ruby/object:Gem::Requirement
65
- requirements:
66
- - - '='
67
- - !ruby/object:Gem::Version
68
- version: 0.58.1
69
- - !ruby/object:Gem::Dependency
70
- name: rubocop-rspec
71
- requirement: !ruby/object:Gem::Requirement
72
- requirements:
73
- - - '='
74
- - !ruby/object:Gem::Version
75
- version: 1.27.0
76
- type: :development
77
- prerelease: false
78
- version_requirements: !ruby/object:Gem::Requirement
79
- requirements:
80
- - - '='
81
- - !ruby/object:Gem::Version
82
- version: 1.27.0
83
- description: Nicely prints Ruby backtrace
11
+ date: 2023-06-19 00:00:00.000000000 Z
12
+ dependencies: []
13
+ description: Nicely prints Ruby backtrace to the console
84
14
  email: yegor256@gmail.com
85
15
  executables: []
86
16
  extensions: []
@@ -88,22 +18,29 @@ extra_rdoc_files:
88
18
  - README.md
89
19
  files:
90
20
  - ".0pdd.yml"
21
+ - ".github/workflows/pdd.yml"
22
+ - ".github/workflows/rake.yml"
23
+ - ".github/workflows/xcop.yml"
91
24
  - ".gitignore"
92
25
  - ".pdd"
93
26
  - ".rubocop.yml"
94
27
  - ".rultor.yml"
95
28
  - ".travis.yml"
96
29
  - Gemfile
30
+ - LICENSE.txt
97
31
  - README.md
98
32
  - Rakefile
99
33
  - backtrace.gemspec
100
34
  - lib/backtrace.rb
35
+ - logo.svg
36
+ - renovate.json
101
37
  - screenshot.png
102
38
  - test/test_backtrace.rb
103
- homepage: http://github.com/yegor256/backtrace
39
+ homepage: https://github.com/yegor256/backtrace
104
40
  licenses:
105
41
  - MIT
106
- metadata: {}
42
+ metadata:
43
+ rubygems_mfa_required: 'true'
107
44
  post_install_message:
108
45
  rdoc_options:
109
46
  - "--charset=UTF-8"
@@ -120,10 +57,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
120
57
  - !ruby/object:Gem::Version
121
58
  version: '0'
122
59
  requirements: []
123
- rubyforge_project:
124
- rubygems_version: 2.7.6
60
+ rubygems_version: 3.2.15
125
61
  signing_key:
126
- specification_version: 2
62
+ specification_version: 4
127
63
  summary: Backtrace printer
128
- test_files:
129
- - test/test_backtrace.rb
64
+ test_files: []