mysh 0.1.3 → 0.1.4

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: ee8e1d97aa7b9d782e704bf95e171fd5f5c0a0f8
4
- data.tar.gz: 8d6e20a8673f1801b5557ac7ffa8487e90f7a778
3
+ metadata.gz: 598d1b6c7d25d38608c3cf63401013b9b3509a3b
4
+ data.tar.gz: c2e011cf3e1d038f79c243ca981fa68e4293ffff
5
5
  SHA512:
6
- metadata.gz: c0311532fd1e3fe7b15ad394cade305e0144d1aa999abb991c1a5a79f832d2e16b019f6eade646b526556aade570dc4684fe90daa330d1df3ffea390752f8a55
7
- data.tar.gz: dd3496581c50a907d0f7b9118f173cd7bd90976348672af854d8631b1ba95faa9dfc9b6a8a05c8ac5a93792c60c607c736c2ce144ad1df1d5a0fc714a9b1c9d1
6
+ metadata.gz: b9e5714a1804a5cfbf72d76e6c10909c9c8fcf7150b0614ef632f0869fc34f7f3709ea3d18f3cd9fd522d4c27acffa4c4c68b24a5f01068834f84951aad8ff6c
7
+ data.tar.gz: 851b8fb0d1dc2615516beb2cd39b55370678ce36d7f64c8f1a1e21e83e7086a07e3d4912b07816dcfbb558334c031db974b24e84d0183da763967ec7a5894361
@@ -11,13 +11,7 @@ module Mysh
11
11
  puts
12
12
 
13
13
  if args.empty?
14
- width = 0
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
@@ -0,0 +1,6 @@
1
+ 1) Internal mysh commands:
2
+ - executed by mysh directly.
3
+ - supports the following set of commands.
4
+
5
+ Command Description
6
+ ======= ===========
data/lib/mysh/version.rb CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  module Mysh
4
4
  #The version string of MY SHell.
5
- VERSION = "0.1.3"
5
+ VERSION = "0.1.4"
6
6
 
7
7
  #A brief summary of this gem.
8
8
  SUMMARY = "mysh -- a Ruby inspired command shell"
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.3
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-10 00:00:00.000000000 Z
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