libhoney 1.13.0 → 1.13.3

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: '085a461457305c6c626057ffa084b66bb3d364d3bf538a66116de45c8195b78e'
4
- data.tar.gz: 25cdef56d6c38db3b91f411763049acf5f536514002c1ca4ad519c406cb4309c
3
+ metadata.gz: 51804e108a35bb02266dab5fc88efeb5a916ad5302d0c5f7ca3438f3feab2092
4
+ data.tar.gz: 2abc6a8221595afb415649665ee31c54e58dcb0acf0489bf00e3cce0cd9abff0
5
5
  SHA512:
6
- metadata.gz: 5bd46c22d978845d9b124fda903632186ab69003f8a319db662718e222da0d18ce2215a9f54c71e413856a112b32fb6871a5a9d5f1539121120da2ea5476b30e
7
- data.tar.gz: 8982666d9a862224d7ce2200ac79f0876ded8ecc05a6b010c7ff57e77cb90e978c8ffb64fa1edbc3b1951a2b0ab4c1ba2722c9bacc1a24ee980347535f7caf93
6
+ metadata.gz: 74ca2203fb3c9f10290c4962c78434273825c15e84bf6f2600d476fa0ac71f5c916b0de48467dd8f68f8203c065887c7dd80627cb373cd66717e2e48ef91b9f2
7
+ data.tar.gz: ac7d560c0ecb90c709c5bc7a97e800a3f850c5ce55f6b57c11e326e694369eca58b5a2d91960c3abb2b7efef069e0d9d189eec8248b727ff8082810024c776d2
@@ -0,0 +1,77 @@
1
+ version: 2.0
2
+
3
+ test_steps: &test_steps
4
+ - checkout
5
+ - restore_cache:
6
+ keys:
7
+ - v1-dependencies-{{ checksum "Gemfile.lock" }}
8
+ # fallback to using the latest cache if no exact match is found
9
+ - v1-dependencies-
10
+ - run:
11
+ name: install dependencies
12
+ command: |
13
+ bundle install --jobs=4 --retry=3 --path vendor/bundle
14
+ - save_cache:
15
+ paths:
16
+ - ./vendor/bundle
17
+ key: v1-dependencies-{{ checksum "Gemfile.lock" }}
18
+ - run:
19
+ name: run rubocop
20
+ command: bundle exec rake rubocop
21
+ - run:
22
+ name: run tests
23
+ command: bundle exec rake test
24
+
25
+
26
+ jobs:
27
+ ruby-2.3:
28
+ docker:
29
+ - image: circleci/ruby:2.3
30
+ steps: *test_steps
31
+ ruby-2.4:
32
+ docker:
33
+ - image: circleci/ruby:2.4
34
+ steps: *test_steps
35
+ ruby-2.5:
36
+ docker:
37
+ - image: circleci/ruby:2.5
38
+ steps: *test_steps
39
+ ruby-2.6:
40
+ docker:
41
+ - image: circleci/ruby:2.6
42
+ steps: *test_steps
43
+ publish:
44
+ docker:
45
+ # Just randomly pick one recent ruby version
46
+ - image: circleci/ruby:2.6
47
+ working_directory: ~/repo
48
+ steps:
49
+ - checkout
50
+ - run:
51
+ name: Setup Rubygems
52
+ command: bash .circleci/setup-rubygems.sh
53
+ - run:
54
+ name: Publish to Rubygems
55
+ command: |
56
+ gem build libhoney.gemspec
57
+ gem push "libhoney-$(git describe --tags | cut -d "v" -f 2).gem"
58
+
59
+ workflows:
60
+ version: 2
61
+ build:
62
+ jobs:
63
+ - ruby-2.3
64
+ - ruby-2.4
65
+ - ruby-2.5
66
+ - ruby-2.6
67
+ - publish:
68
+ requires:
69
+ - ruby-2.3
70
+ - ruby-2.4
71
+ - ruby-2.5
72
+ - ruby-2.6
73
+ filters:
74
+ tags:
75
+ only: /.+/
76
+
77
+
@@ -0,0 +1,3 @@
1
+ mkdir ~/.gem
2
+ echo -e "---\r\n:rubygems_api_key: $RUBYGEMS_API_KEY" > ~/.gem/credentials
3
+ chmod 0600 /home/circleci/.gem/credentials
data/.gitignore CHANGED
@@ -43,7 +43,7 @@ build-iPhoneSimulator/
43
43
 
44
44
  # for a library or gem, you might want to ignore these files since the code is
45
45
  # intended to run in multiple environments; otherwise, check them in:
46
- Gemfile.lock
46
+ # Gemfile.lock
47
47
  .ruby-version
48
48
  .ruby-gemset
49
49
 
data/Gemfile.lock ADDED
@@ -0,0 +1,94 @@
1
+ PATH
2
+ remote: .
3
+ specs:
4
+ libhoney (1.13.3)
5
+ addressable (~> 2.0)
6
+ http (>= 2.0, < 5.0)
7
+
8
+ GEM
9
+ remote: https://rubygems.org/
10
+ specs:
11
+ addressable (2.6.0)
12
+ public_suffix (>= 2.0.2, < 4.0)
13
+ ast (2.4.0)
14
+ backports (3.15.0)
15
+ bump (0.8.0)
16
+ crack (0.4.3)
17
+ safe_yaml (~> 1.0.0)
18
+ domain_name (0.5.20190701)
19
+ unf (>= 0.0.5, < 1.0.0)
20
+ hashdiff (1.0.0)
21
+ http (4.1.1)
22
+ addressable (~> 2.3)
23
+ http-cookie (~> 1.0)
24
+ http-form_data (~> 2.0)
25
+ http_parser.rb (~> 0.6.0)
26
+ http-cookie (1.0.3)
27
+ domain_name (~> 0.5)
28
+ http-form_data (2.1.1)
29
+ http_parser.rb (0.6.0)
30
+ jaro_winkler (1.5.3)
31
+ minitest (5.11.3)
32
+ multi_json (1.13.1)
33
+ mustermann (1.0.3)
34
+ parallel (1.17.0)
35
+ parser (2.6.3.0)
36
+ ast (~> 2.4.0)
37
+ public_suffix (3.1.1)
38
+ rack (2.0.7)
39
+ rack-protection (2.0.5)
40
+ rack
41
+ rainbow (3.0.0)
42
+ rake (12.3.3)
43
+ rubocop (0.68.1)
44
+ jaro_winkler (~> 1.5.1)
45
+ parallel (~> 1.10)
46
+ parser (>= 2.5, != 2.5.1.1)
47
+ rainbow (>= 2.2.2, < 4.0)
48
+ ruby-progressbar (~> 1.7)
49
+ unicode-display_width (>= 1.4.0, < 1.6)
50
+ ruby-progressbar (1.10.1)
51
+ safe_yaml (1.0.5)
52
+ sinatra (2.0.5)
53
+ mustermann (~> 1.0)
54
+ rack (~> 2.0)
55
+ rack-protection (= 2.0.5)
56
+ tilt (~> 2.0)
57
+ sinatra-contrib (2.0.5)
58
+ backports (>= 2.8.2)
59
+ multi_json
60
+ mustermann (~> 1.0)
61
+ rack-protection (= 2.0.5)
62
+ sinatra (= 2.0.5)
63
+ tilt (>= 1.3, < 3)
64
+ tilt (2.0.9)
65
+ unf (0.1.4)
66
+ unf_ext
67
+ unf_ext (0.0.7.6)
68
+ unicode-display_width (1.5.0)
69
+ webmock (3.6.2)
70
+ addressable (>= 2.3.6)
71
+ crack (>= 0.3.2)
72
+ hashdiff (>= 0.4.0, < 2.0.0)
73
+ yard (0.9.20)
74
+ yardstick (0.9.9)
75
+ yard (~> 0.8, >= 0.8.7.2)
76
+
77
+ PLATFORMS
78
+ ruby
79
+
80
+ DEPENDENCIES
81
+ bump (~> 0.5)
82
+ bundler
83
+ libhoney!
84
+ minitest (~> 5.0)
85
+ rake (~> 12.3)
86
+ rubocop (< 0.69)
87
+ sinatra
88
+ sinatra-contrib
89
+ webmock (~> 3.4)
90
+ yard
91
+ yardstick (~> 0.9)
92
+
93
+ BUNDLED WITH
94
+ 1.16.0
data/README.md CHANGED
@@ -1,4 +1,4 @@
1
- # libhoney [![Build Status](https://travis-ci.org/honeycombio/libhoney-rb.svg?branch=master)](https://travis-ci.org/honeycombio/libhoney-rb) [![Gem Version](https://badge.fury.io/rb/libhoney.svg)](https://badge.fury.io/rb/libhoney)
1
+ # libhoney [![CircleCI Build Status](https://circleci.com/gh/honeycombio/libhoney-rb.svg?style=svg)](https://circleci.com/gh/honeycombio/libhoney-rb) [![Gem Version](https://badge.fury.io/rb/libhoney.svg)](https://badge.fury.io/rb/libhoney)
2
2
 
3
3
  Ruby gem for sending events to [Honeycomb](https://www.honeycomb.io), a service for debugging your software in production.
4
4
 
@@ -19,7 +19,7 @@ All contributions will be released under the Apache License 2.0.
19
19
 
20
20
  ### Releasing a new version
21
21
 
22
- Travis will automatically upload tagged releases to Rubygems. To release a new
22
+ CircleCI will automatically upload tagged releases to Rubygems. To release a new
23
23
  version, run
24
24
  ```
25
25
  bump patch --tag # Or bump minor --tag, etc.
@@ -1,3 +1,3 @@
1
1
  module Libhoney
2
- VERSION = '1.13.0'.freeze
2
+ VERSION = '1.13.3'.freeze
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: libhoney
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.13.0
4
+ version: 1.13.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - The Honeycomb.io Team
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2019-06-25 00:00:00.000000000 Z
11
+ date: 2019-08-16 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bump
@@ -190,12 +190,15 @@ executables: []
190
190
  extensions: []
191
191
  extra_rdoc_files: []
192
192
  files:
193
+ - ".circleci/config.yml"
194
+ - ".circleci/setup-rubygems.sh"
193
195
  - ".gitignore"
194
196
  - ".rubocop.yml"
195
197
  - ".rubocop_todo.yml"
196
198
  - ".travis.yml"
197
199
  - CONTRIBUTORS
198
200
  - Gemfile
201
+ - Gemfile.lock
199
202
  - LICENSE
200
203
  - NOTICE
201
204
  - README.md
@@ -234,8 +237,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
234
237
  - !ruby/object:Gem::Version
235
238
  version: '0'
236
239
  requirements: []
237
- rubyforge_project:
238
- rubygems_version: 2.7.7
240
+ rubygems_version: 3.0.3
239
241
  signing_key:
240
242
  specification_version: 4
241
243
  summary: send data to Honeycomb