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.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.txt +12 -0
  3. data/README.txt +11 -0
  4. metadata +3 -1
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 132429fb363cad562b786149af838d0bc53560d7
4
- data.tar.gz: d260dcf10bbf2a71625190ee7a048833d9e37890
3
+ metadata.gz: 3d01048a923a2b30a5963aebc1a309538d959c37
4
+ data.tar.gz: 89e68ec69c0d8ecc2a93ddaa1190506b4cda0d52
5
5
  SHA512:
6
- metadata.gz: 26e73ebc03bb947e4e6aaec02e9aef5d227618f96f4301903c70a5c3dca4d05e2c10517e773497bb9aa0dc919493400c6d76925d079fe47b86d62e2f92ca99c0
7
- data.tar.gz: 531ec49297be46de26e3aa37e46a8cf49ddb2ba4490012e2809df9db4feb524e16c87b8c52e6fc168e76dcff1de3a56be9fe5269c0eb722aecb8b000ea174eee
6
+ metadata.gz: be407fef97273b717501adae390964c5732c586324d9b9098a5c9e5f04b6dac30934ead4c041a62e7200ea4b6d47db7d4860e308f6bd701f0932a9fb27dbfce9
7
+ data.tar.gz: 7cf62c9d8dfffc8f2079ec1c18cae57904ae3fb4dd6279401e101adfc37a20fb58afcc804736f31522a52b2d92ccacbad5deb7fbc57a572fd61719b9aa67de93
@@ -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
@@ -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.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