diff options
| author | Gibheer <gibheer@gmail.com> | 2012-10-04 20:17:07 +0200 | 
|---|---|---|
| committer | Gibheer <gibheer@gmail.com> | 2012-10-04 20:17:07 +0200 | 
| commit | c5db0891ff40d654f80dc5814d5877309f5572c5 (patch) | |
| tree | 68e8ac73e0bdb00c03d19c5186ec187ed1df3218 /zero.gemspec | |
initial commit
Diffstat (limited to 'zero.gemspec')
| -rw-r--r-- | zero.gemspec | 21 | 
1 files changed, 21 insertions, 0 deletions
| diff --git a/zero.gemspec b/zero.gemspec new file mode 100644 index 0000000..cbbdc4a --- /dev/null +++ b/zero.gemspec @@ -0,0 +1,21 @@ +# -*- encoding: utf-8 -*- +require File.expand_path('../lib/zero/version', __FILE__) + +Gem::Specification.new do |s| +  s.name = 'zero' +  s.version = Zero::VERSION.dup + +  s.authors  = ['Gibheer'] +  s.email    = 'gibheer@gmail.com' +  s.summary  = 'Event distribution and aggregation framework' +  s.homepage = 'http://github.com/mbj/eventstorm' + +  s.files            = `git ls-files`.split("\n") +  s.test_files       = `git ls-files -- {test,spec,features}/*`.split("\n") +  s.require_paths    = %w(lib) +  s.extra_rdoc_files = %w(README.md) + +  s.rubygems_version = '1.8.24' + +  s.add_runtime_dependency('rack') +end | 
