16 lines
298 B
Ruby
16 lines
298 B
Ruby
|
|
# frozen_string_literal: true
|
||
|
|
|
||
|
|
source "https://rubygems.org"
|
||
|
|
|
||
|
|
gemspec
|
||
|
|
|
||
|
|
group :development do
|
||
|
|
gem "rake-compiler", "~> 1.2"
|
||
|
|
gem "rb_sys", "~> 0.9"
|
||
|
|
gem "rspec", "~> 3.0"
|
||
|
|
gem "rubocop", "~> 1.0"
|
||
|
|
gem "rubocop-performance", "~> 1.0"
|
||
|
|
gem "rubocop-rspec", "~> 3.0"
|
||
|
|
gem "steep", "~> 1.0"
|
||
|
|
end
|