xrpn 1.7 → 1.8.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/bin/xrpn +5 -1
- data/xlib/_xrpn_version +1 -1
- data/xrpn.gemspec +2 -2
- metadata +4 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b361a70885bcf614bc14cffea4083b8ea63d6d5ca5ab7e4291c9d2f03747553b
|
4
|
+
data.tar.gz: 6954b5084467a0aca973067db24b17b5ed1fdc1af209bf7a375e49dec3efed3e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 16f238ac510881d457d0d54fe1cbc477a9bc29e80ac16a1e9ac60085b9c08e491e6a0cc2efcecca2e84c883f54261a9c54ae169f8b47b092c4635f73c7663e0b
|
7
|
+
data.tar.gz: c8cd801cfa0b080697a4c1318d91a92e8efc15c7d59dfb702b5dec217aba75c329195911657ea7cefa8e4704e882ec4018a242f1cccba35f99664f4da6c97aa3
|
data/bin/xrpn
CHANGED
@@ -135,15 +135,19 @@ until @p.pc == @p.prg[@p.pg].length do
|
|
135
135
|
l2 ? ret = @p.send(l1.downcase, l2) : ret = @p.send(l1.downcase)
|
136
136
|
rescue ArgumentError
|
137
137
|
puts "Command needs an argument."
|
138
|
-
|
138
|
+
exit if $exe
|
139
139
|
rescue TypeError
|
140
140
|
error("ERROR: Wrong type.")
|
141
|
+
exit if $exe
|
141
142
|
rescue ZeroDivisionError
|
142
143
|
error("ERROR: Division by zero.")
|
144
|
+
exit if $exe
|
143
145
|
rescue FloatDomainError
|
144
146
|
error("ERROR: Number out of range.")
|
147
|
+
exit if $exe
|
145
148
|
rescue Math::DomainError
|
146
149
|
error("ERROR: Number out of domain.")
|
150
|
+
exit if $exe
|
147
151
|
end
|
148
152
|
puts ret if $debug and ret.instance_of? String
|
149
153
|
puts ret if not $debug and ret.to_s.match(/Error:/)
|
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 = '1.
|
3
|
+
s.version = '1.8.1'
|
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 1.7: Added function 'stdout' that writes content of X to STDOUT."
|
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 1.7: Added function 'stdout' that writes content of X to STDOUT. New in 1.8: Better error handling - especially for the rsh integration (https://github.com/isene/rsh). 1.8.1: Minor bug fix."
|
7
7
|
|
8
8
|
s.authors = ["Geir Isene"]
|
9
9
|
s.email = 'g@isene.com'
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: xrpn
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version:
|
4
|
+
version: 1.8.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Geir Isene
|
@@ -29,7 +29,9 @@ description: 'A full programming language and environment extending the features
|
|
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
31
|
programs and opens the possibilities to many, many more. New in 1.7: Added function
|
32
|
-
''stdout'' that writes content of X to STDOUT.
|
32
|
+
''stdout'' that writes content of X to STDOUT. New in 1.8: Better error handling
|
33
|
+
- especially for the rsh integration (https://github.com/isene/rsh). 1.8.1: Minor
|
34
|
+
bug fix.'
|
33
35
|
email: g@isene.com
|
34
36
|
executables:
|
35
37
|
- xrpn
|