intar 2.16 → 2.17

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: 1e871a9a15a8e544e9e88d5cb06bf2b0ec3b38f75ae6a5396aabd02ed72d9d9e
4
- data.tar.gz: e3955b86060800a5699d7098579ee1474181374012a94bee25109707c7aa126f
3
+ metadata.gz: ca657e64327a8cda404e8a260ac85366046890fe21a903388d0aabbfda83e499
4
+ data.tar.gz: ccd323d0095cbd53b704e7a33a3cb40431f7b585be513cb4256fd0954a5b4f3c
5
5
  SHA512:
6
- metadata.gz: 85fdba632254cdc85eb3cd6ba2789abc842e4301ac491bcede18e1a658d9d8c797e7def229477fd452156a224964959b8e004fd576a50ced30042c1fe5723846
7
- data.tar.gz: b5a6dfd709c9567ef7f94d317ff7e0ac3babddc9b654e1e85435881299e31296a8b10b46de1e18f992da65fa65c02d91be1da1ee26261fdbbaa891f958ebe6c2
6
+ metadata.gz: 42ed716101d67d08b4583984a2ebcbdfc1a6ad476c6a6237b05a5753b71ee65e58e33d15f93d48f1c70c328b5716783e59eb27a520b6370ba863312227c0c178
7
+ data.tar.gz: ea00d84c6b4c0a8f79d40ec5d1495b27d5becaac9859175572d0af13a70efe0a487c7068551f330393db915fddc83b3ac23baacd22aa1ece2ecb9eb383f5548c
data/bin/intar CHANGED
@@ -4,7 +4,6 @@
4
4
  # intar -- Interactive Ruby evaluation
5
5
  #
6
6
 
7
- puts TOPLEVEL_BINDING.local_variables.inspect
8
7
  require "intar"
9
8
  require "appl"
10
9
 
@@ -93,6 +92,7 @@ class Intar::Appl < Application
93
92
  i.execute @args.shift while @args.notempty?
94
93
  i.run
95
94
  end
95
+ nil
96
96
  end
97
97
 
98
98
  private
data/lib/intar/version.rb CHANGED
@@ -4,7 +4,7 @@
4
4
 
5
5
  class Intar
6
6
 
7
- VERSION = "2.16".freeze
7
+ VERSION = "2.17".freeze
8
8
 
9
9
  end
10
10
 
data/lib/intar.rb CHANGED
@@ -144,7 +144,7 @@ class Intar
144
144
  rescue Quit
145
145
  break
146
146
  rescue Exception
147
- break if SystemExit === $! and not @params[ :catch_exit]
147
+ raise if SystemExit === $! and not @params[ :catch_exit]
148
148
  r = $!
149
149
  show_exception
150
150
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: intar
3
3
  version: !ruby/object:Gem::Version
4
- version: '2.16'
4
+ version: '2.17'
5
5
  platform: ruby
6
6
  authors:
7
7
  - Bertram Scharpf
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-11-27 00:00:00.000000000 Z
11
+ date: 2023-12-24 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: appl