fluent-plugin-redmine 0.5.2 → 0.5.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/fluent-plugin-redmine.gemspec +2 -2
- data/lib/fluent/plugin/out_redmine.rb +23 -0
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a91fd3eb7844c4d4b564c7b9e195ba64db4794d0
|
4
|
+
data.tar.gz: 93e74847c269c3d683c840300cc31660b3609d45
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3764f98d7e9909c70524965113d5892952d9a08171f6ac46bfa92dd3aeeaf726fe5a0e5514bc9a73620855e262909e81de0d22b688702bdf4126a101e9f97663
|
7
|
+
data.tar.gz: 5bc9748c211feb0acf4b474cea6e6961d638dfe0168bb4b437b4ddc8df4306ac32a3c6bb6a061c794f8e0261f007047397e9e7def3722e2dcb8df8c24f720e3a
|
@@ -4,12 +4,12 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
|
4
4
|
|
5
5
|
Gem::Specification.new do |spec|
|
6
6
|
spec.name = "fluent-plugin-redmine"
|
7
|
-
spec.version = "0.5.
|
7
|
+
spec.version = "0.5.3"
|
8
8
|
spec.authors = ["Takuma kanari"]
|
9
9
|
spec.email = ["chemtrails.t@gmail.com"]
|
10
10
|
spec.summary = %q{Fluentd output plugin to create ticket in redmine}
|
11
11
|
spec.description = %q{Fluentd output plugin to create ticket in redmine}
|
12
|
-
spec.homepage = "https://github.com/takumakanari"
|
12
|
+
spec.homepage = "https://github.com/takumakanari/fluent-plugin-redmine"
|
13
13
|
spec.rubyforge_project = "fluent-plugin-redmine"
|
14
14
|
|
15
15
|
spec.files = `git ls-files -z`.split("\x0")
|
@@ -8,17 +8,40 @@ module Fluent
|
|
8
8
|
define_method("log") { $log }
|
9
9
|
end
|
10
10
|
|
11
|
+
desc "Redmine url"
|
11
12
|
config_param :url, :string, :default => nil
|
13
|
+
|
14
|
+
desc "Redmine api key"
|
12
15
|
config_param :api_key, :string, :default => nil, :secret => true
|
16
|
+
|
17
|
+
desc "Key name in the record for tag"
|
13
18
|
config_param :tag_key, :string, :default => "tag"
|
19
|
+
|
20
|
+
desc "Redmine project id"
|
14
21
|
config_param :project_id, :string, :default => nil
|
22
|
+
|
23
|
+
desc "Redmine category id"
|
15
24
|
config_param :category_id, :integer, :default => nil
|
25
|
+
|
26
|
+
desc "Key name in the record for Redmine category id"
|
16
27
|
config_param :category_id_key, :string, :default => nil
|
28
|
+
|
29
|
+
desc "Redmine tracker id"
|
17
30
|
config_param :tracker_id, :integer
|
31
|
+
|
32
|
+
desc "Redmine priority id"
|
18
33
|
config_param :priority_id, :integer
|
34
|
+
|
35
|
+
desc "Key name in the record for Redmine priority id"
|
19
36
|
config_param :priority_id_key, :string, :default => nil
|
37
|
+
|
38
|
+
desc "Ticket title"
|
20
39
|
config_param :subject, :string, :default => "Fluent::RedmineOutput plugin"
|
40
|
+
|
41
|
+
desc "Ticket description"
|
21
42
|
config_param :description, :string, :default => ""
|
43
|
+
|
44
|
+
desc "If true, show debug message of http operations"
|
22
45
|
config_param :debug_http, :bool, :default => false
|
23
46
|
|
24
47
|
def initialize
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: fluent-plugin-redmine
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.5.
|
4
|
+
version: 0.5.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Takuma kanari
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2017-02-
|
11
|
+
date: 2017-02-16 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: fluentd
|
@@ -88,7 +88,7 @@ files:
|
|
88
88
|
- lib/fluent/plugin/out_redmine.rb
|
89
89
|
- test/helper.rb
|
90
90
|
- test/plugin/test_out_redmine.rb
|
91
|
-
homepage: https://github.com/takumakanari
|
91
|
+
homepage: https://github.com/takumakanari/fluent-plugin-redmine
|
92
92
|
licenses: []
|
93
93
|
metadata: {}
|
94
94
|
post_install_message:
|