lpxc 0.0.3 → 0.0.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/{lpxc.rb → lib/lpxc.rb} +0 -0
- metadata +3 -4
- data/readme.md +0 -27
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 001fb59b50becee25a64490039d881a09a20545c
|
|
4
|
+
data.tar.gz: 59f3aff79c8de8a030918ea393f390e2d2ed8c15
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 0c0e643950ce3eaa55daa90e22fdb0baaf08218c09ec8ee67232bf5df7237d5fbdb212c508e6e24cafa6d7f4629dbfb51023f8e96b5069de3e32d6a60a645994
|
|
7
|
+
data.tar.gz: 432f80cd8dbeed7a9940857bf53d53305d9a475749add03b8cf1ba6eda8443f036d02c96f4589c97146c2eb34e7a72f2d4997e3ae5b0d1a7d1b276278ffe6e3c
|
data/{lpxc.rb → lib/lpxc.rb}
RENAMED
|
File without changes
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: lpxc
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.4
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Ryan Smith (♠ ace hacker)
|
|
@@ -16,8 +16,7 @@ executables: []
|
|
|
16
16
|
extensions: []
|
|
17
17
|
extra_rdoc_files: []
|
|
18
18
|
files:
|
|
19
|
-
-
|
|
20
|
-
- lpxc.rb
|
|
19
|
+
- ./lib/lpxc.rb
|
|
21
20
|
homepage: http://github.com/ryandotsmith/lpxc
|
|
22
21
|
licenses:
|
|
23
22
|
- MIT
|
|
@@ -25,7 +24,7 @@ metadata: {}
|
|
|
25
24
|
post_install_message:
|
|
26
25
|
rdoc_options: []
|
|
27
26
|
require_paths:
|
|
28
|
-
-
|
|
27
|
+
- lib
|
|
29
28
|
required_ruby_version: !ruby/object:Gem::Requirement
|
|
30
29
|
requirements:
|
|
31
30
|
- - '>='
|
data/readme.md
DELETED
|
@@ -1,27 +0,0 @@
|
|
|
1
|
-
#lpxc
|
|
2
|
-
|
|
3
|
-
Lpxc is a fast & efficient client for sending log messages to Heroku's logplex. It uses batching and keep-alive connections to enable high-throughput with little overhead.
|
|
4
|
-
|
|
5
|
-
## Documentation
|
|
6
|
-
|
|
7
|
-
[Rdoc](https://lpxc.s3.amazonaws.com/doc/Lpxc.html)
|
|
8
|
-
|
|
9
|
-
## Usage
|
|
10
|
-
|
|
11
|
-
```bash
|
|
12
|
-
$ gem install lpxc
|
|
13
|
-
```
|
|
14
|
-
|
|
15
|
-
```ruby
|
|
16
|
-
require 'lpxc'
|
|
17
|
-
lpxc = Lpxc.new
|
|
18
|
-
lpxc.puts("hello world", 't.123')
|
|
19
|
-
```
|
|
20
|
-
|
|
21
|
-
## Runing Tests
|
|
22
|
-
|
|
23
|
-
[](https://drone.io/github.com/ryandotsmith/lpxc/latest)
|
|
24
|
-
|
|
25
|
-
```bash
|
|
26
|
-
$ ruby test.rb
|
|
27
|
-
```
|