every_day_irb 2.1.0 → 2.1.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: c4bf811a35caf66a1fef10a52f9fb3f234c6050bedb1797e4026f20f72e40e27
4
- data.tar.gz: 2cb5ec001f658c697e1caaa9137abfc0e5c949828dafed70f31117980b227af4
3
+ metadata.gz: 63b54ae5658ab766b9b11309684504b8fa40ed1ba8514d20c7794c90cb73275f
4
+ data.tar.gz: 2f9f355a588e94980e8e7186e5f9ad789b1ddc3ca7ff1f8fba3ef9759c521e95
5
5
  SHA512:
6
- metadata.gz: 9ad2ffdca08455a4c9eb204a93b386460b470f29357890dd4fa3637433623b2ab783a656d1bfb64673bba589306eeefcfdaec21ec41150ba94dd769a05ba7a2c
7
- data.tar.gz: 2a5045aa4a9f5bb41ddd74b0a6144e958a10a0512579b6d0a56a8b21d3ae45622026b4554c722847967b40c4862ba9f7b630c3be0b3aa071792b832c6d58cead
6
+ metadata.gz: f379ad16388abc35a36015bc6ee219ce67b1d8725728378e992c4a519aae1a960bef10aa21b0f4fd07a0525111f989802b299c5a98d898968c7f795a24238558
7
+ data.tar.gz: e23d016a3c95d27830522ffdd6248fa05ac746fadbb0940231bc53f9c2e06257c93b185cf246fb3094bd4eccbade1a2ecac43cb16705a5d537ca580b2bae3391
@@ -1,5 +1,9 @@
1
1
  ## CHANGELOG
2
2
 
3
+ ### 2.1.1
4
+
5
+ - Loosen Ruby dependency to allow Ruby 3.0
6
+
3
7
  ### 2.1.0
4
8
 
5
9
  - Separate every_day_irb into its own git repository
@@ -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
@@ -1,4 +1,4 @@
1
- # Every day… IRB [![[version]](https://badge.fury.io/rb/every_day_irb.svg)](http://badge.fury.io/rb/every_day_irb) [![[travis]](https://travis-ci.org/janlelis/every_day_irb.svg)](https://travis-ci.org/janlelis/every_day_irb)
1
+ # Every day… IRB [![[version]](https://badge.fury.io/rb/every_day_irb.svg)](https://badge.fury.io/rb/every_day_irb) [![[travis]](https://travis-ci.org/janlelis/every_day_irb.svg)](https://travis-ci.org/janlelis/every_day_irb)
2
2
 
3
3
  Provides utility methods useful in IRB, like a `rq` method for requiring libraries, or `ls` for showing the list of files of the current directory. Part of [Irbtools](https://irb.tools).
4
4
 
@@ -35,4 +35,4 @@ More info at the [Irbtools README](https://github.com/janlelis/irbtools#irbtools
35
35
 
36
36
  ## MIT License
37
37
 
38
- Copyright (C) 2010-2019 Jan Lelis <http://janlelis.com>. Released under the MIT license.
38
+ Copyright (C) 2010-2020 Jan Lelis <https://janlelis.com>. Released under the MIT license.
@@ -8,7 +8,7 @@ Gem::Specification.new do |gem|
8
8
  gem.summary = "EveryDayIrb simplifies daily life in IRB."
9
9
  gem.description = "EveryDayIrb simplifies daily life in IRB with commands like: ls, cat, rq, rrq, ld, reset!, ..."
10
10
  gem.authors = ["Jan Lelis"]
11
- gem.email = ["mail@janlelis.de"]
11
+ gem.email = ["hi@ruby.consulting"]
12
12
  gem.homepage = "https://irb.tools"
13
13
  gem.license = "MIT"
14
14
 
@@ -17,6 +17,6 @@ Gem::Specification.new do |gem|
17
17
  gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
18
18
  gem.require_paths = ["lib"]
19
19
 
20
- gem.required_ruby_version = "~> 2.0"
20
+ gem.required_ruby_version = ">= 2.0", "< 4.0"
21
21
  gem.add_dependency 'cd', '~> 1.0'
22
22
  end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module EveryDayIrb
4
- VERSION = "2.1.0"
4
+ VERSION = "2.1.1"
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: every_day_irb
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.1.0
4
+ version: 2.1.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-04-02 00:00:00.000000000 Z
11
+ date: 2020-12-25 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: cd
@@ -27,7 +27,7 @@ dependencies:
27
27
  description: 'EveryDayIrb simplifies daily life in IRB with commands like: ls, cat,
28
28
  rq, rrq, ld, reset!, ...'
29
29
  email:
30
- - mail@janlelis.de
30
+ - hi@ruby.consulting
31
31
  executables: []
32
32
  extensions: []
33
33
  extra_rdoc_files: []
@@ -37,6 +37,7 @@ files:
37
37
  - CHANGELOG.md
38
38
  - CODE_OF_CONDUCT.md
39
39
  - Gemfile
40
+ - Gemfile.lock
40
41
  - MIT-LICENSE.txt
41
42
  - README.md
42
43
  - Rakefile
@@ -54,16 +55,19 @@ require_paths:
54
55
  - lib
55
56
  required_ruby_version: !ruby/object:Gem::Requirement
56
57
  requirements:
57
- - - "~>"
58
+ - - ">="
58
59
  - !ruby/object:Gem::Version
59
60
  version: '2.0'
61
+ - - "<"
62
+ - !ruby/object:Gem::Version
63
+ version: '4.0'
60
64
  required_rubygems_version: !ruby/object:Gem::Requirement
61
65
  requirements:
62
66
  - - ">="
63
67
  - !ruby/object:Gem::Version
64
68
  version: '0'
65
69
  requirements: []
66
- rubygems_version: 3.0.3
70
+ rubygems_version: 3.1.2
67
71
  signing_key:
68
72
  specification_version: 4
69
73
  summary: EveryDayIrb simplifies daily life in IRB.