mirror of
https://github.com/jekyll/jekyll.git
synced 2026-01-30 09:18:11 -05:00
Previously we relied on the Git version of Rubocop so that we could get 2.3+ and TargetVersion support in our .rubocop.yml, they have since updated stable and made this available to the general public.
90 lines
1.7 KiB
Ruby
90 lines
1.7 KiB
Ruby
source "https://rubygems.org"
|
|
gemspec :name => "jekyll"
|
|
|
|
gem "rake", "~> 11.0"
|
|
group :development do
|
|
gem "launchy", "~> 2.3"
|
|
gem "rubocop"
|
|
gem "pry"
|
|
|
|
unless RUBY_ENGINE == "jruby"
|
|
gem "pry-byebug"
|
|
end
|
|
end
|
|
|
|
#
|
|
|
|
group :test do
|
|
gem "cucumber", "~> 2.1"
|
|
gem "jekyll_test_plugin"
|
|
gem "jekyll_test_plugin_malicious"
|
|
gem "codeclimate-test-reporter"
|
|
gem "rspec-mocks"
|
|
gem "nokogiri"
|
|
gem "rspec"
|
|
gem "test-theme", path: File.expand_path("./test/fixtures/test-theme", File.dirname(__FILE__))
|
|
end
|
|
|
|
#
|
|
|
|
group :test_legacy do
|
|
if RUBY_PLATFORM =~ /cygwin/ || RUBY_VERSION.start_with?("2.2")
|
|
gem 'test-unit'
|
|
end
|
|
|
|
gem "redgreen"
|
|
gem "simplecov"
|
|
gem "minitest-reporters"
|
|
gem "minitest-profile"
|
|
gem "minitest"
|
|
gem "shoulda"
|
|
end
|
|
|
|
#
|
|
|
|
group :benchmark do
|
|
if ENV["BENCHMARK"]
|
|
gem "ruby-prof"
|
|
gem "benchmark-ips"
|
|
gem "stackprof"
|
|
gem "rbtrace"
|
|
end
|
|
end
|
|
|
|
#
|
|
|
|
group :jekyll_optional_dependencies do
|
|
gem "toml", "~> 0.1.0"
|
|
gem "coderay", "~> 1.1.0"
|
|
gem "jekyll-docs", :path => '../docs' if Dir.exist?('../docs') && ENV['JEKYLL_VERSION']
|
|
gem "jekyll-gist", "~> 1.0"
|
|
gem "jekyll-feed", "~> 0.1.3"
|
|
gem "jekyll-coffeescript", "~> 1.0"
|
|
gem "jekyll-redirect-from", "~> 0.9.1"
|
|
gem "jekyll-paginate", "~> 1.0"
|
|
gem "mime-types", "~> 3.0"
|
|
gem "kramdown", "~> 1.9"
|
|
gem "rdoc", "~> 4.2"
|
|
|
|
platform :ruby, :mswin, :mingw do
|
|
gem "rdiscount", "~> 2.0"
|
|
gem "pygments.rb", "~> 0.6.0"
|
|
gem "redcarpet", "~> 3.2", ">= 3.2.3"
|
|
gem "classifier-reborn", "~> 2.0"
|
|
gem "liquid-c", "~> 3.0"
|
|
end
|
|
end
|
|
|
|
#
|
|
|
|
group :site do
|
|
if ENV["PROOF"]
|
|
gem "html-proofer", "~> 2.0"
|
|
end
|
|
|
|
gem "jemoji", "0.5.1"
|
|
gem "jekyll-sitemap"
|
|
gem "jekyll-seo-tag", "~> 1.1"
|
|
gem "jekyll-avatar"
|
|
end
|