forked from mneumann/wee
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwee.gemspec
26 lines (24 loc) · 838 Bytes
/
wee.gemspec
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
require 'rubygems'
if File.read('lib/wee.rb') =~ /Version\s+=\s+"(\d+\.\d+\.\d+)"/
version = $1
else
raise "no version"
end
spec = Gem::Specification.new do |s|
s.name = 'wee'
s.version = version
s.summary = 'Wee is a framework for building highly dynamic web applications.'
s.description =
"Wee is a stateful component-orient web framework which supports "
"continuations as well as multiple page-states, aka backtracking. "
"It is largely inspired by Smalltalk's Seaside framework."
s.add_dependency('rack', '>= 1.0.0')
s.add_dependency('mspec', '>= 1.5.9')
s.add_dependency('fast_gettext', '>= 0.4.17')
s.files = Dir['**/*']
s.require_path = 'lib'
s.author = "Michael Neumann"
s.email = "[email protected]"
s.homepage = "http://rubyforge.org/projects/wee"
s.rubyforge_project = "wee"
end