Skip to content

Commit

Permalink
moved to new plugin structure
Browse files Browse the repository at this point in the history
  • Loading branch information
jsvd authored and jordansissel committed Dec 23, 2014
1 parent 79227ef commit b077ec9
Show file tree
Hide file tree
Showing 12 changed files with 105 additions and 509 deletions.
3 changes: 3 additions & 0 deletions Gemfile
@@ -0,0 +1,3 @@
source 'https://rubygems.org'
gemspec
gem "logstash", :github => "elasticsearch/logstash", :branch => "1.5"
13 changes: 13 additions & 0 deletions LICENSE
@@ -0,0 +1,13 @@
Copyright (c) 2012-2014 Elasticsearch <http://www.elasticsearch.org>

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
179 changes: 0 additions & 179 deletions Makefile

This file was deleted.

7 changes: 7 additions & 0 deletions Rakefile
@@ -0,0 +1,7 @@
@files=[]

task :default do
system("rake -T")
end

require "logstash/devutils/rake"
64 changes: 0 additions & 64 deletions gembag.rb

This file was deleted.

27 changes: 27 additions & 0 deletions logstash-codec-cef.gemspec
@@ -0,0 +1,27 @@
Gem::Specification.new do |s|

s.name = 'logstash-codec-cef'
s.version = '0.1.3'
s.licenses = ['Apache License (2.0)']
s.summary = "CEF codec to parse CEF formated logs"
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"
s.authors = ["Elasticsearch"]
s.email = 'info@elasticsearch.com'
s.homepage = "http://www.elasticsearch.org/guide/en/logstash/current/index.html"
s.require_paths = ["lib"]

# Files
s.files = `git ls-files`.split($\)

# Tests
s.test_files = s.files.grep(%r{^(test|spec|features)/})

# Special flag to let us know this is actually a logstash plugin
s.metadata = { "logstash_plugin" => "true", "logstash_group" => "codec" }

# Gem dependencies
s.add_runtime_dependency 'logstash', '>= 1.4.0', '< 2.0.0'

s.add_development_dependency 'logstash-devutils'
end

17 changes: 0 additions & 17 deletions logstash-contrib.gemspec

This file was deleted.

0 comments on commit b077ec9

Please sign in to comment.