forked from jlong/radius
-
Notifications
You must be signed in to change notification settings - Fork 0
/
radius.gemspec
34 lines (28 loc) · 1.34 KB
/
radius.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
27
28
29
30
31
32
33
# -*- encoding: utf-8 -*-
require File.join(File.dirname(__FILE__), 'lib', 'radius', 'version')
Gem::Specification.new do |s|
s.name = %q{radius}
s.version = ::Radius.version
s.required_rubygems_version = Gem::Requirement.new("> 1.3.1") if s.respond_to? :required_rubygems_version=
s.authors = [%q{John W. Long (me@johnwlong.com)}, %q{David Chelimsky (dchelimsky@gmail.com)}, %q{Bryce Kerley (bkerley@brycekerley.net)}]
s.description = %q{Radius is a powerful tag-based template language for Ruby inspired by the template languages used in MovableType and TextPattern. It uses tags similar to XML, but can be used to generate any form of plain text (HTML, e-mail, etc...).}
s.email = %q{me@johnwlong.com}
s.extra_rdoc_files = [
"CHANGELOG",
"CONTRIBUTORS",
"LICENSE",
"QUICKSTART.rdoc",
"README.rdoc"
]
ignores = File.read('.gitignore').split("\n").inject([]) {|a,p| a + Dir[p] }
s.files = Dir['**/*','.gitignore'] - ignores
s.homepage = %q{http://github.com/jlong/radius}
s.summary = %q{A tag-based templating language for Ruby.}
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
s.add_development_dependency(%q<kramdown>, [">= 0"])
s.add_development_dependency('rake', ['~> 0.8.7'])
else
s.add_dependency(%q<RedCloth>, [">= 0"])
s.add_dependency('rake', ['~> 0.8.7'])
end
end