Skip to content

Commit

Permalink
init tree
Browse files Browse the repository at this point in the history
  • Loading branch information
tagomoris committed Feb 21, 2012
0 parents commit 4dd6cde
Show file tree
Hide file tree
Showing 7 changed files with 51 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .gitignore
@@ -0,0 +1,4 @@
*.gem
.bundle
Gemfile.lock
pkg/*
4 changes: 4 additions & 0 deletions Gemfile
@@ -0,0 +1,4 @@
source "http://rubygems.org"

# Specify your gem's dependencies in fluent-plugin-datacounter.gemspec
gemspec
1 change: 1 addition & 0 deletions Rakefile
@@ -0,0 +1 @@
require "bundler/gem_tasks"
26 changes: 26 additions & 0 deletions fluent-plugin-datacounter.gemspec
@@ -0,0 +1,26 @@
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "fluent/plugin/out_datacounter/version"

Gem::Specification.new do |s|
s.name = "fluent-plugin-datacounter"
s.version = Fluent::Plugin::DataCounterOutput::VERSION
s.authors = ["TAGOMORI Satoshi"]
s.email = ["tagomoris@gmail.com"]
s.homepage = "https://github.com/tagomoris/fluent-plugin-datacounter"
s.summary = %q{Output filter plugin to count messages that matches specified conditions}
s.description = %q{Output filter plugin to count messages that matches specified conditions}

s.rubyforge_project = "fluent-plugin-datacounter"

s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
s.require_paths = ["lib"]

# specify any dependencies here; for example:
# s.add_development_dependency "rspec"
# s.add_runtime_dependency "rest-client"
s.add_development_dependency "fluentd"
s.add_runtime_dependency "fluentd"
end
9 changes: 9 additions & 0 deletions lib/fluent/plugin/out_datacounter.rb
@@ -0,0 +1,9 @@
require "fluent/plugin/out_datacounter/version"

module Fluent
module Plugin
module DataCounterOutput
# Your code goes here...
end
end
end
7 changes: 7 additions & 0 deletions lib/fluent/plugin/out_datacounter/version.rb
@@ -0,0 +1,7 @@
module Fluent
module Plugin
module DataCounterOutput
VERSION = "0.0.1"
end
end
end
Empty file.

0 comments on commit 4dd6cde

Please sign in to comment.