mirror of https://github.com/docusealco/docuseal
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
346 B
18 lines
346 B
# frozen_string_literal: true
|
|
|
|
source 'https://rubygems.org'
|
|
|
|
gemspec
|
|
|
|
group :development, :test do
|
|
gem 'leto', '~> 2.1'
|
|
gem 'rake', '~> 13.1'
|
|
gem 'regexp_property_values', '~> 1.5'
|
|
gem 'rspec', '~> 3.10'
|
|
if RUBY_VERSION.to_f >= 2.7
|
|
gem 'benchmark-ips', '~> 2.1'
|
|
gem 'gouteur', '~> 1.1'
|
|
gem 'rubocop', '>= 1.80.2'
|
|
end
|
|
end
|