yarr 0.0.1 → 0.1.0
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/README.md +13 -2
- data/lib/interpreter.rb +1 -1
- data/spec/lib/interpreter_spec.rb +1 -1
- metadata +9 -9
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a1fbe1057acf20ff93f44d25a3446037e61711a1
|
4
|
+
data.tar.gz: 94df233db5edc837225655f6b58ddab898481eff
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5bd890d6e70a2156800d72f053197dd14f71c8e8001da4e5adfedae0c702b9ef39585e30792dbd28282389e32e0f73b25807904701e15c11e99be7ebe2ef7956
|
7
|
+
data.tar.gz: 79e57d3f4dd10f9131ee9e96f394f68d5e894a0e2df5f1eb64c7d57e790c503bbe69e4e5ae37390498a53970a1d78015220f02bf6b6ffe45800e8c4aeb4885e9
|
data/README.md
CHANGED
@@ -4,7 +4,9 @@
|
|
4
4
|
[](https://travis-ci.org/arturoherrero/yarr)
|
5
5
|
|
6
6
|
**YARR (Yet Another Ruby REPL)** is a Ruby REPL (just a hobby, won't be big and
|
7
|
-
professional like [Pry][1]). YARR was inspired by groovysh
|
7
|
+
professional like [Pry][1]). YARR was inspired by groovysh<sup>[1][2]</sup>,
|
8
|
+
IRB<sup>[2][3]</sup>, Pry<sup>[3][4]</sup>, Bash
|
9
|
+
<sup>[4][5]</sup> and Vim<sup>[5][6]</sup>.
|
8
10
|
|
9
11
|
## Installation
|
10
12
|
|
@@ -177,9 +179,18 @@ Su Mo Tu We Th Fr Sa
|
|
177
179
|
8 9 10 11 12 13 14
|
178
180
|
15 16 17 18 19 20 21
|
179
181
|
22 23 24 25 26 27 28
|
182
|
+
```
|
180
183
|
|
184
|
+
## Who made this?
|
181
185
|
|
182
|
-
|
186
|
+
This was made by Arturo Herrero under the MIT License. You can also find me on
|
187
|
+
Twitter [@ArturoHerrero][7].
|
183
188
|
|
184
189
|
|
185
190
|
[1]: http://pryrepl.org/
|
191
|
+
[2]: http://groovy-lang.org/groovysh.html
|
192
|
+
[3]: http://ruby-doc.org/stdlib/libdoc/irb/rdoc/IRB.html
|
193
|
+
[4]: http://pryrepl.org/
|
194
|
+
[5]: http://www.gnu.org/software/bash/
|
195
|
+
[6]: http://www.vim.org/
|
196
|
+
[7]: https://twitter.com/ArturoHerrero
|
data/lib/interpreter.rb
CHANGED
@@ -69,7 +69,7 @@ RSpec.describe Interpreter do
|
|
69
69
|
describe ":! cmd" do
|
70
70
|
let(:output) { "-rw-r--r-- 1 arturo staff 39 16 Feb 21:11 spec.rb" }
|
71
71
|
before do
|
72
|
-
allow(interpreter).to receive(:'`').with("ls -l").and_return(output)
|
72
|
+
allow(interpreter).to receive(:'`').with("export CLICOLOR=1; export CLICOLOR_FORCE=1; ls -l").and_return(output)
|
73
73
|
end
|
74
74
|
|
75
75
|
it "executes an external shell command" do
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: yarr
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0
|
4
|
+
version: 0.1.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Arturo Herrero
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2016-05-06 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: guard-rspec
|
@@ -16,42 +16,42 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - "~>"
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: '4.
|
19
|
+
version: '4.6'
|
20
20
|
type: :development
|
21
21
|
prerelease: false
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
23
23
|
requirements:
|
24
24
|
- - "~>"
|
25
25
|
- !ruby/object:Gem::Version
|
26
|
-
version: '4.
|
26
|
+
version: '4.6'
|
27
27
|
- !ruby/object:Gem::Dependency
|
28
28
|
name: rake
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
30
30
|
requirements:
|
31
31
|
- - "~>"
|
32
32
|
- !ruby/object:Gem::Version
|
33
|
-
version: '
|
33
|
+
version: '11.1'
|
34
34
|
type: :development
|
35
35
|
prerelease: false
|
36
36
|
version_requirements: !ruby/object:Gem::Requirement
|
37
37
|
requirements:
|
38
38
|
- - "~>"
|
39
39
|
- !ruby/object:Gem::Version
|
40
|
-
version: '
|
40
|
+
version: '11.1'
|
41
41
|
- !ruby/object:Gem::Dependency
|
42
42
|
name: rspec
|
43
43
|
requirement: !ruby/object:Gem::Requirement
|
44
44
|
requirements:
|
45
45
|
- - "~>"
|
46
46
|
- !ruby/object:Gem::Version
|
47
|
-
version: '3.
|
47
|
+
version: '3.4'
|
48
48
|
type: :development
|
49
49
|
prerelease: false
|
50
50
|
version_requirements: !ruby/object:Gem::Requirement
|
51
51
|
requirements:
|
52
52
|
- - "~>"
|
53
53
|
- !ruby/object:Gem::Version
|
54
|
-
version: '3.
|
54
|
+
version: '3.4'
|
55
55
|
description: YARR. Yet Another Ruby REPL. A Ruby REPL (just a hobby, won't be big
|
56
56
|
and professional like pry)
|
57
57
|
email: arturo.herrero@gmail.com
|
@@ -88,7 +88,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
88
88
|
version: '0'
|
89
89
|
requirements: []
|
90
90
|
rubyforge_project:
|
91
|
-
rubygems_version: 2.
|
91
|
+
rubygems_version: 2.5.1
|
92
92
|
signing_key:
|
93
93
|
specification_version: 4
|
94
94
|
summary: YARR. Yet Another Ruby REPL
|