skylight 2.0.0.beta1 → 2.0.0.beta2
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 -1
- data/ext/extconf.rb +1 -1
- data/lib/skylight/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: db165039da03ba238e5a23b22d7194644f4f41652e85c881db67258998a953eb
|
4
|
+
data.tar.gz: 2552166e6e2982649d0ae01355cfd7648b7cecd4f905e33720adbac43b6cf70d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c433d4c32a30060baa0741220a6f49c0ebec54dfc42b9af3a9541d97b3178167caf68db4e27bd58882bc91826b817866e34c60b83a85f28db251139ab318cd3d
|
7
|
+
data.tar.gz: d6dc55b986b620bdca5b8a646f7f5e50c7e10f680931a08cd8eb87fb3c79291c41ece0aead98509c5c3203558271960ecc58fe69a19329640befc0ebd2450100
|
data/CHANGELOG.md
CHANGED
@@ -1,4 +1,8 @@
|
|
1
|
-
## 2.0.0-
|
1
|
+
## 2.0.0-beta2 (February 5, 2017)
|
2
|
+
|
3
|
+
* [BUGFIX] Fix incorrect module path that caused installation issues
|
4
|
+
|
5
|
+
## 2.0.0-beta1 (February 5, 2017)
|
2
6
|
|
3
7
|
* [FEATURE] New SQL lexer to support a wider variety of SQL queries.
|
4
8
|
* [BREAKING] Drop support for a number of deprecated libraries, including Rails prior to 4.2, Ruby prior to 2.2, and Sinatra prior to 1.4.
|
data/ext/extconf.rb
CHANGED
@@ -14,7 +14,7 @@ if File.exists?(File.expand_path("../../Gemfile", __FILE__))
|
|
14
14
|
$:.unshift File.expand_path("../../skylight-core/lib", __FILE__)
|
15
15
|
else
|
16
16
|
# Is there a better way to get this into lib?
|
17
|
-
gem 'skylight-core', Skylight::
|
17
|
+
gem 'skylight-core', Skylight::VERSION.tr('-', '.')
|
18
18
|
end
|
19
19
|
|
20
20
|
require 'skylight/native_ext_fetcher'
|
data/lib/skylight/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: skylight
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.0.0.
|
4
|
+
version: 2.0.0.beta2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tilde, Inc.
|
@@ -16,14 +16,14 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - '='
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: 2.0.0.
|
19
|
+
version: 2.0.0.beta2
|
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.0.
|
26
|
+
version: 2.0.0.beta2
|
27
27
|
- !ruby/object:Gem::Dependency
|
28
28
|
name: bundler
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|