0
0
Fork 0
zero/zero.gemspec

24 lines
814 B
Ruby
Raw Normal View History

2012-10-04 20:17:07 +02:00
# -*- encoding: utf-8 -*-
require File.expand_path('../lib/zero/version', __FILE__)
Gem::Specification.new do |s|
s.name = 'zero'
s.version = Zero::VERSION.dup
2012-12-01 07:31:03 +01:00
s.authors = ['Gibheer', 'Stormwind']
2012-10-04 20:17:07 +02:00
s.email = 'gibheer@gmail.com'
2012-12-13 20:42:27 +01:00
s.license = '3-clause BSD'
2012-12-01 07:31:03 +01:00
s.summary = 'a toolkit for building web services'
s.description = 'The focus of this project is to provide small helpers for building web services without the need of learning a complete new web stack from the bottom to the top.'
2012-12-13 20:42:27 +01:00
s.homepage = 'http://github.com/libzero/zero'
2012-10-04 20:17:07 +02:00
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_dependency('tilt')
2012-10-04 20:17:07 +02:00
end