xrpn 1.3 → 1.3.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/xcmd/cmdhelp +2 -2
- data/xrpn.gemspec +2 -2
- metadata +4 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 27231c4e65a8d95a2f08952c27e6f3795d621418fae26002178bf5b737a305cf
|
4
|
+
data.tar.gz: 784580f3199a29aff75747c2a468882894e1e266312977fe281ee761e0ae7d4c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0f8162216e88fe3da2a43efc8c1678329352c3eb41d6acd3d7aa1fde7b0b3a1961e910284f954225831da5d8fb370aea6b4463d7797324c9ea316852910afe4d
|
7
|
+
data.tar.gz: 1b100677cf5e626497f18ac44c42f2f857c5ea0e202a07f06253cd69b9ab71b35e6cb11cd7019aa502ef230250e85e73d1a736bc0482958f835e45d9d3496e9d
|
data/xcmd/cmdhelp
CHANGED
@@ -2,10 +2,10 @@ class XRPN
|
|
2
2
|
# Show help text for the command in Alpha
|
3
3
|
def cmdhelp
|
4
4
|
if $gem
|
5
|
-
c_gem = $gem + "/xcmd/" + @a
|
5
|
+
c_gem = $gem + "/xcmd/" + @a.downcase
|
6
6
|
c = File.read(c_gem) if File.exist?(c_gem)
|
7
7
|
end
|
8
|
-
c_loc = Dir.home + "/.xrpn/xcmd/" + @a
|
8
|
+
c_loc = Dir.home + "/.xrpn/xcmd/" + @a.downcase
|
9
9
|
c = File.read(c_loc) if File.exist?(c_loc)
|
10
10
|
if c
|
11
11
|
c = c[/.*#.*\n/][2..-2]
|
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'
|
3
|
+
s.version = '1.3.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."
|
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.3.1: Description of every command via CMDHELP. History with UP/DOWN keys in debug mode."
|
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.3.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Geir Isene
|
@@ -24,11 +24,12 @@ dependencies:
|
|
24
24
|
- - "~>"
|
25
25
|
- !ruby/object:Gem::Version
|
26
26
|
version: '0.23'
|
27
|
-
description: A full programming language and environment extending the features of
|
27
|
+
description: 'A full programming language and environment extending the features of
|
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.
|
31
|
+
programs and opens the possibilities to many, many more. New in 1.3.1: Description
|
32
|
+
of every command via CMDHELP. History with UP/DOWN keys in debug mode.'
|
32
33
|
email: g@isene.com
|
33
34
|
executables:
|
34
35
|
- xrpn
|