rookout 0.1.48 → 0.1.49

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: 9b33fdba32a87693bf2468a34dff9c911de6ba8188424c82f00733589ac76deb
4
- data.tar.gz: bd7cabaa4a8a79820f5d2b3dadf7ac8cb6e98dd2db834e9e7290af66aab32ebf
3
+ metadata.gz: e24b722625291259ba768c1ad75926b62e900fbf7c998432e51be9b840969142
4
+ data.tar.gz: 3d9f0b19ab36191d76f161d8a8bd796f26136034e6a8fe633322fb6f3caa4868
5
5
  SHA512:
6
- metadata.gz: b488bc42bb1f2b96218c9b703a524f53caf584f096ba180b41cbb5b07ea196045d029bf83a588edfd0d2e1bf21cd97267ad6da19af709eeaa2e241624e8c68af
7
- data.tar.gz: cff6c76cb72cff0b3114a81f3939c68c480be5d0df69cd656122838c289f70bb5847f350ab5955243ffce5507471688b6d147c69f5e9d16639c75640bb548b17
6
+ metadata.gz: ef9a09cca2833464425abc253c3b9894dc23bbecb95ed8803824bac21dd2937423169d6ba900e18af916e8f27a53d4a2ad15d6e2269728a35cf95538dc02581d
7
+ data.tar.gz: dbcb67b9a0d68e21943f2a691c777e926767a91e4ba55c085e6f7295c6416a64e9dd0ab4157d15a91b20ce59778a46f3f460a2ba2a230db629dacda88fe585b2
@@ -1,3 +1,3 @@
1
1
  module Rookout
2
- COMMIT = "0948600017cccabaa543460e683c8897df62a483".freeze
2
+ COMMIT = "2947dc6fab8e12c54dcd46f6ec038ec65fc53232".freeze
3
3
  end
@@ -146,6 +146,13 @@ module Rookout
146
146
  end
147
147
  end
148
148
 
149
+ class RookInvalidPositionException < ToolException
150
+ def initialize filename, line
151
+ super "Invalid code position for TracePoint: #{filename}:#{line}",
152
+ { filename: filename, line: line }
153
+ end
154
+ end
155
+
149
156
  class RookObjectCannotBeSerialized < ToolException
150
157
  def initialize object, message
151
158
  super message, { "class" => object.class.to_s }
@@ -21,6 +21,9 @@ module Rookout
21
21
  begin
22
22
  trace_point.enable target: position.method, target_line: position.lineno
23
23
  rescue RuntimeError, ArgumentError => e
24
+ if e.message.include? "can not enable any hooks"
25
+ raise Exceptions::RookInvalidPositionException.new(aug.filename, position.lineno)
26
+ end
24
27
  raise Exceptions::RookSetTracepointFailed.new(position.lineno, e)
25
28
  end
26
29
 
@@ -1,3 +1,3 @@
1
1
  module Rookout
2
- VERSION = "0.1.48".freeze
2
+ VERSION = "0.1.49".freeze
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rookout
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.48
4
+ version: 0.1.49
5
5
  platform: ruby
6
6
  authors:
7
7
  - Liran Haimovitch
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-10-20 00:00:00.000000000 Z
11
+ date: 2022-10-24 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: binding_of_caller