xrpn 1.9.5 → 2.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.
- checksums.yaml +4 -4
- data/bin/xrpn +7 -6
- data/xcmd/cmds +8 -0
- data/xlib/_xrpn_version +2 -1
- data/xrpn.gemspec +2 -2
- metadata +9 -10
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: b9008be323da1eee11b22525fc7a1ca512a7682a12cbe03f8a7cb0964a5a80d5
|
|
4
|
+
data.tar.gz: 2e70c297fd2e010fdb85c7b078ffa79da3bff4b06aab3154de79c083a12430be
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: '093cf06d45e2db7c771acde846fe23119aa040bc0a13b4f509bed71371750e0cfbcfee0563cc3e01d72d7f36acb0bbd7dd80521a419ba1749e5cf447ec7a59b3'
|
|
7
|
+
data.tar.gz: 8041978530c6fb78fb50a8f63efb662513a588e1b4b047ac620432789b1a364c92426cb7135575e217cac198eb1d0276572ddaec0fefab3d0850a7b3aa9abfe8
|
data/bin/xrpn
CHANGED
|
@@ -23,12 +23,8 @@ require 'bigdecimal'
|
|
|
23
23
|
require 'open-uri'
|
|
24
24
|
require 'json'
|
|
25
25
|
require 'tty-prompt'
|
|
26
|
+
require 'timeout'
|
|
26
27
|
|
|
27
|
-
$gem = nil
|
|
28
|
-
begin
|
|
29
|
-
$gem = Gem.latest_spec_for("xrpn").gem_dir
|
|
30
|
-
rescue
|
|
31
|
-
end
|
|
32
28
|
|
|
33
29
|
# ENSURE DIRs
|
|
34
30
|
Dir.mkdir(Dir.home + "/.xrpn") unless File.exist?(Dir.home + "/.xrpn")
|
|
@@ -37,8 +33,11 @@ Dir.mkdir(Dir.home + "/.xrpn") unless File.exist?(Dir.home + "/.xrpn")
|
|
|
37
33
|
end
|
|
38
34
|
|
|
39
35
|
# READ LIBRARY AND COMMANDS
|
|
36
|
+
$gem = `VISUAL=echo gem open xrpn`.chomp
|
|
37
|
+
$gem = nil if $gem =~ /^Unable/
|
|
38
|
+
$cmd = []
|
|
40
39
|
Dir[$gem+"/xlib/*"].each { |file| load file } if $gem # Read xlib directory from the Gem
|
|
41
|
-
Dir[Dir.home+"/.xrpn/xlib/*"].each { |file| load file } # Read xlib directory from home dir
|
|
40
|
+
Dir[Dir.home+"/.xrpn/xlib/*"].each { |file| load file unless $cmd.include?(file) } # Read xlib directory from home dir
|
|
42
41
|
read_xcmd # Read XRPN commands (both from Gem and home dir)
|
|
43
42
|
|
|
44
43
|
# INITIALIZE VARIABLES
|
|
@@ -134,6 +133,8 @@ until @p.pc == @p.prg[@p.pg].length do
|
|
|
134
133
|
puts "No such command: #{l1}"
|
|
135
134
|
exit if $exe
|
|
136
135
|
@p.stop
|
|
136
|
+
elsif l1.downcase == "reload"
|
|
137
|
+
read_xcmd
|
|
137
138
|
elsif XRPN.method_defined?(l1.downcase) # Or execute the command with either 1 or 2 parts
|
|
138
139
|
begin
|
|
139
140
|
l2 ? ret = @p.send(l1.downcase, l2) : ret = @p.send(l1.downcase)
|
data/xcmd/cmds
ADDED
data/xlib/_xrpn_version
CHANGED
data/xrpn.gemspec
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
Gem::Specification.new do |s|
|
|
2
2
|
s.name = 'xrpn'
|
|
3
|
-
s.version = '
|
|
3
|
+
s.version = '2.0'
|
|
4
4
|
s.licenses = ['Unlicense']
|
|
5
5
|
s.summary = "XRPN - The eXtended RPN (Reverse Polish Notation) programming language"
|
|
6
|
-
s.description = "A full programming language and environment extending the features of the venerable HP calculator programmable calculators. With XRPN you can accomplish a wide range of modern programming tasks as well as running existing HP-41 FOCAL programs directly. XRPN gives modern life to tens of thousands of old HP calculator programs and opens the possibilities to many, many more. New in
|
|
6
|
+
s.description = "A full programming language and environment extending the features of the venerable HP calculator programmable calculators. With XRPN you can accomplish a wide range of modern programming tasks as well as running existing HP-41 FOCAL programs directly. XRPN gives modern life to tens of thousands of old HP calculator programs and opens the possibilities to many, many more. New in 2.0: Startup speed 4X. Added command 'cmds'."
|
|
7
7
|
|
|
8
8
|
s.authors = ["Geir Isene"]
|
|
9
9
|
s.email = 'g@isene.com'
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: xrpn
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version:
|
|
4
|
+
version: '2.0'
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Geir Isene
|
|
8
|
-
autorequire:
|
|
8
|
+
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2024-10-25 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: tty-prompt
|
|
@@ -28,10 +28,8 @@ description: 'A full programming language and environment extending the features
|
|
|
28
28
|
the venerable HP calculator programmable calculators. With XRPN you can accomplish
|
|
29
29
|
a wide range of modern programming tasks as well as running existing HP-41 FOCAL
|
|
30
30
|
programs directly. XRPN gives modern life to tens of thousands of old HP calculator
|
|
31
|
-
programs and opens the possibilities to many, many more. New in
|
|
32
|
-
|
|
33
|
-
wiki). 1.9.5: Comments are now removed when loading programs (comments start with
|
|
34
|
-
a tab and a semicolon and a space and whatever)'
|
|
31
|
+
programs and opens the possibilities to many, many more. New in 2.0: Startup speed
|
|
32
|
+
4X. Added command ''cmds''.'
|
|
35
33
|
email: g@isene.com
|
|
36
34
|
executables:
|
|
37
35
|
- xrpn
|
|
@@ -97,6 +95,7 @@ files:
|
|
|
97
95
|
- xcmd/cmdadd
|
|
98
96
|
- xcmd/cmddel
|
|
99
97
|
- xcmd/cmdhelp
|
|
98
|
+
- xcmd/cmds
|
|
100
99
|
- xcmd/copy
|
|
101
100
|
- xcmd/correct
|
|
102
101
|
- xcmd/cos
|
|
@@ -342,7 +341,7 @@ homepage: https://github.com/isene/XRPN
|
|
|
342
341
|
licenses:
|
|
343
342
|
- Unlicense
|
|
344
343
|
metadata: {}
|
|
345
|
-
post_install_message:
|
|
344
|
+
post_install_message:
|
|
346
345
|
rdoc_options: []
|
|
347
346
|
require_paths:
|
|
348
347
|
- lib
|
|
@@ -357,8 +356,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
357
356
|
- !ruby/object:Gem::Version
|
|
358
357
|
version: '0'
|
|
359
358
|
requirements: []
|
|
360
|
-
rubygems_version: 3.
|
|
361
|
-
signing_key:
|
|
359
|
+
rubygems_version: 3.4.20
|
|
360
|
+
signing_key:
|
|
362
361
|
specification_version: 4
|
|
363
362
|
summary: XRPN - The eXtended RPN (Reverse Polish Notation) programming language
|
|
364
363
|
test_files: []
|