xrpn 1.9.1 → 1.9.5

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/xlib/hp_41 +4 -1
  3. data/xrpn.gemspec +2 -2
  4. metadata +3 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: a506c2229e1ac07680bb7885f8ee929e6fe24208070b1f6be31b13974796cb17
4
- data.tar.gz: cc2e596c179dc3b2fe86c434d9545d71b21f505059920359e8ebf7d0f548d213
3
+ metadata.gz: 751d07df684dda975c02987fa4b1988a898e90ca38cee59c43599afa70839461
4
+ data.tar.gz: 0b35a364703da952c89c3a4a4dd544437e838ec5806f4a60ad93702bce2a43c8
5
5
  SHA512:
6
- metadata.gz: 8231b1b1bd0d11121da97380a52c944c932532ce67348a3587f699add4d094465cd778bfb903cccc7080c0c4e63982893c9a0e50b5ddb415f78502338975754f
7
- data.tar.gz: 8815fa3fca80c8cf7e7210952162167d6e4ca8ed2ecbac09e6a7ca47b76d3fb57fc045d6358fb64071a80d6549bd2f0fd2fbf1e284e7325fdc49936bcb625024
6
+ metadata.gz: 4ac219252e205fb60271a60b5e5f9a8e6bb7f19c3dfe7e0ce8f2dce60ca1d1a8ffb83645ee664601a7a1a09ddd150c0c5275950ca1fd6bf5599443530023deae
7
+ data.tar.gz: 9506c918f3173955a7112c45e5d19c194a58c0579f797f6cfef605fdf65a71321da052b828c77b3246da4efd9b9868d8d35af4b02b9d3bba17c29af03b9bcca8
data/xlib/hp_41 CHANGED
@@ -1,6 +1,7 @@
1
1
  def hp_41 (a)
2
2
  a.map!{|x| x.sub( /^\s+/, "" )} # Remove spaces at start of line
3
3
  a.map!{|x| x.sub( /^\d\d+[^0-9.]/, "" )} # Remove line numbers from program
4
+ a.map!{|x| x.sub( /\t+; .*/, "" )} # Remove comments
4
5
  a.map!{|x| x.sub( /\s+$/, "" )} # Remove trailing spaces
5
6
  a.map!{|x| x.sub( /\s\s+/, "" )} # Remove multiple spaces
6
7
  a.map!{|x| x.sub( /([a-zA-Z ]*)/, &:downcase)} # Downcase everything (use the /i below here)
@@ -8,15 +9,17 @@ def hp_41 (a)
8
9
  a.map!{|x| x.sub( /R\^/i, "rup" )}
9
10
  a.map!{|x| x.sub( /X\^2/i, "sqr" )}
10
11
  a.map!{|x| x.sub( /X\*\*2/i, "sqr" )}
11
- a.map!{|x| x.sub( /^E(\d+)/i, '1e\1' )}
12
+ a.map!{|x| x.sub( /^1*E(\d+)/i,'1e\1' )}
12
13
  a.map!{|x| x.sub( /1\/X/i, "recip" )}
13
14
  a.map!{|x| x.sub( /HMS\+/i, "hmsplus" )}
14
15
  a.map!{|x| x.sub( /HMS-/i, "hmsminus" )}
15
16
  a.map!{|x| x.sub( /DATE\+/i, "dateplus" )}
16
17
  a.map!{|x| x.sub( /Σ\+/i, "splus" )}
17
18
  a.map!{|x| x.sub( /Σ-/i, "sminus" )}
19
+ a.map!{|x| x.sub( /ΣREG/i, "sreg" )}
18
20
  a.map!{|x| x.sub( /S\+/i, "splus" )}
19
21
  a.map!{|x| x.sub( /S-/i, "sminus" )}
22
+ a.map!{|x| x.sub( /SREG/i, "sreg" )}
20
23
  a.map!{|x| x.sub( /SIGMA\+/i, "splus" )}
21
24
  a.map!{|x| x.sub( /SIGMA-/i, "sminus" )}
22
25
  a.map!{|x| x.sub( /SIGMAREG/, "sreg" )}
data/xrpn.gemspec CHANGED
@@ -1,9 +1,9 @@
1
1
  Gem::Specification.new do |s|
2
2
  s.name = 'xrpn'
3
- s.version = '1.9.1'
3
+ s.version = '1.9.5'
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.9: Added functions 'lastpage' and 'load' and also added 'pprgtofile' in version 1.9.1 (see GitHub wiki)"
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.9: Added functions 'lastpage' and 'load' and also added 'pprgtofile' in version 1.9.1 (see GitHub wiki). 1.9.5: Comments are now removed when loading programs (comments start with a tab and a semicolon and a space and whatever)"
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: 1.9.1
4
+ version: 1.9.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Geir Isene
@@ -30,7 +30,8 @@ description: 'A full programming language and environment extending the features
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.9: Added functions
32
32
  ''lastpage'' and ''load'' and also added ''pprgtofile'' in version 1.9.1 (see GitHub
33
- wiki)'
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)'
34
35
  email: g@isene.com
35
36
  executables:
36
37
  - xrpn