mirror of
https://github.com/elastic/logstash.git
synced 2025-04-21 21:27:20 -04:00
27 lines
578 B
Ruby
27 lines
578 B
Ruby
source :rubygems
|
|
|
|
gem "bunny" # for amqp support
|
|
gem "uuidtools" # for naming amqp queues
|
|
gem "filewatch", "~> 0.2.3" # for file tailing
|
|
gem "jls-grok", "~> 0.4.7" # for grok filter
|
|
gem "jruby-elasticsearch", "~> 0.0.7"
|
|
gem "stomp" # for stomp protocol
|
|
gem "json"
|
|
gem "awesome_print"
|
|
|
|
gem "rack"
|
|
gem "mizuno"
|
|
gem "sinatra"
|
|
gem "haml"
|
|
|
|
# TODO(sissel): Put this into a group that's only used for monolith packaging
|
|
gem "mongo" # outputs/mongodb
|
|
gem "redis" # outputs/redis
|
|
|
|
gem "gelf" # outputs/gelf
|
|
|
|
# For testing/dev
|
|
group :development do
|
|
gem "stompserver"
|
|
gem "spoon"
|
|
end
|