fluent-plugin-gcs 0.4.1 → 0.4.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 85b1b9b0ed8cd2b264dacc7f54fb1bf9e15b2f1e6f28871b17e0bb7e844e1669
4
- data.tar.gz: a90fec1f3d5509be2df1a72d2479e9db6ba7f133ad67c60789abbdbb1360e519
3
+ metadata.gz: e6bc239a1a47a29d4cc3dc94aaaafc5e3ed6ed20e23e0ea9807c88309ec1f7a0
4
+ data.tar.gz: c27f4d556b545ffb6050a72dcc9ff6a7fcfc53d16f44bce305f14560a4482725
5
5
  SHA512:
6
- metadata.gz: 8bcb9225215a56ea5ad0d34ac2447e0b39074ae9269e885c2ac70ba2679213340653b47941ea2c5c395861535fd565ae81a6e153e48adef175cf6966b1849a20
7
- data.tar.gz: dfe13e0a8ea31f3d80d1174aa4c35385cf6206820d5574f31d501767e972b144f646a48711e64c63b10261045385aed4af9a2e7516aeeac0f6aa460cb37cf807
6
+ metadata.gz: 3eb03cfb810bf23d8447391145cd8ba6cf6379f1730e1c486a35bcafcb66fdf5b953741b5913b0255bc5969914fc1fda4e37110fe76eb7bf21f65d441466bedb
7
+ data.tar.gz: 85bcc85ab97e567a872893cfb890b7920343ff0010adf5d7c6d5b36f5ff952640bac4f42b90d811f1f1b6717c1691c40f6581d66a6da45135711a030dcf6b297
@@ -0,0 +1,24 @@
1
+ name: Test
2
+
3
+ on:
4
+ push:
5
+ branches: [ master ]
6
+ pull_request:
7
+ branches: [ master ]
8
+
9
+ jobs:
10
+ test:
11
+ runs-on: ubuntu-latest
12
+ strategy:
13
+ fail-fast: false
14
+ matrix:
15
+ ruby-version: ['2.7', '3.0', '3.1']
16
+ steps:
17
+ - uses: actions/checkout@v3
18
+ - name: Set up Ruby
19
+ uses: ruby/setup-ruby@v1
20
+ with:
21
+ ruby-version: ${{ matrix.ruby-version }}
22
+ bundler-cache: true
23
+ - name: Run tests
24
+ run: bundle exec rake test
data/CHANGELOG.md CHANGED
@@ -2,6 +2,12 @@
2
2
 
3
3
  New features / Enhancements
4
4
 
5
+ ## [0.4.2] - 2022/08/16
6
+
7
+ Bug fixes
8
+
9
+ - [Fix automatic conversion from a hash to keyword arguments](https://github.com/daichirata/fluent-plugin-gcs/pull/22)
10
+
5
11
  ## [0.4.1] - 2020/04/17
6
12
 
7
13
  New features
data/Gemfile CHANGED
@@ -1,4 +1,13 @@
1
- source 'https://rubygems.org'
1
+ # frozen_string_literal: true
2
+
3
+ source "https://rubygems.org"
2
4
 
3
5
  # Specify your gem's dependencies in fluent-plugin-gcs.gemspec
4
6
  gemspec
7
+
8
+ gem "rake", "~> 13.0"
9
+ gem "rr", "= 1.1.2"
10
+ gem "test-unit", ">= 3.0.8"
11
+ gem "test-unit-rr", ">= 1.0.3"
12
+ gem "timecop"
13
+ gem "solargraph"
data/README.md CHANGED
@@ -1,5 +1,5 @@
1
1
  # fluent-plugin-gcs
2
- [![Gem Version](https://badge.fury.io/rb/fluent-plugin-gcs.svg)](https://badge.fury.io/rb/fluent-plugin-gcs) [![Build Status](https://travis-ci.org/daichirata/fluent-plugin-gcs.svg?branch=master)](https://travis-ci.org/daichirata/fluent-plugin-gcs) [![Code Climate](https://codeclimate.com/github/daichirata/fluent-plugin-gcs/badges/gpa.svg)](https://codeclimate.com/github/daichirata/fluent-plugin-gcs)
2
+ [![Gem Version](https://badge.fury.io/rb/fluent-plugin-gcs.svg)](https://badge.fury.io/rb/fluent-plugin-gcs) [![Test](https://github.com/daichirata/fluent-plugin-gcs/actions/workflows/test.yaml/badge.svg)](https://github.com/daichirata/fluent-plugin-gcs/actions/workflows/test.yaml) [![Code Climate](https://codeclimate.com/github/daichirata/fluent-plugin-gcs/badges/gpa.svg)](https://codeclimate.com/github/daichirata/fluent-plugin-gcs)
3
3
 
4
4
  Google Cloud Storage output plugin for [Fluentd](https://github.com/fluent/fluentd).
5
5
 
@@ -22,10 +22,4 @@ Gem::Specification.new do |spec|
22
22
 
23
23
  spec.add_runtime_dependency "fluentd", [">= 0.14.22", "< 2"]
24
24
  spec.add_runtime_dependency "google-cloud-storage", "~> 1.1"
25
-
26
- spec.add_development_dependency "rake", ">= 12.3.3"
27
- spec.add_development_dependency "rr", "= 1.1.2"
28
- spec.add_development_dependency "test-unit", ">= 3.0.8"
29
- spec.add_development_dependency "test-unit-rr", ">= 1.0.3"
30
- spec.add_development_dependency "timecop"
31
25
  end
@@ -1,5 +1,5 @@
1
1
  module Fluent
2
2
  module GCSPlugin
3
- VERSION = "0.4.1"
3
+ VERSION = "0.4.2"
4
4
  end
5
5
  end
@@ -131,7 +131,7 @@ module Fluent::Plugin
131
131
  opts.merge!(@encryption_opts)
132
132
 
133
133
  log.debug { "out_gcs: upload chunk:#{chunk.key} to gcs://#{@bucket}/#{path} options: #{opts}" }
134
- @gcs_bucket.upload_file(obj.path, path, opts)
134
+ @gcs_bucket.upload_file(obj.path, path, **opts)
135
135
  end
136
136
  end
137
137
 
@@ -153,7 +153,7 @@ module Fluent::Plugin
153
153
 
154
154
  def check_object_exists(path)
155
155
  if !@blind_write
156
- return @gcs_bucket.find_file(path, @encryption_opts)
156
+ return @gcs_bucket.find_file(path, **@encryption_opts)
157
157
  else
158
158
  return false
159
159
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fluent-plugin-gcs
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.1
4
+ version: 0.4.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Daichi HIRATA
8
- autorequire:
8
+ autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2020-10-06 00:00:00.000000000 Z
11
+ date: 2022-08-16 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: fluentd
@@ -44,76 +44,6 @@ dependencies:
44
44
  - - "~>"
45
45
  - !ruby/object:Gem::Version
46
46
  version: '1.1'
47
- - !ruby/object:Gem::Dependency
48
- name: rake
49
- requirement: !ruby/object:Gem::Requirement
50
- requirements:
51
- - - ">="
52
- - !ruby/object:Gem::Version
53
- version: 12.3.3
54
- type: :development
55
- prerelease: false
56
- version_requirements: !ruby/object:Gem::Requirement
57
- requirements:
58
- - - ">="
59
- - !ruby/object:Gem::Version
60
- version: 12.3.3
61
- - !ruby/object:Gem::Dependency
62
- name: rr
63
- requirement: !ruby/object:Gem::Requirement
64
- requirements:
65
- - - '='
66
- - !ruby/object:Gem::Version
67
- version: 1.1.2
68
- type: :development
69
- prerelease: false
70
- version_requirements: !ruby/object:Gem::Requirement
71
- requirements:
72
- - - '='
73
- - !ruby/object:Gem::Version
74
- version: 1.1.2
75
- - !ruby/object:Gem::Dependency
76
- name: test-unit
77
- requirement: !ruby/object:Gem::Requirement
78
- requirements:
79
- - - ">="
80
- - !ruby/object:Gem::Version
81
- version: 3.0.8
82
- type: :development
83
- prerelease: false
84
- version_requirements: !ruby/object:Gem::Requirement
85
- requirements:
86
- - - ">="
87
- - !ruby/object:Gem::Version
88
- version: 3.0.8
89
- - !ruby/object:Gem::Dependency
90
- name: test-unit-rr
91
- requirement: !ruby/object:Gem::Requirement
92
- requirements:
93
- - - ">="
94
- - !ruby/object:Gem::Version
95
- version: 1.0.3
96
- type: :development
97
- prerelease: false
98
- version_requirements: !ruby/object:Gem::Requirement
99
- requirements:
100
- - - ">="
101
- - !ruby/object:Gem::Version
102
- version: 1.0.3
103
- - !ruby/object:Gem::Dependency
104
- name: timecop
105
- requirement: !ruby/object:Gem::Requirement
106
- requirements:
107
- - - ">="
108
- - !ruby/object:Gem::Version
109
- version: '0'
110
- type: :development
111
- prerelease: false
112
- version_requirements: !ruby/object:Gem::Requirement
113
- requirements:
114
- - - ">="
115
- - !ruby/object:Gem::Version
116
- version: '0'
117
47
  description: Google Cloud Storage output plugin for Fluentd
118
48
  email:
119
49
  - hirata.daichi@gmail.com
@@ -121,8 +51,8 @@ executables: []
121
51
  extensions: []
122
52
  extra_rdoc_files: []
123
53
  files:
54
+ - ".github/workflows/test.yaml"
124
55
  - ".gitignore"
125
- - ".travis.yml"
126
56
  - CHANGELOG.md
127
57
  - Gemfile
128
58
  - LICENSE.txt
@@ -138,7 +68,7 @@ homepage: https://github.com/daichirata/fluent-plugin-gcs
138
68
  licenses:
139
69
  - Apache-2.0
140
70
  metadata: {}
141
- post_install_message:
71
+ post_install_message:
142
72
  rdoc_options: []
143
73
  require_paths:
144
74
  - lib
@@ -153,8 +83,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
153
83
  - !ruby/object:Gem::Version
154
84
  version: '0'
155
85
  requirements: []
156
- rubygems_version: 3.0.3
157
- signing_key:
86
+ rubygems_version: 3.3.7
87
+ signing_key:
158
88
  specification_version: 4
159
89
  summary: Google Cloud Storage output plugin for Fluentd
160
90
  test_files: []
data/.travis.yml DELETED
@@ -1,11 +0,0 @@
1
- language: ruby
2
-
3
- rvm:
4
- - 2.6
5
- - 2.7
6
- - ruby-head
7
-
8
- before_install:
9
- - gem update bundler
10
-
11
- script: bundle exec rake test