rookout 0.1.54 → 0.1.56

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: e96a2d7b2fdc74a8731a9c547940f6c03a1bf2ee103ed433a65fdac6bff90e40
4
- data.tar.gz: 21bdac9616f7b5f7bcbcf781fdb2df81ff8ad7bfb0413ed96dea91565df61652
3
+ metadata.gz: c8fa5b3d059bebfddb806d412ee19edc5680ace455a7e69d947533d91fb68a74
4
+ data.tar.gz: eac042dc2b354ce73a66220b6ae7623be14824e540fc306b6b84a2fc9c5b304d
5
5
  SHA512:
6
- metadata.gz: 9886ef4e56f478fa227a5a50281179df07b2dc3aa28573d815969b2a57e0935b8b783ebe2738dee480de5eb559b28f5ab8f51357af3d21a50b3e3a2a95fcb7f6
7
- data.tar.gz: 65e7aa8a863b61994278f58540b95c27166543141145545f463cf2f0bd9a2cc989de3cdd6449353110659cca7558dd892214901008f862fcf3716d2da1c0af3f
6
+ metadata.gz: 28c4a962c4478dfeda21ad68e3eceb88f1bb0596a6eb885d741ab483b7ca00e34ee4827d84095b60827c46b8bd2f0adab662fc718cd0ed32fe3ac1feb6a511f1
7
+ data.tar.gz: 6f56418601b7e1fc343f6699fa9fd605860751cacec89368382c1e38fa5ab265af9a9c5ff7e7947bce8d65151365dbee01e2dfb4f4960458243345bd30aabccd
@@ -1,3 +1,3 @@
1
1
  module Rookout
2
- COMMIT = "9db1dfad4593de7df40d98fba0722f8778ef7528".freeze
2
+ COMMIT = "90ea969881b03cf95cef779cbcd072ef05270308".freeze
3
3
  end
@@ -85,7 +85,7 @@ module Rookout
85
85
  raise Exceptions::RookVersionNotSupported.new("platform", RUBY_ENGINE) unless RUBY_ENGINE == "ruby"
86
86
  raise Exceptions::RookVersionNotSupported.new("version", RUBY_VERSION) unless
87
87
  RUBY_VERSION.start_with?("2.7") || RUBY_VERSION.start_with?("2.6") ||
88
- RUBY_VERSION.start_with?("3.0") || RUBY_VERSION.start_with?("3.1")
88
+ RUBY_VERSION.start_with?("3.0") || RUBY_VERSION.start_with?("3.1") || RUBY_VERSION.start_with?("3.2")
89
89
  end
90
90
  end
91
91
  end
@@ -0,0 +1,12 @@
1
+ module Rookout
2
+ module RookoutStart
3
+ module_function
4
+
5
+ def on_import options = {}
6
+ require_relative "../rookout"
7
+ Rookout.start options
8
+ end
9
+ end
10
+ end
11
+
12
+ Rookout::RookoutStart.on_import
@@ -1,3 +1,3 @@
1
1
  module Rookout
2
- VERSION = "0.1.54".freeze
2
+ VERSION = "0.1.56".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.54
4
+ version: 0.1.56
5
5
  platform: ruby
6
6
  authors:
7
7
  - Liran Haimovitch
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-05-14 00:00:00.000000000 Z
11
+ date: 2023-08-14 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: concurrent-ruby
@@ -263,6 +263,7 @@ files:
263
263
  - lib/rookout/sanitizer.rb
264
264
  - lib/rookout/services/position.rb
265
265
  - lib/rookout/services/tracer.rb
266
+ - lib/rookout/start.rb
266
267
  - lib/rookout/trigger_services.rb
267
268
  - lib/rookout/user_warnings.rb
268
269
  - lib/rookout/utils.rb