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 +4 -4
- data/CHANGELOG.md +8 -1
- data/CONTRIBUTING.md +1 -1
- data/lib/skylight/native_ext_fetcher.rb +5 -1
- data/lib/skylight/util/http.rb +1 -1
- data/lib/skylight/version.rb +1 -1
- metadata +6 -6
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 55e8ba15b3a326da21e30a82b9b6e2168dece9994cbea7759c5a958688e4be80
|
4
|
+
data.tar.gz: 2493f3eba07cbe5fc1a4e34a42ff953266ea98f6f77f61c59f90b7dae2a67870
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b5ab350b68e89e58b25545f8ddae89c3c2e9fb60a4da14247568c6561c7cea599ac150ee3f31b770395a0dbfa9c634b81a21deee556f729380fdb07567bea971
|
7
|
+
data.tar.gz: 3f53504376e385be18aa1f450c9e934a37661673580742408b5f70d67fa529cea4f9a8d31943ecbe57a3267054bb86341a5b4fb4017ad96be0be14cbde266a90
|
data/CHANGELOG.md
CHANGED
@@ -1,4 +1,11 @@
|
|
1
|
-
|
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.
|
data/CONTRIBUTING.md
CHANGED
@@ -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
|
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
|
-
|
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
|
data/lib/skylight/util/http.rb
CHANGED
data/lib/skylight/version.rb
CHANGED
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.
|
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-
|
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.
|
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.
|
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:
|
252
|
+
version: 1.3.1
|
253
253
|
requirements: []
|
254
254
|
rubyforge_project:
|
255
255
|
rubygems_version: 2.7.6
|