fluent-plugin-record-sort 0.1.0 → 0.1.1
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/.circleci/config.yml +38 -44
- data/README.md +1 -1
- data/lib/fluent/plugin/record/sort/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a6cb51bfe1b673b2e36bb68d491ec5c76bd121bef6397b5b8ecb41dd8fd04a85
|
4
|
+
data.tar.gz: 0bf7e53cb9670c42ee650bc26aa42f2567ced883707cfe6e604e1c61451947ed
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 292c79d91d10a43ba27ef2b612d6a53f05ba4c957faf9f34f2a6869b0a528e596683b55be136090bf6b29c5b9dd051ec4f97dd28683aabfc2f4a3e23b4e4c6bf
|
7
|
+
data.tar.gz: d160e3c5050b2b4ad927fcd171b12b443ed2efecb4cb5a967c6f6db7968590933d67ac0ad2ae0f6dc85a8e756707600cc72c4c3aeb56c00b574fd97f78457e1f
|
data/.circleci/config.yml
CHANGED
@@ -1,70 +1,64 @@
|
|
1
|
-
# Ruby CircleCI 2.0 configuration file
|
2
|
-
#
|
3
|
-
# Check https://circleci.com/docs/2.0/language-ruby/ for more details
|
4
|
-
#
|
5
1
|
version: 2
|
6
2
|
jobs:
|
3
|
+
deploy:
|
4
|
+
docker:
|
5
|
+
- image: circleci/ruby:2.3
|
6
|
+
working_directory: ~/repo
|
7
|
+
steps:
|
8
|
+
- checkout
|
9
|
+
- restore_cache:
|
10
|
+
keys:
|
11
|
+
- gem-{{ .Revision }}
|
12
|
+
- run:
|
13
|
+
name: push to rubygems
|
14
|
+
command: bin/deploy
|
7
15
|
build:
|
8
16
|
docker:
|
9
|
-
# specify the version you desire here
|
10
17
|
- image: circleci/ruby:2.3
|
11
|
-
|
12
|
-
# Specify service dependencies here if necessary
|
13
|
-
# CircleCI maintains a library of pre-built images
|
14
|
-
# documented at https://circleci.com/docs/2.0/circleci-images/
|
15
|
-
# - image: circleci/postgres:9.4
|
16
|
-
|
17
18
|
working_directory: ~/repo
|
18
|
-
|
19
19
|
steps:
|
20
20
|
- checkout
|
21
|
-
|
22
21
|
# Download and cache dependencies
|
23
22
|
- restore_cache:
|
24
23
|
keys:
|
25
24
|
- v1-dependencies-{{ checksum "Gemfile" }}
|
26
25
|
# fallback to using the latest cache if no exact match is found
|
27
26
|
- v1-dependencies-
|
28
|
-
|
29
27
|
- run:
|
30
28
|
name: install dependencies
|
31
29
|
command: |
|
32
30
|
bundle install --jobs=4 --retry=3 --path vendor/bundle
|
33
|
-
|
34
|
-
- save_cache:
|
35
|
-
paths:
|
36
|
-
- ./vendor/bundle
|
37
|
-
key: v1-dependencies-{{ checksum "Gemfile.lock" }}
|
38
|
-
|
39
31
|
- run:
|
40
32
|
name: run default rake target
|
41
33
|
command: |
|
42
34
|
bundle exec rake
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
command: find .
|
52
|
-
|
53
|
-
# run tests!
|
54
|
-
# - run:
|
55
|
-
# name: run tests
|
56
|
-
# command: |
|
57
|
-
# mkdir /tmp/test-results
|
58
|
-
# TEST_FILES="$(circleci tests glob "spec/**/*_spec.rb" | circleci tests split --split-by=timings)"
|
59
|
-
#
|
60
|
-
# bundle exec rspec --format progress \
|
61
|
-
# --format RspecJunitFormatter \
|
62
|
-
# --out /tmp/test-results/rspec.xml \
|
63
|
-
# --format progress \
|
64
|
-
# $TEST_FILES
|
65
|
-
#
|
66
|
-
# collect reports
|
35
|
+
- save_cache:
|
36
|
+
paths:
|
37
|
+
- pkg
|
38
|
+
key: gem-{{ .Revision }}
|
39
|
+
- save_cache:
|
40
|
+
paths:
|
41
|
+
- ./vendor/bundle
|
42
|
+
key: v1-dependencies-{{ checksum "Gemfile.lock" }}
|
67
43
|
- store_test_results:
|
68
44
|
path: /tmp/test-results
|
69
45
|
- store_artifacts:
|
70
46
|
path: pkg
|
47
|
+
|
48
|
+
workflows:
|
49
|
+
version: 2
|
50
|
+
un-tagged-build:
|
51
|
+
jobs:
|
52
|
+
- build:
|
53
|
+
filters:
|
54
|
+
tags:
|
55
|
+
ignore: /^v.*/
|
56
|
+
tagged-build:
|
57
|
+
jobs:
|
58
|
+
- deploy:
|
59
|
+
requires:
|
60
|
+
- build
|
61
|
+
- build:
|
62
|
+
filters:
|
63
|
+
tags:
|
64
|
+
only: /^v.*/
|
data/README.md
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
# Fluentd Sort Plugin [](https://circleci.com/gh/sampointer/fluent-plugin-record-sort)
|
1
|
+
# Fluentd Sort Plugin [](https://circleci.com/gh/sampointer/fluent-plugin-record-sort) [](https://badge.fury.io/rb/fluent-plugin-record-sort)
|
2
2
|
|
3
3
|
## Introduction
|
4
4
|
This plugin does two things:
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: fluent-plugin-record-sort
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Sam Pointer
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2018-08-
|
11
|
+
date: 2018-08-07 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|