vertica 1.0.0 → 1.0.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.travis.yml +2 -0
- data/CHANGELOG.md +4 -0
- data/README.md +3 -1
- data/lib/vertica/protocol/frontend/ssl_request.rb +1 -1
- data/lib/vertica/version.rb +1 -1
- data/test/functional/functional_connection_test.rb +5 -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: df3c0da7b3f06ebefc1510848802b932c951a289
|
4
|
+
data.tar.gz: 2ad214b56cf565eae9ae3d4c56dfdac202fece83
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 32f0269fcdc0e18f4a75b2cd515eddf85805e8f28f12b05a570e5227cc99152a46ef2e55560e4ab038fcdb359858ad19611319aa7bbc7faaf001a3598e897219
|
7
|
+
data.tar.gz: 21057ff1fd1aeb04b52de43c2a5f8e6d6ebc32d4e757608dc8dbba4f237f78ee2a8b828dadecb35893a358c6f68902e6cc65bf08eaa9bcee54fc722293bfa620
|
data/.travis.yml
CHANGED
data/CHANGELOG.md
CHANGED
data/README.md
CHANGED
@@ -29,6 +29,8 @@ Now, run `bundle install`.
|
|
29
29
|
|
30
30
|
## Usage
|
31
31
|
|
32
|
+
See the [API Documentation](http://www.rubydoc.info/gems/vertica) for a full reference of the API. Examples of basic use cases are below
|
33
|
+
|
32
34
|
### Connecting
|
33
35
|
|
34
36
|
The `Vertica.connect` methods takes keyword arguments and returns a connection
|
@@ -170,7 +172,7 @@ Travis CI against Vertica 7 CE, and against several Ruby versions.
|
|
170
172
|
### See also
|
171
173
|
|
172
174
|
* [Website](http://vanbergen.org/vertica)
|
173
|
-
* [API Documentation](http://www.rubydoc.info/gems/vertica
|
175
|
+
* [API Documentation](http://www.rubydoc.info/gems/vertica)
|
174
176
|
* [Vertica documentation](https://my.vertica.com/docs/7.1.x/HTML/index.htm)
|
175
177
|
* [sequel-vertica](https://github.com/camilo/sequel-vertica): Sequel integration
|
176
178
|
* [newrelic-vertica](https://github.com/wvanbergen/newrelic-vertica): NewRelic monitoring of queries
|
data/lib/vertica/version.rb
CHANGED
@@ -19,7 +19,11 @@ class FunctionalConnectionTest < Minitest::Test
|
|
19
19
|
refute connection.ssl?
|
20
20
|
|
21
21
|
rescue Vertica::Error::SSLNotSupported
|
22
|
-
|
22
|
+
if ENV['VERTICA_SERVER_SUPPORTS_SSL']
|
23
|
+
raise
|
24
|
+
else
|
25
|
+
puts "\nThe test server doesn't support SSL, so SSL connections could not be tested."
|
26
|
+
end
|
23
27
|
end
|
24
28
|
|
25
29
|
def test_interruptable_connection
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: vertica
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Jeff Smick
|
@@ -10,7 +10,7 @@ authors:
|
|
10
10
|
autorequire:
|
11
11
|
bindir: bin
|
12
12
|
cert_chain: []
|
13
|
-
date: 2016-
|
13
|
+
date: 2016-10-06 00:00:00.000000000 Z
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
16
16
|
name: rake
|