fluent-plugin-aws-sqs 1.0.5 → 1.0.6

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: a0330f3d1c74ab526db71fd1b1fe8d5f47947cb7fedf81a16841e9fe28f2c8d2
4
- data.tar.gz: 8dd7787731dad211e3fd913809f88926b39cd6fef887e54a2f836f5c99ed6bdb
3
+ metadata.gz: b592552c2801fce34dd2dd904c9db8e4fd8e92f3b06cd2bd2a991149c1c42b49
4
+ data.tar.gz: 5249602db60a04f94a20b4351826b57cec56fbf030d1efde7ac477a8beabf1ae
5
5
  SHA512:
6
- metadata.gz: 506caae24fd4b426d7e514ac42f83203c87b1c9bf8e9940bf674419e78ce4d744941fcb129cc1bb1ed11a0f180d114ad42081b85139a3ee81badda53822baef7
7
- data.tar.gz: 59ba5c04dc7de5113151b2b2a9014388e458bc107d47a3f9b8f6b5408bd55a2caf0a06cb250c73c210fef0b68cf38eb5d7de4805b2cccde955c679e89a3ff62d
6
+ metadata.gz: 8c3084dab9e4928514fff7d83768283dd7be6c85fe712ac6c4ed0d808bf9c96246b98de13792e77e856b60e2248b62b1823eb2ac92b4f228b74c9968d8e868b2
7
+ data.tar.gz: f70d7117596d4b20c5cdcd4b61ec59f80511f08aa4cc3ab8803eb21cc271a4d822b6935f292b7438abdf851e6875eb047af53940fa2e7d8bb91b35682e966c5a
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- fluent-plugin-aws-sqs (1.0.4)
4
+ fluent-plugin-aws-sqs (1.0.5)
5
5
  aws-sdk-sqs (>= 1.22.0)
6
6
  fluentd (>= 0.14.0)
7
7
 
File without changes
@@ -1,3 +1,3 @@
1
1
  module SQS
2
- VERSION = "1.0.5"
2
+ VERSION = "1.0.6"
3
3
  end
@@ -2,15 +2,13 @@ require "test-unit"
2
2
  require "fluent/test"
3
3
  require "fluent/test/driver/input"
4
4
  require "fluent/test/helpers"
5
- require "./lib/fluent/plugin/in-sqs.rb"
5
+ require "./lib/fluent/plugin/in_sqs.rb"
6
6
 
7
7
  class InSqsTest < Test::Unit::TestCase
8
8
  include Fluent::Test::Helpers
9
9
 
10
10
  # default configuration for tests
11
11
  DEFAULT_VALID_CONFIG = %[
12
- aws_key_id test_aws_key_id
13
- aws_sec_key test_aws_sec_key
14
12
  tag test_tag
15
13
  sqs_url http://sqs-url.com
16
14
  ]
@@ -43,8 +41,6 @@ class InSqsTest < Test::Unit::TestCase
43
41
  test 'params are set correctly' do
44
42
  d = create_driver
45
43
  assert_equal "test_tag", d.instance.tag
46
- assert_equal "test_aws_sec_key", d.instance.aws_sec_key
47
- assert_equal "test_aws_key_id", d.instance.aws_key_id
48
44
  assert_equal "eu-central-1", d.instance.region
49
45
  assert_equal "http://sqs-url.com", d.instance.sqs_url
50
46
  assert_equal 0.1, d.instance.receive_interval
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fluent-plugin-aws-sqs
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.5
4
+ version: 1.0.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Shai Moria
@@ -113,9 +113,9 @@ files:
113
113
  - Rakefile
114
114
  - VERSION
115
115
  - fluent-plugin-aws-sqs.gemspec
116
- - lib/fluent/plugin/in-sqs.rb
116
+ - lib/fluent/plugin/in_sqs.rb
117
117
  - lib/fluent/plugin/version.rb
118
- - tests/test_in-sqs.rb
118
+ - tests/test_in_sqs.rb
119
119
  homepage: https://github.com/zooz/fluent-plugin-aws-sqs
120
120
  licenses:
121
121
  - Apache-2.0