irbtools-more 2.4.0 → 2.4.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: ba8e13d2cf923781f920d2397d185a7a53d3bcc8b61fd5690805ee825c27aef7
4
- data.tar.gz: 95d57f8969dccce77443b7289ca11f44f451c3cb93cd442352f3c564eb8ca8aa
3
+ metadata.gz: 29d41da38055470dfca8c3e5e9bfd2747f2c90cb1bafdcbb02174e8f785d4105
4
+ data.tar.gz: 130fcd84321d10a66c096cd2b4bcb399e37f777a8cf6678e4da25b6b49e279b0
5
5
  SHA512:
6
- metadata.gz: b7d058ed97b45bcfca5b592b2bd2a7eae5d191510e80574597cba85ec99ca55d5166deab0d305e5e1e9f6a16b9a828771ceeb12272709a30a3c8fcfae0b80517
7
- data.tar.gz: '00482dac31b44f053aba8669f4fe4b593c318427184c55fa2328d36173a603dc7b8828c60396ed48ab9570ae57b16795395cce7fda1c6a1553f8b660c3350ba8'
6
+ metadata.gz: d50b9640c0240202bebed2d1dc8ba27c02959ec74aabba35526e0ab0cecd66c70dd7c4f487aa5395107014f722b771edd3aa0e375eef41edc85c63b6beeb96b0
7
+ data.tar.gz: b154212de55d7801dff9e09b8cbc4c7a593f76efebbef00ebe3c51ad56f2f0bc338e2063c0436f97b6153355ad88de6be58a8139ca73a89a1a67190f9a5e5b80
@@ -1,5 +1,8 @@
1
1
  # Irbtools (More) Changelog
2
2
 
3
+ ## 2.4.1
4
+ * Loosen Ruby dependency to allow Ruby 3.0
5
+
3
6
  ## 2.4.0
4
7
  * Bump looksee & core_docs for Ruby 2.7
5
8
 
@@ -1,4 +1,4 @@
1
- Copyright (c) 2010-2019 Jan Lelis
1
+ Copyright (c) 2010-2020 Jan Lelis
2
2
 
3
3
  Permission is hereby granted, free of charge, to any person obtaining
4
4
  a copy of this software and associated documentation files (the
data/README.md CHANGED
@@ -182,5 +182,5 @@ Irbtools.start
182
182
 
183
183
  ## J-_-L
184
184
 
185
- Copyright (c) 2010-2019 Jan Lelis <https://janlelis.com> released under the MIT
185
+ Copyright (c) 2010-2020 Jan Lelis <https://janlelis.com> released under the MIT
186
186
  license.
@@ -7,9 +7,9 @@ Gem::Specification.new do |s|
7
7
 
8
8
  s.homepage = 'https://github.com/janlelis/irbtools'
9
9
  s.authors = ["Jan Lelis"]
10
+ s.email = ["hi@ruby.consulting"]
10
11
  s.summary = 'irbtools-more adds bond and looksee to IRB.'
11
- s.description = 'irbtools-more adds bond and looksee to IRB (Gems that use core extensions). Simply put a require "irbtools/more" in the .irbrc file in your home directory to get started.'
12
- s.email = 'mail@janlelis.de'
12
+ s.description = 'irbtools-more extend irbtools with some extra functionality which requires a compile step, like the amazing looksee gem. Put `require "irbtools/more"` in the .irbrc file in your home directory to load irbtools together with irbtools/more'
13
13
  s.files = %w[
14
14
  lib/irbtools/more.rb
15
15
  lib/irbtools/more/version.rb
@@ -23,7 +23,7 @@ Gem::Specification.new do |s|
23
23
  ]
24
24
  s.license = 'MIT'
25
25
 
26
- s.required_ruby_version = '~> 2.0'
26
+ s.required_ruby_version = '>= 2.0', '< 4.0'
27
27
  s.add_dependency 'irbtools', '>= 2.2', '< 4.0'
28
28
  s.add_dependency 'bond', '~> 0.5'
29
29
  s.add_dependency 'looksee' , '~> 4.2'
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Irbtools
4
4
  module More
5
- VERSION = "2.4.0"
5
+ VERSION = "2.4.1"
6
6
  end
7
7
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: irbtools-more
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.4.0
4
+ version: 2.4.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jan Lelis
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2019-12-27 00:00:00.000000000 Z
11
+ date: 2020-12-24 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: irbtools
@@ -86,10 +86,11 @@ dependencies:
86
86
  - - "~>"
87
87
  - !ruby/object:Gem::Version
88
88
  version: '0.8'
89
- description: irbtools-more adds bond and looksee to IRB (Gems that use core extensions).
90
- Simply put a require "irbtools/more" in the .irbrc file in your home directory to
91
- get started.
92
- email: mail@janlelis.de
89
+ description: irbtools-more extend irbtools with some extra functionality which requires
90
+ a compile step, like the amazing looksee gem. Put `require "irbtools/more"` in the
91
+ .irbrc file in your home directory to load irbtools together with irbtools/more
92
+ email:
93
+ - hi@ruby.consulting
93
94
  executables: []
94
95
  extensions: []
95
96
  extra_rdoc_files:
@@ -114,16 +115,19 @@ require_paths:
114
115
  - lib
115
116
  required_ruby_version: !ruby/object:Gem::Requirement
116
117
  requirements:
117
- - - "~>"
118
+ - - ">="
118
119
  - !ruby/object:Gem::Version
119
120
  version: '2.0'
121
+ - - "<"
122
+ - !ruby/object:Gem::Version
123
+ version: '4.0'
120
124
  required_rubygems_version: !ruby/object:Gem::Requirement
121
125
  requirements:
122
126
  - - ">="
123
127
  - !ruby/object:Gem::Version
124
128
  version: '0'
125
129
  requirements: []
126
- rubygems_version: 3.0.6
130
+ rubygems_version: 3.1.2
127
131
  signing_key:
128
132
  specification_version: 4
129
133
  summary: irbtools-more adds bond and looksee to IRB.