irsh 0.2.2 → 0.2.3
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.txt +12 -0
- data/README.txt +11 -0
- metadata +3 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 3d01048a923a2b30a5963aebc1a309538d959c37
|
|
4
|
+
data.tar.gz: 89e68ec69c0d8ecc2a93ddaa1190506b4cda0d52
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: be407fef97273b717501adae390964c5732c586324d9b9098a5c9e5f04b6dac30934ead4c041a62e7200ea4b6d47db7d4860e308f6bd701f0932a9fb27dbfce9
|
|
7
|
+
data.tar.gz: 7cf62c9d8dfffc8f2079ec1c18cae57904ae3fb4dd6279401e101adfc37a20fb58afcc804736f31522a52b2d92ccacbad5deb7fbc57a572fd61719b9aa67de93
|
data/CHANGELOG.txt
ADDED
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
0.2.0
|
|
2
|
+
Initial version release
|
|
3
|
+
0.2.1
|
|
4
|
+
Added basic crash handling
|
|
5
|
+
0.2.2
|
|
6
|
+
Fixed literal execution by switching to system
|
|
7
|
+
0.2.3
|
|
8
|
+
Removed open3 dependency and added changelog and readme files
|
|
9
|
+
|
|
10
|
+
PLANS:
|
|
11
|
+
Extend Dir core class for directory shorthand
|
|
12
|
+
Get feedback to further improve the shell
|
data/README.txt
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
Irsh (Interactive Ruby SHell) is a dual-mode shell.
|
|
2
|
+
|
|
3
|
+
"Literal" mode behaves like a standard shell.
|
|
4
|
+
|
|
5
|
+
"OOP" mode is an interactive Ruby interpreter and requires valid Ruby code.
|
|
6
|
+
|
|
7
|
+
Toggle between both modes with $irsh
|
|
8
|
+
|
|
9
|
+
Soon there will be shorthand added to allow powerful OOP commands that make that mode directory-centric, i.e.
|
|
10
|
+
assigning directories to variables and running commands as methods with full regex support, such as
|
|
11
|
+
dir1.cp("file[1..10]", dir2)
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: irsh
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.2.
|
|
4
|
+
version: 0.2.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Havear
|
|
@@ -18,6 +18,8 @@ executables:
|
|
|
18
18
|
extensions: []
|
|
19
19
|
extra_rdoc_files: []
|
|
20
20
|
files:
|
|
21
|
+
- CHANGELOG.txt
|
|
22
|
+
- README.txt
|
|
21
23
|
- bin/irsh
|
|
22
24
|
- lib/dirextensions.rb
|
|
23
25
|
- lib/shell.rb
|