forked from nricciar/wikicloth
-
Notifications
You must be signed in to change notification settings - Fork 0
/
wikicloth.gemspec
30 lines (28 loc) · 1.06 KB
/
wikicloth.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
# -*- encoding: utf-8 -*-
lib = File.expand_path('../lib/', __FILE__)
$:.unshift lib unless $:.include?(lib)
require 'wikicloth/version'
spec = Gem::Specification.new do |s|
s.name = "wikicloth"
s.version = WikiCloth::VERSION
s.author = "David Ricciardi"
s.email = "[email protected]"
s.homepage = "http://github.com/nricciar/wikicloth"
s.platform = Gem::Platform::RUBY
s.summary = "An implementation of the mediawiki markup in ruby"
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.require_path = "lib"
s.description = File.read("README")
s.has_rdoc = false
s.extra_rdoc_files = ["README","MIT-LICENSE"]
s.description = %q{mediawiki parser}
s.add_dependency 'builder'
s.add_dependency 'expression_parser'
s.add_development_dependency 'test-unit'
s.add_development_dependency 'activesupport'
s.add_development_dependency 'i18n'
s.add_development_dependency 'rake'
s.add_development_dependency 'rdoc'
s.add_development_dependency(RUBY_VERSION =~ /^1\.9/ ? "simplecov" : "rcov")
end