-
Notifications
You must be signed in to change notification settings - Fork 6
/
redcloth-parslet.gemspec
executable file
·35 lines (27 loc) · 1.16 KB
/
redcloth-parslet.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
34
35
require File.expand_path("../lib/redcloth-parslet/version", __FILE__)
Gem::Specification.new do |s|
# Gem name will be lower case starting in RedCloth 5!
s.name = "redcloth-parslet"
s.version = RedClothParslet::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ["Jason Garber"]
s.email = ["jg@jasongarber.com"]
s.homepage = "http://github.com/jgarber/redcloth-parslet"
s.summary = "A rewrite of RedCloth in Parslet"
s.description = "See RedCloth"
s.required_rubygems_version = ">= 1.3.7"
# lol - required for validation
s.rubyforge_project = "redcloth-parslet"
# If you have other dependencies, add them here
s.add_dependency "parslet", "~> 1.2"
s.add_development_dependency 'rspec', "~> 2.0"
s.add_development_dependency 'rake'
s.add_development_dependency 'fuubar'
# If you need to check in files that aren't .rb files, add them here
s.files = Dir["{lib}/**/*.rb", "bin/*", "LICENSE", "*.textile"]
s.require_paths = ['lib']
# If you need an executable, add it here
# s.executables = ["redcloth"]
# If you have C extensions, uncomment this line
# s.extensions = "ext/extconf.rb"
end