Gemfile in rouge-3.3.0 vs Gemfile in rouge-3.4.0

- old
+ new

@@ -2,27 +2,39 @@ source 'http://rubygems.org' gemspec -gem 'bundler', '~> 1.15' gem 'rake' gem 'minitest', '>= 5.0' gem 'minitest-power_assert' +gem 'parallel', '~> 1.13.0' if RUBY_VERSION < '2.2.0' gem 'rubocop', '~> 0.49.1' # don't try to install redcarpet under jruby gem 'redcarpet', :platforms => :ruby +# Profiling +if RUBY_VERSION >= '2.3.0' + gem 'memory_profiler', :require => false +end + +# Needed for a Rake task +gem 'git' + group :development do gem 'pry' # docs gem 'yard' gem 'github-markup' # for visual tests - gem 'sinatra' + if RUBY_VERSION < '2.2.0' + gem 'sinatra', '~> 1.4.8' + else + gem 'sinatra' + end gem 'shotgun' end