Skip to content

Commit

Permalink
initial gem
Browse files Browse the repository at this point in the history
  • Loading branch information
Imron Alston committed Mar 28, 2015
1 parent 0652791 commit da9f077
Show file tree
Hide file tree
Showing 4 changed files with 28 additions and 0 deletions.
1 change: 1 addition & 0 deletions AUTHORS
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Imron Alston <imron _at_ imralsoftware.com>
3 changes: 3 additions & 0 deletions Gemfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
source "https://rubygems.org"

gemspec
1 change: 1 addition & 0 deletions VERSION
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
0.0.1
23 changes: 23 additions & 0 deletions fluent-plugin-scalyr.gemspec
Original file line number Diff line number Diff line change
@@ -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 = "[email protected]"
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

0 comments on commit da9f077

Please sign in to comment.