forked from rouge-ruby/rouge
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGemfile
More file actions
45 lines (31 loc) · 724 Bytes
/
Gemfile
File metadata and controls
45 lines (31 loc) · 724 Bytes
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', '~> 2.0'
# don't try to install redcarpet under jruby
gem 'redcarpet', platforms: :ruby
# Profiling
gem 'memory_profiler', require: false
group :development do
gem 'pry'
# Needed for a Rake task
gem 'git'
gem 'yard'
gem 'rubocop'
gem 'rubocop-performance', '~> 1.26'
gem 'rubocop-minitest', '~> 0.38'
gem 'rubocop-rake', '~> 0.7'
# docs
gem 'github-markup'
# for visual tests
gem 'sinatra'
gem 'puma'
gem 'shotgun'
gem "mutex_m" if RUBY_VERSION >= '3.4'
gem "base64" if RUBY_VERSION >= '3.4'
gem 'ostruct'
gem 'reline'
end