forked from rouge-ruby/rouge
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
45 lines (33 loc) · 777 Bytes
/
Gemfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
# frozen_string_literal: true
source 'http://rubygems.org'
gemspec
gem 'rake'
gem 'minitest', '>= 5.0'
gem 'minitest-power_assert'
gem 'power_assert', '~> 1.2'
gem 'parallel', '~> 1.13.0' if RUBY_VERSION < '2.2.0'
gem 'rubocop', '~> 1.0', '<= 1.11'
gem 'rubocop-performance'
# 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'
gem 'yard'
group :development do
gem 'pry'
# docs
gem 'github-markup'
# for visual tests
if RUBY_VERSION < '2.2.0'
gem 'sinatra', '~> 1.4.8'
else
gem 'sinatra'
end
# Ruby 3 no longer ships with a web server
gem 'puma' if RUBY_VERSION >= '3'
gem 'shotgun'
end