logstash-mixin-http_client 1.0.2 → 2.0.0

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
  SHA1:
3
- metadata.gz: 7a66e6686bef46e17adf671b8d5107bd32fab4ab
4
- data.tar.gz: 520939e53295458df08f86ac7c535ff6dcd6d6fb
3
+ metadata.gz: 9e247306e83334a1697891f830e558a73b1e1b12
4
+ data.tar.gz: 5580b16dbaf08d67bcd050b23e77160f022a4b5a
5
5
  SHA512:
6
- metadata.gz: 039b6f9f41a9309ab44d0ca7e4a9255beff4648951f49e693aa3103e140063d38d852520b7f0f8d9afeeaba8fd2f3b4bae52a5736a9a3ffef48daf86c876191d
7
- data.tar.gz: f4df34ec419ce8d17fa2017685c3230791ffbd3bcd86750cb9b309df951834ad142b85f7758230ad0ef1e3708d14941fbe08145b0bdba0ab7af8c37557eac8b4
6
+ metadata.gz: 1f79c0d9d81e096e6941a4a570cf1b453b351a0b6987d22a61454c4eea9b358c5ba97a5c84af90b14b088a401cb77717842fd2c1cbbe65047a1fb1054e191bd4
7
+ data.tar.gz: 538e5d633bbb42e6348bb28cbebbbdfb96a9080d7264be5257340666ffd0181799bf95f431ce5ef3aa6a14430bc54fdef6734727799bfe1a3b8ee16c751b02fc
data/README.md CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  HTTP clients have a lot of configurable options (proxies, certificates, headers, etc.), and specifying all of these with proper validation for a logstash plugin can be irritating. We built this plugin while building our [HTTP Poller Input](https://github.com/logstash-plugins/logstash-input-http_poller). If you need to build a plugin that works primarily based around HTTP this mixin makes it easy and consistent! It is based on [Manticore](https://github.com/cheald/manticore) a lightning quick, fully featured JRuby HTTP client based on Apache Commons HTTP Client.`
4
4
 
5
- This is a plugin for [Logstash](https://github.com/elasticsearch/logstash).
5
+ This is a plugin for [Logstash](https://github.com/elastic/logstash).
6
6
 
7
7
  It is fully free and fully open source. The license is Apache 2.0, meaning you are pretty much free to use it however you want in whatever way.
8
8
 
@@ -64,10 +64,10 @@ config :client_key, :validate => :path
64
64
 
65
65
  ## Documentation
66
66
 
67
- Logstash provides infrastructure to automatically generate documentation for this plugin. We use the asciidoc format to write documentation so any comments in the source code will be first converted into asciidoc and then into html. All plugin documentation are placed under one [central location](http://www.elasticsearch.org/guide/en/logstash/current/).
67
+ Logstash provides infrastructure to automatically generate documentation for this plugin. We use the asciidoc format to write documentation so any comments in the source code will be first converted into asciidoc and then into html. All plugin documentation are placed under one [central location](http://www.elastic.co/guide/en/logstash/current/).
68
68
 
69
69
  - For formatting code or config example, you can use the asciidoc `[source,ruby]` directive
70
- - For more asciidoc formatting tips, see the excellent reference here https://github.com/elasticsearch/docs#asciidoc-guide
70
+ - For more asciidoc formatting tips, see the excellent reference here https://github.com/elastic/docs#asciidoc-guide
71
71
 
72
72
  ## Need Help?
73
73
 
@@ -141,4 +141,4 @@ Programming is not a required skill. Whatever you've seen about open source and
141
141
 
142
142
  It is more important to the community that you are able to contribute.
143
143
 
144
- For more information about contributing, see the [CONTRIBUTING](https://github.com/elasticsearch/logstash/blob/master/CONTRIBUTING.md) file.
144
+ For more information about contributing, see the [CONTRIBUTING](https://github.com/elastic/logstash/blob/master/CONTRIBUTING.md) file.
@@ -1,6 +1,6 @@
1
1
  Gem::Specification.new do |s|
2
2
  s.name = 'logstash-mixin-http_client'
3
- s.version = '1.0.2'
3
+ s.version = '2.0.0'
4
4
  s.licenses = ['Apache License (2.0)']
5
5
  s.summary = "AWS mixins to provide a unified interface for Amazon Webservice"
6
6
  s.description = "This gem is a logstash plugin required to be installed on top of the Logstash core pipeline using $LS_HOME/bin/plugin install gemname. This gem is not a stand-alone program"
@@ -10,13 +10,13 @@ Gem::Specification.new do |s|
10
10
  s.require_paths = ["lib"]
11
11
 
12
12
  # Files
13
- s.files = `git ls-files`.split($\)+::Dir.glob('vendor/*')
13
+ s.files = Dir['lib/**/*','spec/**/*','vendor/**/*','*.gemspec','*.md','CONTRIBUTORS','Gemfile','LICENSE','NOTICE.TXT']
14
14
 
15
15
  # Tests
16
16
  s.test_files = s.files.grep(%r{^(test|spec|features)/})
17
17
 
18
18
  # Gem dependencies
19
- s.add_runtime_dependency "logstash-core", '>= 1.4.0', '< 2.0.0'
19
+ s.add_runtime_dependency "logstash-core", "~> 2.0.0.snapshot"
20
20
  s.add_runtime_dependency 'logstash-codec-plain'
21
21
  s.add_runtime_dependency 'manticore', '>= 0.4.1'
22
22
 
metadata CHANGED
@@ -1,104 +1,96 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: logstash-mixin-http_client
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.2
4
+ version: 2.0.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Elastic
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-08-05 00:00:00.000000000 Z
11
+ date: 2015-09-23 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
- name: logstash-core
15
- version_requirements: !ruby/object:Gem::Requirement
16
- requirements:
17
- - - '>='
18
- - !ruby/object:Gem::Version
19
- version: 1.4.0
20
- - - <
21
- - !ruby/object:Gem::Version
22
- version: 2.0.0
23
14
  requirement: !ruby/object:Gem::Requirement
24
15
  requirements:
25
- - - '>='
16
+ - - ~>
26
17
  - !ruby/object:Gem::Version
27
- version: 1.4.0
28
- - - <
29
- - !ruby/object:Gem::Version
30
- version: 2.0.0
18
+ version: 2.0.0.snapshot
19
+ name: logstash-core
31
20
  prerelease: false
32
21
  type: :runtime
33
- - !ruby/object:Gem::Dependency
34
- name: logstash-codec-plain
35
22
  version_requirements: !ruby/object:Gem::Requirement
36
23
  requirements:
37
- - - '>='
24
+ - - ~>
38
25
  - !ruby/object:Gem::Version
39
- version: '0'
26
+ version: 2.0.0.snapshot
27
+ - !ruby/object:Gem::Dependency
40
28
  requirement: !ruby/object:Gem::Requirement
41
29
  requirements:
42
30
  - - '>='
43
31
  - !ruby/object:Gem::Version
44
32
  version: '0'
33
+ name: logstash-codec-plain
45
34
  prerelease: false
46
35
  type: :runtime
47
- - !ruby/object:Gem::Dependency
48
- name: manticore
49
36
  version_requirements: !ruby/object:Gem::Requirement
50
37
  requirements:
51
38
  - - '>='
52
39
  - !ruby/object:Gem::Version
53
- version: 0.4.1
40
+ version: '0'
41
+ - !ruby/object:Gem::Dependency
54
42
  requirement: !ruby/object:Gem::Requirement
55
43
  requirements:
56
44
  - - '>='
57
45
  - !ruby/object:Gem::Version
58
46
  version: 0.4.1
47
+ name: manticore
59
48
  prerelease: false
60
49
  type: :runtime
61
- - !ruby/object:Gem::Dependency
62
- name: logstash-devutils
63
50
  version_requirements: !ruby/object:Gem::Requirement
64
51
  requirements:
65
52
  - - '>='
66
53
  - !ruby/object:Gem::Version
67
- version: '0'
54
+ version: 0.4.1
55
+ - !ruby/object:Gem::Dependency
68
56
  requirement: !ruby/object:Gem::Requirement
69
57
  requirements:
70
58
  - - '>='
71
59
  - !ruby/object:Gem::Version
72
60
  version: '0'
61
+ name: logstash-devutils
73
62
  prerelease: false
74
63
  type: :development
75
- - !ruby/object:Gem::Dependency
76
- name: stud
77
64
  version_requirements: !ruby/object:Gem::Requirement
78
65
  requirements:
79
66
  - - '>='
80
67
  - !ruby/object:Gem::Version
81
68
  version: '0'
69
+ - !ruby/object:Gem::Dependency
82
70
  requirement: !ruby/object:Gem::Requirement
83
71
  requirements:
84
72
  - - '>='
85
73
  - !ruby/object:Gem::Version
86
74
  version: '0'
75
+ name: stud
87
76
  prerelease: false
88
77
  type: :development
78
+ version_requirements: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - '>='
81
+ - !ruby/object:Gem::Version
82
+ version: '0'
89
83
  description: This gem is a logstash plugin required to be installed on top of the Logstash core pipeline using $LS_HOME/bin/plugin install gemname. This gem is not a stand-alone program
90
84
  email: info@elastic.co
91
85
  executables: []
92
86
  extensions: []
93
87
  extra_rdoc_files: []
94
88
  files:
95
- - .gitignore
96
89
  - CHANGELOG.md
97
90
  - CONTRIBUTORS
98
91
  - Gemfile
99
92
  - LICENSE
100
93
  - README.md
101
- - Rakefile
102
94
  - lib/logstash/plugin_mixins/http_client.rb
103
95
  - logstash-mixin-http_client.gemspec
104
96
  - spec/plugin_mixin/http_client_spec.rb
@@ -122,7 +114,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
122
114
  version: '0'
123
115
  requirements: []
124
116
  rubyforge_project:
125
- rubygems_version: 2.1.9
117
+ rubygems_version: 2.4.8
126
118
  signing_key:
127
119
  specification_version: 4
128
120
  summary: AWS mixins to provide a unified interface for Amazon Webservice
data/.gitignore DELETED
@@ -1,6 +0,0 @@
1
- *.gem
2
- Gemfile.lock
3
- .bundle
4
- vendor
5
- .idea
6
- *~
data/Rakefile DELETED
@@ -1,7 +0,0 @@
1
- @files=[]
2
-
3
- task :default do
4
- system("rake -T")
5
- end
6
-
7
- require "logstash/devutils/rake"