xrpn 1.1.1 → 1.1.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: e68de2e1dce6105ffbd33fc928b806eb2f8f6bb095202aab47fcb3d948f03704
4
- data.tar.gz: 7212f0aab506d0d9fd52d53b84a613cb72b1c21b1391e6432eef389d8571e0ec
3
+ metadata.gz: b22a9c8f2cd083a9dd147f34f20468aa224f2846b1cf554240be57206411e708
4
+ data.tar.gz: 11bba86e3968509e1f687135ad28bb796a7c7dc3afdc53255e5c1fd7592a8941
5
5
  SHA512:
6
- metadata.gz: 6992a0349285f55c5e13b9fee3220037bda5eea8dd443605a8a9beb051aeb0c742cf825bc16e0a35bc367da0390657ba56140f5a541454175b94b3ff7438b4d7
7
- data.tar.gz: 1d4d7c36d899d446951d537d26e280af77a4255774de17ccdc418ae503a6e6124b0eec2438a7159fbae9faeaf92dfba0a2cc37343a1e890af31016bedaecc695
6
+ metadata.gz: 1a798e81a192b78bad45312ad6b0cfcf1060eccc3238a1dcd02ca3df6da4648f6d91f13f8b0e96dc7788a4d9ad4f22342343c526c31c689b64901d2aff2c9b16
7
+ data.tar.gz: 4f95de104c6e637bebbe385cea3c7377949cfba45c2b2c315fe9075c4f7515dac03f6b717b3a7954fceb2a12248719bd1901efa9e85de928da83277ee15e6e66
File without changes
data/lib/{bei → bei.rb} RENAMED
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
data/lib/{ind → ind.rb} RENAMED
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
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.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-10 00:00:00.000000000 Z
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