skylight 0.9.2 → 0.9.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/ext/libskylight.yml +4 -4
- data/lib/skylight/native.rb +2 -2
- data/lib/skylight/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 1564afa767483c0b2e5ce584e197f5ea3f72933a
|
4
|
+
data.tar.gz: f20f7f995bfff398ee791d73066cd0495a8bef7d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 61bb59ac6c2c256370adcc09962b3555c1b68bdedf6590926283f4398900a3a83c852b7686f693d4068666b11f6145fa70b0e3c8e82e66436c5fdf490a2dc728
|
7
|
+
data.tar.gz: e1dc0699037df80f0127058b15263cf718f7e1e9fe441a00296e0edd5200d1f938afb9c1e2a823c3fad5fc2a97aed9c4e15ce3566d853db85ad7488851824680
|
data/CHANGELOG.md
CHANGED
@@ -1,3 +1,8 @@
|
|
1
|
+
## 0.9.3 (November 17, 2015)
|
2
|
+
|
3
|
+
* [BUGFIX] Update SQL lexer to handle more common queries
|
4
|
+
* [BUGFIX] Correctly report native gem installation failures
|
5
|
+
|
1
6
|
## 0.9.2 (November 13, 2015)
|
2
7
|
|
3
8
|
* [BUGFIX] Correctly update Rust agent to include SQL fixes that were supposed to land in 0.9.1.
|
data/ext/libskylight.yml
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
---
|
2
|
-
version: "0.7.0-
|
2
|
+
version: "0.7.0-629fc27"
|
3
3
|
checksums:
|
4
|
-
x86-linux: "
|
5
|
-
x86_64-linux: "
|
6
|
-
x86_64-darwin: "
|
4
|
+
x86-linux: "cd601750d0250d9e2cfed96fa9d4ac642a1b22053cf5ee5a7523da2f583fdf2d"
|
5
|
+
x86_64-linux: "eef6301799be9e1e6e70f71c59ac1449f52f65cf1dfe5c996762a42f31e08d5f"
|
6
|
+
x86_64-darwin: "62b19c0f34e983d8d752b1b9514d427cc019cfdf2f3f6b2f1424cf06710330d8"
|
data/lib/skylight/native.rb
CHANGED
@@ -47,12 +47,12 @@ module Skylight
|
|
47
47
|
# @api private
|
48
48
|
def self.check_install_errors(config)
|
49
49
|
# Note: An unsupported arch doesn't count as an error.
|
50
|
-
install_log = File.expand_path("
|
50
|
+
install_log = File.expand_path("../../../ext/install.log", __FILE__)
|
51
51
|
|
52
52
|
if File.exist?(install_log) && File.read(install_log) =~ /ERROR/
|
53
53
|
config.alert_logger.error \
|
54
54
|
"[SKYLIGHT] [#{Skylight::VERSION}] The Skylight native extension failed to install. " \
|
55
|
-
"Please check #{install_log} and notify support@skylight.io." \
|
55
|
+
"Please check #{install_log} and notify support@skylight.io. " \
|
56
56
|
"The missing extension will not affect the functioning of your application."
|
57
57
|
end
|
58
58
|
end
|
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: 0.9.
|
4
|
+
version: 0.9.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tilde, Inc.
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2015-11-
|
11
|
+
date: 2015-11-17 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: activesupport
|