From da9f077391a18ce987a8f04d8de7537fcd9a0d2d Mon Sep 17 00:00:00 2001 From: Imron Alston Date: Sat, 28 Mar 2015 09:41:53 -0400 Subject: [PATCH] initial gem --- AUTHORS | 1 + Gemfile | 3 +++ VERSION | 1 + fluent-plugin-scalyr.gemspec | 23 +++++++++++++++++++++++ 4 files changed, 28 insertions(+) create mode 100644 AUTHORS create mode 100644 Gemfile create mode 100644 VERSION create mode 100644 fluent-plugin-scalyr.gemspec diff --git a/AUTHORS b/AUTHORS new file mode 100644 index 0000000..1319634 --- /dev/null +++ b/AUTHORS @@ -0,0 +1 @@ +Imron Alston diff --git a/Gemfile b/Gemfile new file mode 100644 index 0000000..b4e2a20 --- /dev/null +++ b/Gemfile @@ -0,0 +1,3 @@ +source "https://rubygems.org" + +gemspec diff --git a/VERSION b/VERSION new file mode 100644 index 0000000..8acdd82 --- /dev/null +++ b/VERSION @@ -0,0 +1 @@ +0.0.1 diff --git a/fluent-plugin-scalyr.gemspec b/fluent-plugin-scalyr.gemspec new file mode 100644 index 0000000..ee0cedb --- /dev/null +++ b/fluent-plugin-scalyr.gemspec @@ -0,0 +1,23 @@ +$:.push File.expand_path('../lib', __FILE__) + +Gem::Specification.new do |gem| + gem.name = "fluent-plugin-scalyr" + gem.summary = "Scalyr plugin for fluentd" + gem.description = "Sends log data collected by fluentd to Scalyr (http://www.scalyr.com)" + gem.homepage = "https://github.com/scalyr/scalyr-fluentd" + gem.version = File.read("VERSION").strip + gem.authors = ["Imron Alston"] + gem.email = "imron@imralsoftware.com" + gem.has_rdoc = false + gem.platform = Gem::Platform::RUBY + gem.files = `git ls-files`.split("\n") + gem.test_files = `git ls-files -- {test,spec,features}/*`.split("\n") + gem.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) } + gem.require_paths = ['lib'] + gem.add_dependency "fluentd", [">= 0.10.49", "< 2"] + gem.add_dependency "yajl-ruby", "~> 1.0" + gem.add_dependency "fluent-mixin-config-placeholders", ">= 0.3.0" + gem.add_development_dependency "rake", ">= 0.9.2" + gem.add_development_dependency "flexmock", ">= 1.2.0" + gem.add_development_dependency "test-unit", ">= 3.0.8" +end