Merge pull request #4335 from jekyll/revert-4318-pull/cleanup-gemfile

Revert "Reorganize and cleanup the Gemfile, shorten required depends."
This commit is contained in:
Jordon Bedwell 2016-01-10 00:33:58 -06:00
commit 7c7d550442
2 changed files with 46 additions and 51 deletions

View File

@ -1,4 +1,3 @@
bundler_args: --without doc:util:site:benchmark:development
language: ruby
cache: bundler
sudo: false

96
Gemfile
View File

@ -1,62 +1,58 @@
source "https://rubygems.org"
gemspec :name => :jekyll
source 'https://rubygems.org'
gemspec name: 'jekyll'
gem "rake", "~> 10.1"
gem 'rake', '~> 10.1'
group :development do
unless ENV["CI"]
gem "pry", :require => false
gem "rubocop", {
:github => "bbatsov/rubocop",
:branch => :master, :require => false
}
end
end
group( :doc) { gem "rdoc", "~> 4.2" } # `--without doc`
group(:util) { gem "launchy", "~> 2.3" } # `--without util`
group(:site) { gem "html-proofer" } # `--without site`
# `--without benchmark`
group :benchmark do
gem "rbtrace"
gem "ruby-prof"
gem "benchmark-ips"
gem "stackprof"
gem 'rdoc', '~> 4.2'
gem 'launchy', '~> 2.3'
gem 'toml', '~> 0.1.0'
gem "rubocop"
gem 'pry'
end
group :test do
gem "redgreen", "~> 1.2"
gem "shoulda", "~> 3.5"
gem "cucumber", "~> 2.1"
gem "simplecov", "~> 0.9"
gem "jekyll_test_plugin"
gem "jekyll_test_plugin_malicious"
gem "minitest-reporters"
gem "minitest-profile"
gem "rspec-mocks"
gem "minitest"
gem "nokogiri"
gem 'redgreen', '~> 1.2'
gem 'shoulda', '~> 3.5'
gem 'cucumber', '~> 2.1'
gem 'simplecov', '~> 0.9'
gem 'jekyll_test_plugin'
gem 'jekyll_test_plugin_malicious'
gem 'minitest-reporters'
gem 'minitest-profile'
gem 'rspec-mocks'
gem 'minitest'
gem 'nokogiri'
if RUBY_PLATFORM =~ /cygwin/ || RUBY_VERSION.start_with?("2.2")
gem "test-unit"
gem 'test-unit'
end
if ENV['PROOF']
gem 'html-proofer', '~> 2.0'
end
end
group :optional_jekyll_dependencies do
gem "toml", "~> 0.1.0"
gem "jekyll-paginate", "~> 1.0"
gem "jekyll-coffeescript", "~> 1.0"
gem "jekyll-feed", "~> 0.1.3"
gem "jekyll-redirect-from", "~> 0.9.1"
gem "jekyll-gist", "~> 1.0"
gem "mime-types", "~> 3.0"
gem "kramdown", "~> 1.9"
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"
group :benchmark do
if ENV['BENCHMARK']
gem 'ruby-prof'
gem 'rbtrace'
gem 'stackprof'
gem 'benchmark-ips'
end
end
gem 'jekyll-paginate', '~> 1.0'
gem 'jekyll-coffeescript', '~> 1.0'
gem 'jekyll-feed', '~> 0.1.3'
gem 'jekyll-redirect-from', '~> 0.9.1'
gem 'jekyll-gist', '~> 1.0'
gem 'mime-types', '~> 3.0'
gem 'kramdown', '~> 1.9'
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