mysh 0.1.3 → 0.1.4
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/lib/mysh/commands/help.rb +1 -7
- data/lib/mysh/commands/help_internal.txt +6 -0
- data/lib/mysh/version.rb +1 -1
- metadata +3 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 598d1b6c7d25d38608c3cf63401013b9b3509a3b
|
|
4
|
+
data.tar.gz: c2e011cf3e1d038f79c243ca981fa68e4293ffff
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b9e5714a1804a5cfbf72d76e6c10909c9c8fcf7150b0614ef632f0869fc34f7f3709ea3d18f3cd9fd522d4c27acffa4c4c68b24a5f01068834f84951aad8ff6c
|
|
7
|
+
data.tar.gz: 851b8fb0d1dc2615516beb2cd39b55370678ce36d7f64c8f1a1e21e83e7086a07e3d4912b07816dcfbb558334c031db974b24e84d0183da763967ec7a5894361
|
data/lib/mysh/commands/help.rb
CHANGED
|
@@ -11,13 +11,7 @@ module Mysh
|
|
|
11
11
|
puts
|
|
12
12
|
|
|
13
13
|
if args.empty?
|
|
14
|
-
|
|
15
|
-
puts "1) Internal mysh commands:"
|
|
16
|
-
puts " - executed by mysh directly."
|
|
17
|
-
puts " - supports the following set of commands."
|
|
18
|
-
puts
|
|
19
|
-
puts "Command Description"
|
|
20
|
-
puts "======= ==========="
|
|
14
|
+
puts IO.read(File.dirname(__FILE__) + '/help_internal.txt')
|
|
21
15
|
|
|
22
16
|
InternalCommand
|
|
23
17
|
.info
|
data/lib/mysh/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: mysh
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.4
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Peter Camilleri
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2016-08-
|
|
11
|
+
date: 2016-08-25 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|
|
@@ -140,6 +140,7 @@ files:
|
|
|
140
140
|
- lib/mysh/commands/exit.rb
|
|
141
141
|
- lib/mysh/commands/help.rb
|
|
142
142
|
- lib/mysh/commands/help.txt
|
|
143
|
+
- lib/mysh/commands/help_internal.txt
|
|
143
144
|
- lib/mysh/commands/help_math.txt
|
|
144
145
|
- lib/mysh/commands/help_ruby.txt
|
|
145
146
|
- lib/mysh/commands/history.rb
|