every_day_irb 2.1.0 → 2.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +4 -0
- data/MIT-LICENSE.txt +1 -1
- data/README.md +2 -2
- data/every_day_irb.gemspec +2 -2
- data/lib/every_day_irb/version.rb +1 -1
- metadata +9 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 63b54ae5658ab766b9b11309684504b8fa40ed1ba8514d20c7794c90cb73275f
|
4
|
+
data.tar.gz: 2f9f355a588e94980e8e7186e5f9ad789b1ddc3ca7ff1f8fba3ef9759c521e95
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f379ad16388abc35a36015bc6ee219ce67b1d8725728378e992c4a519aae1a960bef10aa21b0f4fd07a0525111f989802b299c5a98d898968c7f795a24238558
|
7
|
+
data.tar.gz: e23d016a3c95d27830522ffdd6248fa05ac746fadbb0940231bc53f9c2e06257c93b185cf246fb3094bd4eccbade1a2ecac43cb16705a5d537ca580b2bae3391
|
data/CHANGELOG.md
CHANGED
data/MIT-LICENSE.txt
CHANGED
data/README.md
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
# Every day… IRB [![[version]](https://badge.fury.io/rb/every_day_irb.svg)](
|
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-
|
38
|
+
Copyright (C) 2010-2020 Jan Lelis <https://janlelis.com>. Released under the MIT license.
|
data/every_day_irb.gemspec
CHANGED
@@ -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 = ["
|
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 = "
|
20
|
+
gem.required_ruby_version = ">= 2.0", "< 4.0"
|
21
21
|
gem.add_dependency 'cd', '~> 1.0'
|
22
22
|
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.
|
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:
|
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
|
-
-
|
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.
|
70
|
+
rubygems_version: 3.1.2
|
67
71
|
signing_key:
|
68
72
|
specification_version: 4
|
69
73
|
summary: EveryDayIrb simplifies daily life in IRB.
|