xrpn 1.1.1 → 1.1.2
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/lib/{_xrpn_version → _xrpn_version.rb} +0 -0
- data/lib/{bei → bei.rb} +0 -0
- data/lib/{check → check.rb} +0 -0
- data/lib/{conditional → conditional.rb} +0 -0
- data/lib/{convert_base → convert_base.rb} +0 -0
- data/lib/{debug_mode → debug_mode.rb} +0 -0
- data/lib/{dtparse → dtparse.rb} +0 -0
- data/lib/{error → error.rb} +0 -0
- data/lib/{fact → fact.rb} +0 -0
- data/lib/{getpt → getpt.rb} +0 -0
- data/lib/{help → help.rb} +0 -0
- data/lib/{hp_41 → hp_41.rb} +0 -0
- data/lib/{ind → ind.rb} +0 -0
- data/lib/{load_xm → load_xm.rb} +0 -0
- data/lib/{locate_prg → locate_prg.rb} +0 -0
- data/lib/{numeric → numeric.rb} +0 -0
- data/lib/{numformat → numformat.rb} +0 -0
- data/lib/{optparse → optparse.rb} +0 -0
- data/lib/{read_cmd → read_cmd.rb} +0 -0
- data/lib/{read_state → read_state.rb} +0 -0
- data/lib/{save_state → save_state.rb} +0 -0
- data/lib/{save_xm → save_xm.rb} +0 -0
- data/lib/{setpt → setpt.rb} +0 -0
- data/lib/{string → string.rb} +0 -0
- data/lib/{theme_dark → theme_dark.rb} +0 -0
- data/lib/{theme_light → theme_light.rb} +0 -0
- data/lib/{xrpn_class → xrpn_class.rb} +0 -0
- data/xrpn.gemspec +16 -0
- metadata +30 -29
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: b22a9c8f2cd083a9dd147f34f20468aa224f2846b1cf554240be57206411e708
|
|
4
|
+
data.tar.gz: 11bba86e3968509e1f687135ad28bb796a7c7dc3afdc53255e5c1fd7592a8941
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 1a798e81a192b78bad45312ad6b0cfcf1060eccc3238a1dcd02ca3df6da4648f6d91f13f8b0e96dc7788a4d9ad4f22342343c526c31c689b64901d2aff2c9b16
|
|
7
|
+
data.tar.gz: 4f95de104c6e637bebbe385cea3c7377949cfba45c2b2c315fe9075c4f7515dac03f6b717b3a7954fceb2a12248719bd1901efa9e85de928da83277ee15e6e66
|
|
File without changes
|
data/lib/{bei → bei.rb}
RENAMED
|
File without changes
|
data/lib/{check → check.rb}
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
data/lib/{dtparse → dtparse.rb}
RENAMED
|
File without changes
|
data/lib/{error → error.rb}
RENAMED
|
File without changes
|
data/lib/{fact → fact.rb}
RENAMED
|
File without changes
|
data/lib/{getpt → getpt.rb}
RENAMED
|
File without changes
|
data/lib/{help → help.rb}
RENAMED
|
File without changes
|
data/lib/{hp_41 → hp_41.rb}
RENAMED
|
File without changes
|
data/lib/{ind → ind.rb}
RENAMED
|
File without changes
|
data/lib/{load_xm → load_xm.rb}
RENAMED
|
File without changes
|
|
File without changes
|
data/lib/{numeric → numeric.rb}
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
data/lib/{save_xm → save_xm.rb}
RENAMED
|
File without changes
|
data/lib/{setpt → setpt.rb}
RENAMED
|
File without changes
|
data/lib/{string → string.rb}
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
data/xrpn.gemspec
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
Gem::Specification.new do |s|
|
|
2
|
+
s.name = 'xrpn'
|
|
3
|
+
s.version = '1.1.2'
|
|
4
|
+
s.licenses = ['Unlicense']
|
|
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."
|
|
7
|
+
|
|
8
|
+
s.authors = ["Geir Isene"]
|
|
9
|
+
s.email = 'g@isene.com'
|
|
10
|
+
s.homepage = 'https://github.com/isene/XRPN'
|
|
11
|
+
|
|
12
|
+
s.add_runtime_dependency 'tty-prompt', '~> 0.23'
|
|
13
|
+
|
|
14
|
+
s.files = Dir.glob("cmd/*") + Dir.glob("lib/*") + ["bin/xrpn", "xrpn.gemspec"]
|
|
15
|
+
s.executables << 'xrpn'
|
|
16
|
+
end
|
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: 1.1.
|
|
4
|
+
version: 1.1.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Geir Isene
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2022-12-
|
|
11
|
+
date: 2022-12-12 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: tty-prompt
|
|
@@ -295,33 +295,34 @@ files:
|
|
|
295
295
|
- cmd/xtoa
|
|
296
296
|
- cmd/xy
|
|
297
297
|
- cmd/xyzalm
|
|
298
|
-
- lib/_xrpn_version
|
|
299
|
-
- lib/bei
|
|
300
|
-
- lib/check
|
|
301
|
-
- lib/conditional
|
|
302
|
-
- lib/convert_base
|
|
303
|
-
- lib/debug_mode
|
|
304
|
-
- lib/dtparse
|
|
305
|
-
- lib/error
|
|
306
|
-
- lib/fact
|
|
307
|
-
- lib/getpt
|
|
308
|
-
- lib/help
|
|
309
|
-
- lib/hp_41
|
|
310
|
-
- lib/ind
|
|
311
|
-
- lib/load_xm
|
|
312
|
-
- lib/locate_prg
|
|
313
|
-
- lib/numeric
|
|
314
|
-
- lib/numformat
|
|
315
|
-
- lib/optparse
|
|
316
|
-
- lib/read_cmd
|
|
317
|
-
- lib/read_state
|
|
318
|
-
- lib/save_state
|
|
319
|
-
- lib/save_xm
|
|
320
|
-
- lib/setpt
|
|
321
|
-
- lib/string
|
|
322
|
-
- lib/theme_dark
|
|
323
|
-
- lib/theme_light
|
|
324
|
-
- lib/xrpn_class
|
|
298
|
+
- lib/_xrpn_version.rb
|
|
299
|
+
- lib/bei.rb
|
|
300
|
+
- lib/check.rb
|
|
301
|
+
- lib/conditional.rb
|
|
302
|
+
- lib/convert_base.rb
|
|
303
|
+
- lib/debug_mode.rb
|
|
304
|
+
- lib/dtparse.rb
|
|
305
|
+
- lib/error.rb
|
|
306
|
+
- lib/fact.rb
|
|
307
|
+
- lib/getpt.rb
|
|
308
|
+
- lib/help.rb
|
|
309
|
+
- lib/hp_41.rb
|
|
310
|
+
- lib/ind.rb
|
|
311
|
+
- lib/load_xm.rb
|
|
312
|
+
- lib/locate_prg.rb
|
|
313
|
+
- lib/numeric.rb
|
|
314
|
+
- lib/numformat.rb
|
|
315
|
+
- lib/optparse.rb
|
|
316
|
+
- lib/read_cmd.rb
|
|
317
|
+
- lib/read_state.rb
|
|
318
|
+
- lib/save_state.rb
|
|
319
|
+
- lib/save_xm.rb
|
|
320
|
+
- lib/setpt.rb
|
|
321
|
+
- lib/string.rb
|
|
322
|
+
- lib/theme_dark.rb
|
|
323
|
+
- lib/theme_light.rb
|
|
324
|
+
- lib/xrpn_class.rb
|
|
325
|
+
- xrpn.gemspec
|
|
325
326
|
homepage: https://github.com/isene/XRPN
|
|
326
327
|
licenses:
|
|
327
328
|
- Unlicense
|