Sha256: ebca7abe73184ca26de4a92cda62b99a55cf655d0ec6e438681be724354a133f

Contents?: true

Size: 1.51 KB

Versions: 9

Compression:

Stored size: 1.51 KB

Contents

# Franz ships line-oriented log files to RabbitMQ. Think barebones logstash in
# pure Ruby with more modest compute and memory requirements.
module Franz

  # We use a VERSION file to tie into our build pipeline
  VERSION  = File.read(File.join(File.dirname(__FILE__), '..', '..', 'VERSION')).strip

  # We don't really do all that much, be humble
  SUMMARY  = 'Aggregate log file events and send them elsewhere'

  # Like the MIT license, but even simpler
  LICENSE  = 'ISC'

  # Where you should look first
  HOMEPAGE = 'https://github.com/sczizzo/franz'

  # Your benevolent dictator for life
  AUTHOR   = 'Sean Clemmer'

  # Turn here to strangle your dictator
  EMAIL    = 'sclemmer@bluejeans.com'

  # Bundled extensions
  TRAVELING_RUBY_VERSION = '20150517-2.2.2'
  SNAPPY_VERSION = '0.0.11'
  EM_VERSION = '1.0.4'

  # Every project deserves its own ASCII art
  ART      = <<-'EOART' % VERSION

      .--.,
    ,--.'  \  __  ,-.                 ,---,        ,----,
    |  | /\/,' ,'/ /|             ,-+-. /  |     .'   .`|
    :  : :  '  | |' | ,--.--.    ,--.'|'   |  .'   .'  .'
    :  | |-,|  |   ,'/       \  |   |  ,"' |,---, '   ./
    |  : :/|'  :  / .--.  .-. | |   | /  | |;   | .'  /
    |  |  .'|  | '   \__\/: . . |   | |  | |`---' /  ;--,
    '  : '  ;  : |   ," .--.; | |   | |  |/   /  /  / .`|
    |  | |  |  , ;  /  /  ,.  | |   | |--'  ./__;     .'
    |  : \   ---'  ;  :   .'   \|   |/      ;   |  .'
    |  |,'         |  ,     .-./'---'       `---'
    `--'            `--`---'                       v%s
  EOART
end

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
franz-2.1.13 lib/franz/metadata.rb
franz-2.1.12 lib/franz/metadata.rb
franz-2.1.11 lib/franz/metadata.rb
franz-2.1.10 lib/franz/metadata.rb
franz-2.1.9 lib/franz/metadata.rb
franz-2.1.8 lib/franz/metadata.rb
franz-2.1.7 lib/franz/metadata.rb
franz-2.1.6 lib/franz/metadata.rb
franz-2.1.5 lib/franz/metadata.rb