229 lines
7.9 KiB
Ruby
229 lines
7.9 KiB
Ruby
Gem::Specification.new do |s|
|
|
s.specification_version = 2 if s.respond_to? :specification_version=
|
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
s.rubygems_version = '1.3.5'
|
|
|
|
s.name = 'jekyll'
|
|
s.version = '1.0.0.beta2'
|
|
s.license = 'MIT'
|
|
s.date = '2013-03-19'
|
|
s.rubyforge_project = 'jekyll'
|
|
|
|
s.summary = "A simple, blog aware, static site generator."
|
|
s.description = "Jekyll is a simple, blog aware, static site generator."
|
|
|
|
s.authors = ["Tom Preston-Werner"]
|
|
s.email = 'tom@mojombo.com'
|
|
s.homepage = 'http://github.com/mojombo/jekyll'
|
|
|
|
s.require_paths = %w[lib]
|
|
|
|
s.executables = ["jekyll"]
|
|
|
|
s.rdoc_options = ["--charset=UTF-8"]
|
|
s.extra_rdoc_files = %w[README.textile LICENSE]
|
|
|
|
s.add_runtime_dependency('liquid', "~> 2.3")
|
|
s.add_runtime_dependency('classifier', "~> 1.3")
|
|
s.add_runtime_dependency('directory_watcher', "~> 1.4.1")
|
|
s.add_runtime_dependency('maruku', "~> 0.5")
|
|
s.add_runtime_dependency('kramdown', "~> 0.14")
|
|
s.add_runtime_dependency('pygments.rb', "~> 0.3.2")
|
|
s.add_runtime_dependency('commander', "~> 4.1.3")
|
|
s.add_runtime_dependency('safe_yaml', "~> 0.7.0")
|
|
|
|
s.add_development_dependency('rake', "~> 10.0.3")
|
|
s.add_development_dependency('rdoc', "~> 3.11")
|
|
s.add_development_dependency('redgreen', "~> 1.2")
|
|
s.add_development_dependency('shoulda', "~> 3.3.2")
|
|
s.add_development_dependency('rr', "~> 1.0")
|
|
s.add_development_dependency('cucumber', "~> 1.2.1")
|
|
s.add_development_dependency('RedCloth', "~> 4.2")
|
|
s.add_development_dependency('rdiscount', "~> 1.6")
|
|
s.add_development_dependency('redcarpet', "~> 2.2.2")
|
|
s.add_development_dependency('launchy', "~> 2.1.2")
|
|
s.add_development_dependency('simplecov', "~> 0.7")
|
|
s.add_development_dependency('simplecov-gem-adapter', "~> 1.0.1")
|
|
|
|
# = MANIFEST =
|
|
s.files = %w[
|
|
CONTRIBUTING.md
|
|
Gemfile
|
|
History.txt
|
|
LICENSE
|
|
README.textile
|
|
Rakefile
|
|
bin/jekyll
|
|
cucumber.yml
|
|
features/create_sites.feature
|
|
features/drafts.feature
|
|
features/embed_filters.feature
|
|
features/markdown.feature
|
|
features/pagination.feature
|
|
features/permalinks.feature
|
|
features/post_data.feature
|
|
features/site_configuration.feature
|
|
features/site_data.feature
|
|
features/step_definitions/jekyll_steps.rb
|
|
features/support/env.rb
|
|
jekyll.gemspec
|
|
lib/jekyll.rb
|
|
lib/jekyll/command.rb
|
|
lib/jekyll/commands/build.rb
|
|
lib/jekyll/commands/new.rb
|
|
lib/jekyll/commands/serve.rb
|
|
lib/jekyll/converter.rb
|
|
lib/jekyll/converters/identity.rb
|
|
lib/jekyll/converters/markdown.rb
|
|
lib/jekyll/converters/textile.rb
|
|
lib/jekyll/convertible.rb
|
|
lib/jekyll/core_ext.rb
|
|
lib/jekyll/draft.rb
|
|
lib/jekyll/errors.rb
|
|
lib/jekyll/filters.rb
|
|
lib/jekyll/generator.rb
|
|
lib/jekyll/generators/pagination.rb
|
|
lib/jekyll/layout.rb
|
|
lib/jekyll/mime.types
|
|
lib/jekyll/page.rb
|
|
lib/jekyll/plugin.rb
|
|
lib/jekyll/post.rb
|
|
lib/jekyll/site.rb
|
|
lib/jekyll/static_file.rb
|
|
lib/jekyll/tags/gist.rb
|
|
lib/jekyll/tags/highlight.rb
|
|
lib/jekyll/tags/include.rb
|
|
lib/jekyll/tags/post_url.rb
|
|
lib/site_template/_config.yml
|
|
lib/site_template/_layouts/default.html
|
|
lib/site_template/_layouts/post.html
|
|
lib/site_template/_posts/0000-00-00-welcome-to-jekyll.markdown.erb
|
|
lib/site_template/css/screen.css
|
|
lib/site_template/css/syntax.css
|
|
lib/site_template/images/.gitkeep
|
|
lib/site_template/images/rss.png
|
|
lib/site_template/index.html
|
|
script/bootstrap
|
|
site/.gitignore
|
|
site/CNAME
|
|
site/README
|
|
site/_config.yml
|
|
site/_includes/analytics.html
|
|
site/_includes/docs_contents.html
|
|
site/_includes/footer.html
|
|
site/_includes/header.html
|
|
site/_includes/section_nav.html
|
|
site/_includes/top.html
|
|
site/_layouts/default.html
|
|
site/_layouts/docs.html
|
|
site/_posts/2012-07-01-configuration.md
|
|
site/_posts/2012-07-01-contributing.md
|
|
site/_posts/2012-07-01-deployment-methods.md
|
|
site/_posts/2012-07-01-extras.md
|
|
site/_posts/2012-07-01-frontmatter.md
|
|
site/_posts/2012-07-01-github-pages.md
|
|
site/_posts/2012-07-01-heroku.md
|
|
site/_posts/2012-07-01-home.md
|
|
site/_posts/2012-07-01-installation.md
|
|
site/_posts/2012-07-01-migrations.md
|
|
site/_posts/2012-07-01-pages.md
|
|
site/_posts/2012-07-01-pagination.md
|
|
site/_posts/2012-07-01-permalinks.md
|
|
site/_posts/2012-07-01-plugins.md
|
|
site/_posts/2012-07-01-posts.md
|
|
site/_posts/2012-07-01-resources.md
|
|
site/_posts/2012-07-01-sites.md
|
|
site/_posts/2012-07-01-structure.md
|
|
site/_posts/2012-07-01-templates.md
|
|
site/_posts/2012-07-01-troubleshooting.md
|
|
site/_posts/2012-07-01-usage.md
|
|
site/_posts/2012-07-01-variables.md
|
|
site/css/grid.css
|
|
site/css/normalize.css
|
|
site/css/pygments.css
|
|
site/css/style.css
|
|
site/docs/index.html
|
|
site/favicon.png
|
|
site/img/article-footer.png
|
|
site/img/footer-arrow.png
|
|
site/img/footer-logo.png
|
|
site/img/logo-2x.png
|
|
site/img/octojekyll.png
|
|
site/img/tube.png
|
|
site/img/tube1x.png
|
|
site/index.html
|
|
site/js/modernizr-2.5.3.min.js
|
|
test/fixtures/broken_front_matter1.erb
|
|
test/fixtures/broken_front_matter2.erb
|
|
test/fixtures/broken_front_matter3.erb
|
|
test/fixtures/exploit_front_matter.erb
|
|
test/fixtures/front_matter.erb
|
|
test/helper.rb
|
|
test/source/.htaccess
|
|
test/source/_includes/sig.markdown
|
|
test/source/_layouts/default.html
|
|
test/source/_layouts/simple.html
|
|
test/source/_plugins/dummy.rb
|
|
test/source/_posts/2008-02-02-not-published.textile
|
|
test/source/_posts/2008-02-02-published.textile
|
|
test/source/_posts/2008-10-18-foo-bar.textile
|
|
test/source/_posts/2008-11-21-complex.textile
|
|
test/source/_posts/2008-12-03-permalinked-post.textile
|
|
test/source/_posts/2008-12-13-include.markdown
|
|
test/source/_posts/2009-01-27-array-categories.textile
|
|
test/source/_posts/2009-01-27-categories.textile
|
|
test/source/_posts/2009-01-27-category.textile
|
|
test/source/_posts/2009-01-27-empty-categories.textile
|
|
test/source/_posts/2009-01-27-empty-category.textile
|
|
test/source/_posts/2009-03-12-hash-#1.markdown
|
|
test/source/_posts/2009-05-18-empty-tag.textile
|
|
test/source/_posts/2009-05-18-empty-tags.textile
|
|
test/source/_posts/2009-05-18-tag.textile
|
|
test/source/_posts/2009-05-18-tags.textile
|
|
test/source/_posts/2009-06-22-empty-yaml.textile
|
|
test/source/_posts/2009-06-22-no-yaml.textile
|
|
test/source/_posts/2010-01-08-triple-dash.markdown
|
|
test/source/_posts/2010-01-09-date-override.textile
|
|
test/source/_posts/2010-01-09-time-override.textile
|
|
test/source/_posts/2010-01-09-timezone-override.textile
|
|
test/source/_posts/2010-01-16-override-data.textile
|
|
test/source/_posts/2011-04-12-md-extension.md
|
|
test/source/_posts/2011-04-12-text-extension.text
|
|
test/source/_posts/2013-01-02-post-excerpt.markdown
|
|
test/source/_posts/2013-01-12-nil-layout.textile
|
|
test/source/_posts/2013-01-12-no-layout.textile
|
|
test/source/about.html
|
|
test/source/category/_posts/2008-9-23-categories.textile
|
|
test/source/contacts.html
|
|
test/source/contacts/bar.html
|
|
test/source/contacts/index.html
|
|
test/source/css/screen.css
|
|
test/source/deal.with.dots.html
|
|
test/source/foo/_posts/bar/2008-12-12-topical-post.textile
|
|
test/source/index.html
|
|
test/source/sitemap.xml
|
|
test/source/win/_posts/2009-05-24-yaml-linebreak.markdown
|
|
test/source/z_category/_posts/2008-9-23-categories.textile
|
|
test/suite.rb
|
|
test/test_command.rb
|
|
test/test_configuration.rb
|
|
test/test_convertible.rb
|
|
test/test_core_ext.rb
|
|
test/test_filters.rb
|
|
test/test_generated_site.rb
|
|
test/test_kramdown.rb
|
|
test/test_new_command.rb
|
|
test/test_page.rb
|
|
test/test_pager.rb
|
|
test/test_post.rb
|
|
test/test_rdiscount.rb
|
|
test/test_redcarpet.rb
|
|
test/test_redcloth.rb
|
|
test/test_site.rb
|
|
test/test_tags.rb
|
|
]
|
|
# = MANIFEST =
|
|
|
|
s.test_files = s.files.select { |path| path =~ /^test\/test_.*\.rb/ }
|
|
end
|