Sha256: 9bb448f02a7d03f4e01357b490d8a4b08b3f6ef34c5d2dc050b4cc1c07508cd7
Contents?: true
Size: 1.73 KB
Versions: 15
Compression:
Stored size: 1.73 KB
Contents
# -*- encoding: utf-8 -*- require File.expand_path('../lib/flapjack/version', __FILE__) Gem::Specification.new do |gem| gem.authors = [ "Lindsay Holmwood", "Jesse Reynolds", "Ali Graham" ] gem.email = "lindsay@holmwood.id.au" gem.description = "Flapjack is distributed monitoring notification system that provides a scalable method for processing streams of events from Nagios and deciding who should be notified" gem.summary = "Intelligent, scalable, distributed monitoring notification system." gem.homepage = "http://flapjack-project.com/" # see http://yehudakatz.com/2010/12/16/clarifying-the-roles-of-the-gemspec-and-gemfile/ # following a middle road here, not shipping it with the gem :) gem.files = `git ls-files`.split($\) - ['Gemfile.lock', 'bin/flapjack-bpimport'] gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) } gem.test_files = gem.files.grep(%r{^(test|spec|features)/}) gem.name = "flapjack" gem.require_paths = ["lib"] gem.version = Flapjack::VERSION gem.add_dependency 'daemons' gem.add_dependency 'log4r' gem.add_dependency 'yajl-ruby' gem.add_dependency 'eventmachine', '~> 1.0.0' gem.add_dependency 'hiredis' gem.add_dependency 'em-synchrony', '~> 1.0.2' gem.add_dependency 'em-http-request' gem.add_dependency 'redis' gem.add_dependency 'em-resque' gem.add_dependency 'sinatra' gem.add_dependency 'rack-fiber_pool' gem.add_dependency 'haml' gem.add_dependency 'thin' gem.add_dependency 'mail' gem.add_dependency 'blather' gem.add_dependency 'chronic' gem.add_dependency 'chronic_duration' gem.add_dependency 'httparty' gem.add_development_dependency 'rake' gem.add_development_dependency 'colorize' end
Version data entries
15 entries across 15 versions & 1 rubygems