le 2.7.1 → 2.7.2
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/LE.gemspec +1 -1
- data/README.md +1 -1
- data/test/host_spec.rb +3 -2
- data/test/http_spec.rb +3 -1
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 916d4e6c2c26d9c22ecc78a79d832233583b80ac
|
4
|
+
data.tar.gz: a64523517551f58c38da68a7de8aa8ba37a78f9a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2f0cbb3ad7e32867279b2a8da2a11c263c585525871cdc0073e695bbda9c31cd21697633e5a4da51f843b020a25da1ffc8983fcd6f2e6eea3a5fe901c11b9b7c
|
7
|
+
data.tar.gz: 3348ecc0f1c10099ae0b17eef51f4a95f10167254dc1135a7b8723aef8c614014af1f8e459b7b3e75dc3091672e7d297bbfcfe41d0c88e487aff666fdd22f9ca
|
data/.travis.yml
CHANGED
data/LE.gemspec
CHANGED
data/README.md
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
Logging to Logentries in Ruby
|
2
2
|
=============================
|
3
3
|
|
4
|
-
[![Build Status](https://travis-ci.org/logentries/le_ruby.svg?branch=master)](https://travis-ci.org/
|
4
|
+
[![Build Status](https://travis-ci.org/logentries/le_ruby.svg?branch=master)](https://travis-ci.org/logentries/le_ruby)
|
5
5
|
|
6
6
|
This is a Logentries library for logging from Ruby platforms, including Heroku.
|
7
7
|
|
data/test/host_spec.rb
CHANGED
@@ -6,7 +6,8 @@ describe Le::Host do
|
|
6
6
|
let(:local) { false }
|
7
7
|
let(:debug) { false }
|
8
8
|
let(:ssl) { true }
|
9
|
-
let(:
|
9
|
+
let(:udp) { nil }
|
10
|
+
|
10
11
|
|
11
12
|
let(:datahub_endpoint) { ["", 10000] }
|
12
13
|
let(:host_id) { ""}
|
@@ -14,7 +15,7 @@ describe Le::Host do
|
|
14
15
|
let(:data_endpoint) {true}
|
15
16
|
|
16
17
|
#let(:host) { Le::Host.new(token, local, debug, ssl) }
|
17
|
-
let(:host)
|
18
|
+
let(:host) { Le::Host::HTTP.new(token, local, debug, ssl, datahub_endpoint, host_id, custom_host, udp, data_endpoint) }
|
18
19
|
specify { host.must_be_instance_of Le::Host::HTTP }
|
19
20
|
|
20
21
|
end
|
data/test/http_spec.rb
CHANGED
@@ -12,10 +12,12 @@ describe Le::Host::HTTP do
|
|
12
12
|
let(:datahub_endpoint) { ["", 10000]}
|
13
13
|
let(:host_id) {""}
|
14
14
|
let(:custom_host) {[false, ""]}
|
15
|
+
let(:endpoint) {false}
|
16
|
+
|
15
17
|
|
16
18
|
|
17
19
|
# let(:host) { Le::Host::HTTP.new(token, local, debug, ssl) }
|
18
|
-
let(:host) { Le::Host::HTTP.new(token, local, debug, ssl, datahub_endpoint, host_id, custom_host, udp) }
|
20
|
+
let(:host) { Le::Host::HTTP.new(token, local, debug, ssl, datahub_endpoint, host_id, custom_host, udp, endpoint) }
|
19
21
|
|
20
22
|
let(:logger_console) { host.instance_variable_get(:@logger_console) }
|
21
23
|
let(:logger_console_dev) { logger_console.instance_variable_get(:@logdev).dev }
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: le
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.7.
|
4
|
+
version: 2.7.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Mark Lacomber
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2016-
|
11
|
+
date: 2016-05-10 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -95,7 +95,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
95
95
|
version: '0'
|
96
96
|
requirements: []
|
97
97
|
rubyforge_project:
|
98
|
-
rubygems_version: 2.0.14
|
98
|
+
rubygems_version: 2.0.14.1
|
99
99
|
signing_key:
|
100
100
|
specification_version: 4
|
101
101
|
summary: Logentries plugin
|