intar 2.14 → 2.15

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 +3 -3
  3. data/lib/intar/version.rb +1 -1
  4. data/lib/intar.rb +1 -1
  5. metadata +1 -1
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: dfabe8ba50f5502971175b8ec48582e1c24d68b75cf164ed10b7b1545b8ed1ec
4
- data.tar.gz: 376905c4c3f81b252662f6df9803ad8bd9038475c8ccc5c9adc6f79239f5c3c8
3
+ metadata.gz: 33d3b8a846784d28dd22d4d7b2bc8ae58885e80581457b5de57974db4bb86967
4
+ data.tar.gz: 7ce97b2ca8e36d0eb8ba68ce289c36e9de94f7a479c6b4ed24f6529030d621a9
5
5
  SHA512:
6
- metadata.gz: 9cf36852e6c4387d6eb85ac8b9dafaced557033bc7be3004eae58ea22529155d08cd7e213d9cfb5a3f630e8ac84b04113e35d39a5f811388c1dcc339b56fc9b0
7
- data.tar.gz: 156c61b56e014f810f45da42a7500a9ce6b5f937b090eb3d2f6e591c786441b0f51ffb0c5c353ba56e7ece4d9205546f6a9fad48d3bda726b6b6970f2e5ac102
6
+ metadata.gz: ba549858060a566243199d3404a5231e1496ace0fd5f2ffa0336d55b4bf528a355ea78c0294de80027bf243a4d0c0f4c25159caa942f0d9db1fae1a2b10bce22
7
+ data.tar.gz: 827d0d193fcdf092e3b5c79b0e67dca0763e1ee46f34cd70f70a0921d117729191017895219eaf2ce93a5e0a2144172f2bbcaeff221314b45a1dd7ae2856b4bf
data/README CHANGED
@@ -23,9 +23,9 @@ after this in Irb and in Intar:
23
23
 
24
24
  === Subcommands
25
25
 
26
- obj.method ! enter a sub-Intar
27
- obj.each ! enter multiple sub-Intars
28
- obj.method !x enter a sub-Intar with variable x
26
+ obj.method +> enter a sub-Intar
27
+ obj.each +> enter multiple sub-Intars
28
+ obj.method +>x enter a sub-Intar with variable x
29
29
 
30
30
  \q exit from the innermost sub-Intar
31
31
  \q! exit from the innermost sub-Intar loop
data/lib/intar/version.rb CHANGED
@@ -4,7 +4,7 @@
4
4
 
5
5
  class Intar
6
6
 
7
- VERSION = "2.14".freeze
7
+ VERSION = "2.15".freeze
8
8
 
9
9
  end
10
10
 
data/lib/intar.rb CHANGED
@@ -168,7 +168,7 @@ class Intar
168
168
  private
169
169
 
170
170
  def eval_line l
171
- ls = l.sub %r/\s+!(\w+)?\s*\z/ do
171
+ ls = l.sub %r/\s+\+>(\w+)?\s*\z/ do
172
172
  <<~EOT
173
173
  \ do |obj|
174
174
  Intar.open #{$1 ? "self" : "obj"} do |i|
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: intar
3
3
  version: !ruby/object:Gem::Version
4
- version: '2.14'
4
+ version: '2.15'
5
5
  platform: ruby
6
6
  authors:
7
7
  - Bertram Scharpf