summaryrefslogtreecommitdiffstats
path: root/zorglub.gemspec
blob: b01495b5d06ccab2895a16b8e856a489c7f26ef2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#! /usr/bin/env ruby

$LOAD_PATH.push File.expand_path("../lib", __FILE__)

begin
  require 'zorglub'
rescue LoadError
end

Gem::Specification.new do |s|
  s.name = 'zorglub'
  s.version = Zorglub::VERSION
  s.authors = ['Jérémy Zurcher']
  s.email = ['jeremy@asynk.ch']
  s.homepage = 'http://github.com/jeremyz/zorglub'
  s.summary = %s(a rack based nano web application framework)
  s.description = %s(A very stripped down version of innate.)

  s.files = `git ls-files`.split("\n")
  s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
  s.executables = `git ls-files -- bin/*`.split("\n").map { |f| File.basename(f) }
  s.require_paths = ['lib']
end