yarsh 0.1.0 → 0.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/README.md +1 -1
- data/lib/yarsh/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 5273b4e67dcb97cfa9dd5af63b83cfe7aa1d47cf27803baf27a0e35544346c19
|
|
4
|
+
data.tar.gz: 195f587ad4ee4dda6890520fdf2f2be20c7bdb2a6ab92f6d709dc24aaac5a7ad
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d0b448b5c4fbdec98e05c3519989e5ff74f8b8a7a5372a7d8772196ced90b15a64a5be7b97af6a7b954d9c08d046172e1c60ebb348018552f56fd09ca85aa8ee
|
|
7
|
+
data.tar.gz: b177ff3a557c6acdf842e2e29af9dcba09a118926b7d43c7d74507e5877952bef9bdf5faeab6b5f8f210d45ad1e2ce13eb8f01bf5593e08dbbabb464d42aa767
|
data/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# Yarsh
|
|
2
2
|
|
|
3
|
-
Yet Another Ruby SHell is a mix of Ruby and standard Shell
|
|
3
|
+
Yet Another Ruby SHell is a mix of Ruby and standard Shell REPL. Priority is given to Ruby but if the variable or method is not found or if it is a syntax error, it will be passed to the default shell environment. It enable the best of both worlds, the power of ruby and the simplicity of the standard Shell.
|
|
4
4
|
|
|
5
5
|
This project was made just for fun, to remember the basis of Ruby and to discover new features. To provide a good user experience, it uses `reline` under the hood which already implement all we want for a REPL: History, completion, etc.
|
|
6
6
|
|
data/lib/yarsh/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: yarsh
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- yarsh4all
|
|
@@ -24,7 +24,7 @@ dependencies:
|
|
|
24
24
|
- !ruby/object:Gem::Version
|
|
25
25
|
version: 1.7.0
|
|
26
26
|
description: |2
|
|
27
|
-
Yet Another Ruby SHell is a mix of Ruby and standard Shell
|
|
27
|
+
Yet Another Ruby SHell is a mix of Ruby and standard Shell REPL.
|
|
28
28
|
Priority is given to Ruby but if the variable or method is not found or
|
|
29
29
|
if it is a syntax error, it will be passed to the default shell environment.
|
|
30
30
|
It enable the best of both worlds, the power of ruby and the simplicity
|