fluent-plugin-couch 0.3.3 → 0.3.5

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.
data/README.rdoc CHANGED
@@ -27,6 +27,7 @@ Store fluent-event as CouchDB Document to CouchDB database.
27
27
  # following attibutes are optional
28
28
  host fluenter #default:localhost
29
29
  port 10000 #default:5984
30
+ protocol https #default:http
30
31
 
31
32
  # for Basic Authentication (optional)
32
33
  user odagiri
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.3.3
1
+ 0.3.5
@@ -12,6 +12,7 @@ module Fluent
12
12
 
13
13
  config_param :host, :string, :default => 'localhost'
14
14
  config_param :port, :string, :default => '5984'
15
+ config_param :protocol, :string, :default => 'http'
15
16
 
16
17
  config_param :refresh_view_index , :string, :default => nil
17
18
 
@@ -32,11 +33,11 @@ module Fluent
32
33
  end
33
34
 
34
35
  def start
35
- super
36
+
36
37
  if @user && @password
37
- @db = CouchRest.database!("http://#{@user}:#{@password}@#{@host}:#{@port}/#{@database}")
38
+ @db = CouchRest.database!("#{@protocol}://#{@user}:#{@password}@#{@host}:#{@port}/#{@database}")
38
39
  else
39
- @db = CouchRest.database!("http://#{@host}:#{@port}/#{@database}")
40
+ @db = CouchRest.database!("#{@protocol}://#{@host}:#{@port}/#{@database}")
40
41
  end
41
42
  @views = []
42
43
  if @refresh_view_index
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fluent-plugin-couch
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.3
4
+ version: 0.3.5
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -9,11 +9,11 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2012-02-04 00:00:00.000000000Z
12
+ date: 2012-02-11 00:00:00.000000000Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: fluentd
16
- requirement: &70158564221540 !ruby/object:Gem::Requirement
16
+ requirement: &70187915916960 !ruby/object:Gem::Requirement
17
17
  none: false
18
18
  requirements:
19
19
  - - ~>
@@ -21,10 +21,10 @@ dependencies:
21
21
  version: 0.10.0
22
22
  type: :runtime
23
23
  prerelease: false
24
- version_requirements: *70158564221540
24
+ version_requirements: *70187915916960
25
25
  - !ruby/object:Gem::Dependency
26
26
  name: couchrest
27
- requirement: &70158564221040 !ruby/object:Gem::Requirement
27
+ requirement: &70187915916260 !ruby/object:Gem::Requirement
28
28
  none: false
29
29
  requirements:
30
30
  - - ~>
@@ -32,7 +32,7 @@ dependencies:
32
32
  version: 1.1.2
33
33
  type: :runtime
34
34
  prerelease: false
35
- version_requirements: *70158564221040
35
+ version_requirements: *70187915916260
36
36
  description:
37
37
  email: ixixizko@gmail.com
38
38
  executables: []