summaryrefslogtreecommitdiffstats
path: root/zorglub.gemspec
diff options
context:
space:
mode:
Diffstat (limited to 'zorglub.gemspec')
-rw-r--r--zorglub.gemspec29
1 files changed, 13 insertions, 16 deletions
diff --git a/zorglub.gemspec b/zorglub.gemspec
index 0e3e105..b01495b 100644
--- a/zorglub.gemspec
+++ b/zorglub.gemspec
@@ -1,26 +1,23 @@
#! /usr/bin/env ruby
-# -*- coding: UTF-8 -*-
-$:.push File.expand_path("../lib", __FILE__)
+$LOAD_PATH.push File.expand_path("../lib", __FILE__)
begin
- require 'zorglub'
+ 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 = %q{a nano web application framework based on rack }
- s.description = %q{This is a very stripped down version of innate.}
+ 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"]
+ 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
-
-# EOF