srsh 0.7.0 → 0.8.0

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.
data/lib/srsh.rb ADDED
@@ -0,0 +1,9 @@
1
+ # frozen_string_literal: true
2
+
3
+ require_relative "srsh/runner"
4
+
5
+ module Srsh
6
+ def self.run(argv = ARGV)
7
+ Runner.run(argv)
8
+ end
9
+ end
metadata CHANGED
@@ -1,18 +1,18 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: srsh
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.7.0
4
+ version: 0.8.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - RobertFlexx
8
- bindir: bin
8
+ bindir: exe
9
9
  cert_chain: []
10
10
  date: 1980-01-02 00:00:00.000000000 Z
11
11
  dependencies: []
12
- description: srsh is a small Ruby-written interactive shell. It is its own shell and
13
- does not wrap bash or sh.
12
+ description: srsh is a Ruby-based interactive shell featuring a custom scripting language
13
+ (RSH), themes, plugins, and advanced line editing.
14
14
  email:
15
- - robertwilliamnelson2008@gmail.com
15
+ - ''
16
16
  executables:
17
17
  - srsh
18
18
  extensions: []
@@ -20,11 +20,12 @@ extra_rdoc_files: []
20
20
  files:
21
21
  - LICENSE
22
22
  - README.md
23
- - bin/srsh
24
- - lib/srsh/version.rb
25
- homepage: https://github.com/RobertFlexx/RSH
23
+ - exe/srsh
24
+ - lib/srsh.rb
25
+ - lib/srsh/runner.rb
26
+ homepage: https://github.com/RobertFlexx/srsh
26
27
  licenses:
27
- - Zlib
28
+ - MIT
28
29
  metadata: {}
29
30
  rdoc_options: []
30
31
  require_paths:
@@ -33,14 +34,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
33
34
  requirements:
34
35
  - - ">="
35
36
  - !ruby/object:Gem::Version
36
- version: '2.7'
37
+ version: 3.1.0
37
38
  required_rubygems_version: !ruby/object:Gem::Requirement
38
39
  requirements:
39
40
  - - ">="
40
41
  - !ruby/object:Gem::Version
41
42
  version: '0'
42
43
  requirements: []
43
- rubygems_version: 3.6.7
44
+ rubygems_version: 3.7.2
44
45
  specification_version: 4
45
- summary: srsh a simple Ruby shell.
46
+ summary: srsh - a simple Ruby shell with RSH scripting
46
47
  test_files: []