aboutsummaryrefslogtreecommitdiff
path: root/zero.gemspec
blob: f2344b2bddea0b0cef00ad69e5beb5186d01f6fb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# -*- 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', 'Stormwind']
  s.email    = 'gibheer@gmail.com'
  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.'
  s.homepage = 'http://github.com/gibheer/zero'

  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')

  s.add_development_dependency('thor')
  s.add_development_dependency('rack')
  s.add_development_dependency('rspec')
  s.add_development_dependency('simplecov')
end