logstash-filter-device_detection 1.0.1-java → 1.0.2-java
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 +2 -2
- data/Gemfile +3 -3
- data/LICENSE +11 -11
- data/logstash-filter-device_detection.gemspec +27 -27
- data/spec/spec_helper.rb +2 -2
- data/vendor/51Degrees-LiteV3.2.dat +0 -0
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 336bdbf35d8d0099684513fc16c67c385adabeec
|
|
4
|
+
data.tar.gz: ccfeb961c3e51b24a29453848e0709f90c35d8ea
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 0018fdcb6259384b1e61cde5a36ba0121a7883a4dc0283919c40e684a115396f154bbfcc20e8c30f8741fccc51c387473374b3d1a2d4672a9b59deeff62d114c
|
|
7
|
+
data.tar.gz: 5f21fd826f085305c4bfa62c6cb2a853c2c9659a2e60b812c53988a3c8ff1d1edb000f3db89a72a1863333c696ea15d154c515fcf7d3cc272a0e6ad02f3c5afe
|
data/CHANGELOG.md
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
## 1.0.0
|
|
2
|
-
- Initial release
|
|
1
|
+
## 1.0.0
|
|
2
|
+
- Initial release
|
data/Gemfile
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
source 'https://rubygems.org'
|
|
2
|
-
gemspec
|
|
3
|
-
|
|
1
|
+
source 'https://rubygems.org'
|
|
2
|
+
gemspec
|
|
3
|
+
|
data/LICENSE
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
Licensed under the Apache License, Version 2.0 (the "License");
|
|
2
|
-
you may not use this file except in compliance with the License.
|
|
3
|
-
You may obtain a copy of the License at
|
|
4
|
-
|
|
5
|
-
http://www.apache.org/licenses/LICENSE-2.0
|
|
6
|
-
|
|
7
|
-
Unless required by applicable law or agreed to in writing, software
|
|
8
|
-
distributed under the License is distributed on an "AS IS" BASIS,
|
|
9
|
-
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
10
|
-
See the License for the specific language governing permissions and
|
|
11
|
-
limitations under the License.
|
|
1
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
|
2
|
+
you may not use this file except in compliance with the License.
|
|
3
|
+
You may obtain a copy of the License at
|
|
4
|
+
|
|
5
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
6
|
+
|
|
7
|
+
Unless required by applicable law or agreed to in writing, software
|
|
8
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
|
9
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
10
|
+
See the License for the specific language governing permissions and
|
|
11
|
+
limitations under the License.
|
|
@@ -1,27 +1,27 @@
|
|
|
1
|
-
Gem::Specification.new do |s|
|
|
2
|
-
s.name = 'logstash-filter-device_detection'
|
|
3
|
-
s.version = '1.0.
|
|
4
|
-
s.licenses = ['Apache License (2.0)']
|
|
5
|
-
s.summary = 'Use 51Degrees Device Detection library to parse User-Agent string'
|
|
6
|
-
s.authors = ['lalex']
|
|
7
|
-
s.email = 'github@lalex.nsk.ru'
|
|
8
|
-
s.homepage = 'https://github.com/lalex/logstash-filter-device_detection'
|
|
9
|
-
s.platform = "java"
|
|
10
|
-
s.require_paths = ['lib']
|
|
11
|
-
|
|
12
|
-
# Files
|
|
13
|
-
s.files = Dir['lib/**/*','spec/**/*','vendor/**/*','*.gemspec','*.md','Gemfile','LICENSE','NOTICE.TXT']
|
|
14
|
-
# Tests
|
|
15
|
-
s.test_files = s.files.grep(%r{^(test|spec|features)/})
|
|
16
|
-
|
|
17
|
-
# Special flag to let us know this is actually a logstash plugin
|
|
18
|
-
s.metadata = { "logstash_plugin" => "true", "logstash_group" => "filter" }
|
|
19
|
-
|
|
20
|
-
# Gem dependencies
|
|
21
|
-
s.add_runtime_dependency "logstash-core-plugin-api", "~> 2.0"
|
|
22
|
-
s.add_development_dependency 'logstash-devutils'
|
|
23
|
-
|
|
24
|
-
# Jar dependencies
|
|
25
|
-
s.requirements << "jar 'com.51degrees:device-detection-core', '3.2.14.2'"
|
|
26
|
-
s.add_development_dependency 'jar-dependencies', '~> 0.3.2'
|
|
27
|
-
end
|
|
1
|
+
Gem::Specification.new do |s|
|
|
2
|
+
s.name = 'logstash-filter-device_detection'
|
|
3
|
+
s.version = '1.0.2'
|
|
4
|
+
s.licenses = ['Apache License (2.0)']
|
|
5
|
+
s.summary = 'Use 51Degrees Device Detection library to parse User-Agent string'
|
|
6
|
+
s.authors = ['lalex']
|
|
7
|
+
s.email = 'github@lalex.nsk.ru'
|
|
8
|
+
s.homepage = 'https://github.com/lalex/logstash-filter-device_detection'
|
|
9
|
+
s.platform = "java"
|
|
10
|
+
s.require_paths = ['lib']
|
|
11
|
+
|
|
12
|
+
# Files
|
|
13
|
+
s.files = Dir['lib/**/*','spec/**/*','vendor/**/*','*.gemspec','*.md','Gemfile','LICENSE','NOTICE.TXT']
|
|
14
|
+
# Tests
|
|
15
|
+
s.test_files = s.files.grep(%r{^(test|spec|features)/})
|
|
16
|
+
|
|
17
|
+
# Special flag to let us know this is actually a logstash plugin
|
|
18
|
+
s.metadata = { "logstash_plugin" => "true", "logstash_group" => "filter" }
|
|
19
|
+
|
|
20
|
+
# Gem dependencies
|
|
21
|
+
s.add_runtime_dependency "logstash-core-plugin-api", "~> 2.0"
|
|
22
|
+
s.add_development_dependency 'logstash-devutils'
|
|
23
|
+
|
|
24
|
+
# Jar dependencies
|
|
25
|
+
s.requirements << "jar 'com.51degrees:device-detection-core', '3.2.14.2'"
|
|
26
|
+
s.add_development_dependency 'jar-dependencies', '~> 0.3.2'
|
|
27
|
+
end
|
data/spec/spec_helper.rb
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
# encoding: utf-8
|
|
2
|
-
require "logstash/devutils/rspec/spec_helper"
|
|
1
|
+
# encoding: utf-8
|
|
2
|
+
require "logstash/devutils/rspec/spec_helper"
|
|
Binary file
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: logstash-filter-device_detection
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.0.
|
|
4
|
+
version: 1.0.2
|
|
5
5
|
platform: java
|
|
6
6
|
authors:
|
|
7
7
|
- lalex
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2017-06
|
|
11
|
+
date: 2017-07-06 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
requirement: !ruby/object:Gem::Requirement
|