xrpn 1.2 → 1.2.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (5) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +1 -5
  3. data/bin/xrpn +1 -1
  4. data/xrpn.gemspec +1 -1
  5. metadata +1 -1
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 4c4ea1cc27787e1898612bac796dc5331524da5053c84fce79ad7edb25bb011b
4
- data.tar.gz: 9c1605ed8cb190188ed604eca2fc4b6b7eb284f4aab5d7f6e65daef461cd41f3
3
+ metadata.gz: 930a6568e44e033e5ccbab14c67855c753fb97878d75eb617a0d9b4ba965c59f
4
+ data.tar.gz: 1f8a39559af29010508de54200d1549b417b819791d234d68e1402a665648041
5
5
  SHA512:
6
- metadata.gz: '04318bc2509ce3c5afdaf464f982ce3ecb9e9e5d101f3b8ceba58be24118fd0136ab9dedd2b2507d815ef989fdf07d379e6082e866dd9435257af8b389943249'
7
- data.tar.gz: a8e8cf8965a48cbb882afba983b10c86537eed2bc804f19f19672a2479db96678ebdb8b9533374da9eac7211306458d135e916471d31f42eecce7ce6f870ae02
6
+ metadata.gz: 630500030e9f7c524233b86303893c9bcc9e3226f166810773180b03437f8e58de03dd1f985826904dc5b56dcbfa59c2d275bcddf367595bb65c2e20915c4426
7
+ data.tar.gz: dacb690f4ab7a2d1fcf7594b6c1dc67b0e856e736bbd2641608ecbf69bc55482183eefe4cd3c63523d6df614a2b454d46d58ee3e6bd82c6727a2568c3ec886b2
data/README.md CHANGED
@@ -16,11 +16,7 @@ XRPN implements indirect addressing, self-modification and features well beyond
16
16
 
17
17
  You need Ruby installed to get XRPN to work.
18
18
 
19
- You also need to install the Ruby Gem tty-prompt: `gem install tty-prompt`
20
-
21
- To install XRPN, simply clone this repository and run the script `INSTALL.sh`. It is only tested on Linux but should work well on Mac OS and BSD systems. If you are on Windows, please tell me if it works in that environment. The install script will put create a symbolic link in your home directory - named ".xrpn" to make it a hidden directory - pointing to the cloned repo. It will also attempt to add a symlink to "~/bin" to make it easy to run XRPN.
22
-
23
- A Ruby Gemfile will be created soon that will make all this a lot easier.
19
+ To install XRPN, you can do `gem install 'xrpn'` or by cloning this repository and run the script `INSTALL.sh`. It is only tested on Linux but should work well on Mac OS and BSD systems. If you are on Windows, please tell me if it works in that environment. The install script will put create a symbolic link in your home directory - named ".xrpn" to make it a hidden directory - pointing to the cloned repo. It will also attempt to add a symlink to "~/bin" to make it easy to run XRPN. If you install XRPN by cloning this repo, you also need to install the Ruby Gem tty-prompt: `gem install tty-prompt`. If you install via `gem install 'xrpn'`, then this dependency is automatically taken care of. The gem is slower on startup than running XRPN from this repo.
24
20
 
25
21
  ## Run
26
22
 
data/bin/xrpn CHANGED
@@ -10,7 +10,7 @@ require 'open-uri'
10
10
  require 'json'
11
11
  require 'tty-prompt'
12
12
 
13
- $gem = Gem.latest_spec_for("xrpn").gem_dir if `gem list -i "^xrpn$"`
13
+ $gem = Gem.latest_spec_for("xrpn").gem_dir
14
14
 
15
15
  # ENSURE DIRs
16
16
  Dir.mkdir(Dir.home + "/.xrpn") unless File.exist?(Dir.home + "/.xrpn")
data/xrpn.gemspec CHANGED
@@ -1,6 +1,6 @@
1
1
  Gem::Specification.new do |s|
2
2
  s.name = 'xrpn'
3
- s.version = '1.2'
3
+ s.version = '1.2.1'
4
4
  s.licenses = ['Unlicense']
5
5
  s.summary = "XRPN - The eXtended RPN (Reverse Polish Notation) programming language"
6
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."
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.2'
4
+ version: 1.2.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Geir Isene