skylight 2.0.1 → 2.0.2.beta

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: d0a9a81d716554486bfad06a8aac8f2919716c392f558603a93b5ba7ec145dfa
4
- data.tar.gz: 9786dc16f59127b3382e0c9372b64b719c8c0024da5d5daa2c4d37dd80244d0a
3
+ metadata.gz: 55e8ba15b3a326da21e30a82b9b6e2168dece9994cbea7759c5a958688e4be80
4
+ data.tar.gz: 2493f3eba07cbe5fc1a4e34a42ff953266ea98f6f77f61c59f90b7dae2a67870
5
5
  SHA512:
6
- metadata.gz: 3be50037d208b0725c093aad90afb2764b44c67088bd91d90a164e521b81dc9bfa67b2bd9a83f55ab71a5d6ef2b7421d366df4695e5efcbbac1bec8c82805d08
7
- data.tar.gz: 99e1f4392d9eaaaf057665dc27cf5c5c0db7c61babaf4ed9ed3f398327a69cbd061f1735885237c9bdaa988a9a2b96b600b3ed612d716d5fc587bb64f9f6621b
6
+ metadata.gz: b5ab350b68e89e58b25545f8ddae89c3c2e9fb60a4da14247568c6561c7cea599ac150ee3f31b770395a0dbfa9c634b81a21deee556f729380fdb07567bea971
7
+ data.tar.gz: 3f53504376e385be18aa1f450c9e934a37661673580742408b5f70d67fa529cea4f9a8d31943ecbe57a3267054bb86341a5b4fb4017ad96be0be14cbde266a90
@@ -1,4 +1,11 @@
1
- 7a9420a Correctly deprecate the Grape probe
1
+ ## 2.0.2.beta (May 25, 2018)
2
+
3
+ * [IMPROVEMENT] Improve handling of broken middleware traces
4
+ * [IMPROVEMENT] Don't rely on ActiveSupport's String#first (Thanks @foxtacles!)
5
+ * [BUGFIX] Susbcribe to AS::Notifications events individually
6
+ * [IMPROVEMENT] add normalizer for 'format_response.grape' notifications
7
+ * [BUGFIX] Correctly deprecate the Grape probe
8
+
2
9
  ## 2.0.1 (May 1, 2018)
3
10
 
4
11
  * [BUGFIX] Correctly deprecate the now unncessary Grape probe.
@@ -12,4 +12,4 @@ In general, we recommend that you speak with us about any new features you'd lik
12
12
 
13
13
  We have many Travis build configurations that must pass in order to merge a pull request. You can emulate these configurations locally by running `rake run_travis_builds`. The only prerequisites are that you have both [VirtualBox](https://www.virtualbox.org/wiki/VirtualBox) and [Vagrant](https://www.vagrantup.com/) installed (most recent versions are best).
14
14
 
15
- After that rake task completes, be sure to run `rake clean build`. This will delete the local native extension that was built when you ran `rake run_travis_builds` and rebuilds it.
15
+ After that rake task completes, be sure to run `rake clobber compile`. This will delete the local native extension that was built when you ran `rake run_travis_builds` and rebuilds it.
@@ -3,6 +3,7 @@ require 'logger'
3
3
  require 'net/http'
4
4
  require 'fileutils'
5
5
  require 'digest/sha2'
6
+ require 'open3'
6
7
  require 'skylight/util/ssl'
7
8
  require 'skylight/core/util/proxy'
8
9
 
@@ -78,7 +79,10 @@ module Skylight
78
79
  end
79
80
 
80
81
  Dir.chdir File.dirname(tar_gz) do
81
- system "tar xzvf #{tar_gz}"
82
+ cmd = "tar xzvf #{tar_gz}"
83
+ out, _status = Open3.capture2e(cmd)
84
+ log cmd
85
+ log out
82
86
  end
83
87
 
84
88
  true
@@ -22,7 +22,7 @@ module Skylight
22
22
  include Core::Util::Logging
23
23
 
24
24
  attr_accessor :authentication
25
- attr_reader :host, :port
25
+ attr_reader :host, :port, :config
26
26
 
27
27
  READ_EXCEPTIONS = [Timeout::Error, EOFError]
28
28
  # This doesn't exist on Ruby 1.9.3
@@ -1,4 +1,4 @@
1
1
  module Skylight
2
- VERSION = '2.0.1'
2
+ VERSION = '2.0.2.beta'
3
3
  end
4
4
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: skylight
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.0.1
4
+ version: 2.0.2.beta
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tilde, Inc.
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2018-05-01 00:00:00.000000000 Z
11
+ date: 2018-05-25 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: skylight-core
@@ -16,14 +16,14 @@ dependencies:
16
16
  requirements:
17
17
  - - '='
18
18
  - !ruby/object:Gem::Version
19
- version: 2.0.1
19
+ version: 2.0.2.beta
20
20
  type: :runtime
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
24
  - - '='
25
25
  - !ruby/object:Gem::Version
26
- version: 2.0.1
26
+ version: 2.0.2.beta
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: bundler
29
29
  requirement: !ruby/object:Gem::Requirement
@@ -247,9 +247,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
247
247
  version: 2.2.7
248
248
  required_rubygems_version: !ruby/object:Gem::Requirement
249
249
  requirements:
250
- - - ">="
250
+ - - ">"
251
251
  - !ruby/object:Gem::Version
252
- version: '0'
252
+ version: 1.3.1
253
253
  requirements: []
254
254
  rubyforge_project:
255
255
  rubygems_version: 2.7.6