add rdiscount dep
This commit is contained in:
parent
4fc33a6dfe
commit
e3f56198ba
2
Rakefile
2
Rakefile
|
@ -6,7 +6,7 @@ Hoe.new('jekyll', Jekyll::VERSION) do |p|
|
|||
# p.rubyforge_name = 'jekyllx' # if different than lowercase project name
|
||||
p.developer('Tom Preston-Werner', 'tom@mojombo.com')
|
||||
p.summary = "Jekyll is a simple, blog aware, static site generator."
|
||||
p.extra_deps = ['RedCloth', 'liquid', 'classifier']
|
||||
p.extra_deps = ['RedCloth', 'liquid', 'classifier', 'rdiscount']
|
||||
end
|
||||
|
||||
desc "Open an irb session preloaded with this library"
|
||||
|
|
|
@ -4,12 +4,12 @@ Gem::Specification.new do |s|
|
|||
|
||||
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
||||
s.authors = ["Tom Preston-Werner"]
|
||||
s.date = %q{2008-11-22}
|
||||
s.date = %q{2008-12-06}
|
||||
s.default_executable = %q{jekyll}
|
||||
s.email = ["tom@mojombo.com"]
|
||||
s.executables = ["jekyll"]
|
||||
s.extra_rdoc_files = ["History.txt", "Manifest.txt"]
|
||||
s.files = ["History.txt", "Manifest.txt", "README.textile", "Rakefile", "bin/jekyll", "jekyll.gemspec", "lib/jekyll.rb", "lib/jekyll/convertible.rb", "lib/jekyll/filters.rb", "lib/jekyll/layout.rb", "lib/jekyll/page.rb", "lib/jekyll/post.rb", "lib/jekyll/site.rb", "test/dest/2008/10/18/foo-bar.html", "test/dest/2008/11/21/complex.html", "test/dest/css/screen.css", "test/dest/index.html", "test/helper.rb", "test/source/_layouts/default.html", "test/source/_layouts/simple.html", "test/source/_posts/2008-10-18-foo-bar.textile", "test/source/_posts/2008-11-21-complex.textile", "test/source/css/screen.css", "test/source/index.html", "test/suite.rb", "test/test_jekyll.rb", "test/test_post.rb", "test/test_site.rb"]
|
||||
s.files = ["History.txt", "Manifest.txt", "README.textile", "Rakefile", "bin/jekyll", "jekyll.gemspec", "lib/jekyll.rb", "lib/jekyll/convertible.rb", "lib/jekyll/converters/csv.rb", "lib/jekyll/converters/mephisto.rb", "lib/jekyll/filters.rb", "lib/jekyll/blocks.rb", "lib/jekyll/layout.rb", "lib/jekyll/page.rb", "lib/jekyll/post.rb", "lib/jekyll/site.rb", "test/helper.rb", "test/source/_layouts/default.html", "test/source/_layouts/simple.html", "test/source/_posts/2008-10-18-foo-bar.textile", "test/source/_posts/2008-11-21-complex.textile", "test/source/css/screen.css", "test/source/index.html", "test/suite.rb", "test/test_jekyll.rb", "test/test_post.rb", "test/test_site.rb"]
|
||||
s.has_rdoc = true
|
||||
s.rdoc_options = ["--main", "README.txt"]
|
||||
s.require_paths = ["lib"]
|
||||
|
@ -26,17 +26,20 @@ Gem::Specification.new do |s|
|
|||
s.add_runtime_dependency(%q<RedCloth>, [">= 0"])
|
||||
s.add_runtime_dependency(%q<liquid>, [">= 0"])
|
||||
s.add_runtime_dependency(%q<classifier>, [">= 0"])
|
||||
s.add_runtime_dependency(%q<rdiscount>, [">= 0"])
|
||||
s.add_development_dependency(%q<hoe>, [">= 1.8.0"])
|
||||
else
|
||||
s.add_dependency(%q<RedCloth>, [">= 0"])
|
||||
s.add_dependency(%q<liquid>, [">= 0"])
|
||||
s.add_dependency(%q<classifier>, [">= 0"])
|
||||
s.add_dependency(%q<rdiscount>, [">= 0"])
|
||||
s.add_dependency(%q<hoe>, [">= 1.8.0"])
|
||||
end
|
||||
else
|
||||
s.add_dependency(%q<RedCloth>, [">= 0"])
|
||||
s.add_dependency(%q<liquid>, [">= 0"])
|
||||
s.add_dependency(%q<classifier>, [">= 0"])
|
||||
s.add_dependency(%q<rdiscount>, [">= 0"])
|
||||
s.add_dependency(%q<hoe>, [">= 1.8.0"])
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Reference in New Issue