forked from elastic/logstash
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
137 additions
and
100 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,58 +1,12 @@ | ||
source :rubygems | ||
|
||
gem "cabin", "0.4.4" # for logging. apache 2 license | ||
gem "bunny" # for amqp support, MIT-style license | ||
gem "uuidtools" # for naming amqp queues, License ??? | ||
gemspec | ||
|
||
gem "cinch" # for irc support | ||
gem "filewatch", "0.3.3" # for file tailing, BSD License | ||
gem "jls-grok", "0.10.7" # for grok filter, BSD License | ||
gem "aws-sdk" # for AWS access: SNS and S3 log tailing. Apache 2.0 License | ||
gem "jruby-elasticsearch", "0.0.14", :platforms => :jruby # BSD License | ||
gem "onstomp" # for stomp protocol, Apache 2.0 License | ||
gem "json" # Ruby license | ||
#gem "awesome_print" # MIT License | ||
gem "jruby-openssl", :platforms => :jruby # For enabling SSL support, CPL/GPL 2.0 | ||
gem "mail" #outputs/email, # License: MIT License | ||
gem "xml-simple" # unknown license: http://xml-simple.rubyforge.org/ | ||
|
||
gem "minitest" # License: Ruby | ||
gem "rack" # License: MIT | ||
gem "ftw", "~> 0.0.19" # License: Apache 2.0 | ||
gem "sinatra" # License: MIT-style | ||
gem "haml" # License: MIT | ||
gem "sass" # License: MIT | ||
gem "heroku" # License: MIT | ||
|
||
# TODO(sissel): Put this into a group that's only used for monolith packaging | ||
gem "mongo" # outputs/mongodb, License: Apache 2.0 | ||
gem "redis" # outputs/redis, License: MIT-style | ||
gem "gelf", "1.3.2" # outputs/gelf, # License: MIT-style | ||
gem "statsd-ruby", "0.3.0" # outputs/statsd, # License: As-Is | ||
gem "gmetric", "0.1.3" # outputs/ganglia, # License: MIT | ||
gem "xmpp4r", "0.5" # outputs/xmpp, # License: As-Is | ||
gem "gelfd", "0.2.0" #inputs/gelf, # License: Apache 2.0 | ||
gem "jruby-win32ole", :platforms => :jruby # inputs/eventlog, # License: JRuby | ||
gem "jruby-httpclient", :platforms => :jruby #outputs/http, # License: Apache 2.0 | ||
gem "excon", :platforms => :ruby #outputs/http, # License: MIT License | ||
gem "pry" | ||
|
||
gem "ffi-rzmq", "0.9.0" | ||
gem "ffi" | ||
|
||
gem "riemann-client", "0.0.6" #outputs/riemann, License: MIT | ||
gem "riak-client", "1.0.3" #outputs/riak, License: Apache 2.0 | ||
|
||
group :test do | ||
gem "mocha" | ||
gem "shoulda" | ||
platforms :jruby do | ||
gem 'jruby-elasticsearch', '0.0.14' | ||
gem 'jruby-httpclient' | ||
gem 'jruby-win32ole' | ||
end | ||
|
||
# ruby-debug is broken in 1.9.x due, at a minimum, the following: | ||
# Installing rbx-require-relative (0.0.5) | ||
# Gem::InstallError: rbx-require-relative requires Ruby version ~> 1.8.7. | ||
# | ||
# ruby-debug wants linecache which wants rbx-require-relative which won't | ||
# install under 1.9.x. I never use ruby-debug anyway, so, kill it. | ||
#gem "ruby-debug", "0.10.4" | ||
#gem "mocha", "0.10.0" | ||
gem 'excon', :platforms => :ruby | ||
gem 'cinch', :platforms => :ruby_19 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,71 @@ | ||
# -*- encoding: utf-8 -*- | ||
require File.expand_path('../lib/logstash/version', __FILE__) | ||
|
||
Gem::Specification.new do |gem| | ||
gem.authors = ["Jordan Sissel", "Pete Fritchman"] | ||
gem.email = ["[email protected]", "[email protected]"] | ||
gem.description = %q{scalable log and event management (search, archive, pipeline)} | ||
gem.summary = %q{logstash - log and event management} | ||
gem.homepage = "http://logstash.net/" | ||
gem.license = "Apache License (2.0)" | ||
|
||
gem.files = `git ls-files`.split($\) | ||
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) } | ||
gem.test_files = gem.files.grep(%r{^(test|spec|features)/}) | ||
gem.name = "logstash" | ||
gem.require_paths = ["lib"] | ||
gem.version = LOGSTASH_VERSION | ||
|
||
# Core dependencies | ||
gem.add_runtime_dependency "cabin", ["0.4.4"] | ||
gem.add_runtime_dependency "json" | ||
gem.add_runtime_dependency "minitest" # for running the tests from the jar | ||
gem.add_runtime_dependency "pry" | ||
|
||
# Server dependencies | ||
gem.add_runtime_dependency "ftw", ["~> 0.0.19"] | ||
gem.add_runtime_dependency "haml" | ||
gem.add_runtime_dependency "heroku" | ||
gem.add_runtime_dependency "rack" | ||
gem.add_runtime_dependency "sass" | ||
gem.add_runtime_dependency "sinatra" | ||
|
||
# Input/Output/Filter dependencies | ||
#TODO Can these be optional? | ||
gem.add_runtime_dependency "aws-sdk" | ||
gem.add_runtime_dependency "bunny" | ||
gem.add_runtime_dependency "ffi" | ||
gem.add_runtime_dependency "ffi-rzmq", ["0.9.3"] | ||
gem.add_runtime_dependency "filewatch", ["0.3.3"] | ||
gem.add_runtime_dependency "gelfd", ["0.2.0"] | ||
gem.add_runtime_dependency "gelf", ["1.3.2"] | ||
gem.add_runtime_dependency "gmetric", ["0.1.3"] | ||
gem.add_runtime_dependency "jls-grok", ["0.10.7"] | ||
gem.add_runtime_dependency "mail" | ||
gem.add_runtime_dependency "mongo" | ||
gem.add_runtime_dependency "onstomp" | ||
gem.add_runtime_dependency "redis" | ||
gem.add_runtime_dependency "riak-client", ["1.0.3"] | ||
gem.add_runtime_dependency "riemann-client", ["0.0.6"] | ||
gem.add_runtime_dependency "statsd-ruby", ["0.3.0"] | ||
gem.add_runtime_dependency "uuidtools" # For generating amqp queue names | ||
gem.add_runtime_dependency "xml-simple" | ||
gem.add_runtime_dependency "xmpp4r", ["0.5"] | ||
|
||
if RUBY_PLATFORM == 'java' | ||
gem.platform = RUBY_PLATFORM | ||
gem.add_runtime_dependency "jruby-elasticsearch", ["0.0.14"] | ||
gem.add_runtime_dependency "jruby-httpclient" | ||
gem.add_runtime_dependency "jruby-openssl" | ||
gem.add_runtime_dependency "jruby-win32ole" | ||
else | ||
gem.add_runtime_dependency "excon" | ||
end | ||
|
||
if RUBY_VERSION >= '1.9.1' | ||
gem.add_runtime_dependency "cinch" # cinch requires 1.9.1+ | ||
end | ||
|
||
gem.add_development_dependency "mocha" | ||
gem.add_development_dependency "shoulda" | ||
end |