daioikachan 0.0.6 → 0.0.7
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/CHANGELOG.md +6 -0
- data/VERSION +1 -1
- data/examples/example.conf +1 -0
- data/lib/fluent/plugin/filter_string_irc_slack.rb +1 -1
- data/test.sh +3 -0
- metadata +3 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: b7bc6743f996cd1aba3737b4ffd2d70df22d8534
|
|
4
|
+
data.tar.gz: 7e0d2ad5a81b76796c85e565ac26aa4963474c10
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b7a1a5b10a3351490f27ec907690447e407f278a95dd5aba03e40784f401871d7a2b9d6e87153fff2172bd2796e947c143d719b81e75eb9fd656a000fd3bbbb7
|
|
7
|
+
data.tar.gz: fd04bac4e80c5f6fbfbe9685ea0c950ecb644b96ee8a9b5ab145b48bec0c8af5bd8e74857332fab236b7f5c5f33cdbe61add27540a4d1f2ca5b6c28d82bf3b10
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.0.
|
|
1
|
+
0.0.7
|
data/examples/example.conf
CHANGED
|
@@ -11,7 +11,7 @@ module Fluent
|
|
|
11
11
|
CLEAR = "\x0f" # \u000F
|
|
12
12
|
|
|
13
13
|
def configure(conf)
|
|
14
|
-
@start_code = Regexp.new("(#{COLOR_CODE}[0-9][0-9](,[0-9][0-9])?|#{BOLD}|#{UNDERLINE}|#{INVERSE})+")
|
|
14
|
+
@start_code = Regexp.new("(#{COLOR_CODE}[0-9]?[0-9](,[0-9]?[0-9])?|#{BOLD}|#{UNDERLINE}|#{INVERSE})+")
|
|
15
15
|
@stop_code = Regexp.new(CLEAR)
|
|
16
16
|
super
|
|
17
17
|
end
|
data/test.sh
ADDED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: daioikachan
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.7
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Naotoshi Seo
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2015-
|
|
11
|
+
date: 2015-04-02 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: fluentd
|
|
@@ -172,6 +172,7 @@ files:
|
|
|
172
172
|
- examples/multi_slack.conf
|
|
173
173
|
- lib/fluent/plugin/filter_string_irc_slack.rb
|
|
174
174
|
- lib/fluent/plugin/in_daioikachan.rb
|
|
175
|
+
- test.sh
|
|
175
176
|
- test/helper.rb
|
|
176
177
|
- test/plugin/test_filter_string_irc_slack.rb
|
|
177
178
|
- test/plugin/test_in_daioikachan.rb
|