lpxc 0.0.3 → 0.0.4

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/{lpxc.rb → lib/lpxc.rb} +0 -0
  3. metadata +3 -4
  4. data/readme.md +0 -27
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 19631c08167371097e6da687a1e38d97d30471b6
4
- data.tar.gz: 117697d42d8b6b0fd5311682ccf82809dcbfcbd7
3
+ metadata.gz: 001fb59b50becee25a64490039d881a09a20545c
4
+ data.tar.gz: 59f3aff79c8de8a030918ea393f390e2d2ed8c15
5
5
  SHA512:
6
- metadata.gz: 7b0da8d3078581cabfe27d250a12ed77599d2a070fcc5e9476f67a5a91eedc634ed6d7285e78e20e8242f60fabb6e1ec587b70276dd9db0f98434e23b1e0ca83
7
- data.tar.gz: 10617fd0b33ea9b5d6eb32dad2e0b81fab5dff3f3cd6ecf3faa11d13fb266dd6d31705bcdc060c3dd657fc4cb2561b6be88684bd09f8449833b13f754ba74676
6
+ metadata.gz: 0c0e643950ce3eaa55daa90e22fdb0baaf08218c09ec8ee67232bf5df7237d5fbdb212c508e6e24cafa6d7f4629dbfb51023f8e96b5069de3e32d6a60a645994
7
+ data.tar.gz: 432f80cd8dbeed7a9940857bf53d53305d9a475749add03b8cf1ba6eda8443f036d02c96f4589c97146c2eb34e7a72f2d4997e3ae5b0d1a7d1b276278ffe6e3c
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.3
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
- - readme.md
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
- [![Build Status](https://drone.io/github.com/ryandotsmith/lpxc/status.png)](https://drone.io/github.com/ryandotsmith/lpxc/latest)
24
-
25
- ```bash
26
- $ ruby test.rb
27
- ```