summaryrefslogtreecommitdiff
path: root/vendor/bundle/ruby/3.4.0/gems/rouge-4.7.0/Gemfile
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/bundle/ruby/3.4.0/gems/rouge-4.7.0/Gemfile')
-rw-r--r--vendor/bundle/ruby/3.4.0/gems/rouge-4.7.0/Gemfile41
1 files changed, 41 insertions, 0 deletions
diff --git a/vendor/bundle/ruby/3.4.0/gems/rouge-4.7.0/Gemfile b/vendor/bundle/ruby/3.4.0/gems/rouge-4.7.0/Gemfile
new file mode 100644
index 0000000..b66851e
--- /dev/null
+++ b/vendor/bundle/ruby/3.4.0/gems/rouge-4.7.0/Gemfile
@@ -0,0 +1,41 @@
+# 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', '~> 1.0', '<= 1.11'
+ gem 'rubocop-performance'
+
+ # docs
+ gem 'github-markup'
+
+ # for visual tests
+ gem 'sinatra'
+
+ # Ruby 3 no longer ships with a web server
+ gem 'puma' if RUBY_VERSION >= '3'
+ gem 'shotgun'
+
+ gem "mutex_m" if RUBY_VERSION >= '3.4'
+ gem "base64" if RUBY_VERSION >= '3.4'
+end