mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
15 lines
347 B
Text
15 lines
347 B
Text
source "https://rubygems.org"
|
|
|
|
# Specify your gem's dependencies in <%= config[:name] %>.gemspec
|
|
gemspec
|
|
|
|
gem "rake", "~> 13.0"
|
|
<%- if config[:ext] -%>
|
|
gem "rake-compiler"
|
|
<%- end -%>
|
|
<%- if config[:test] -%>
|
|
gem "<%= config[:test] %>", "~> <%= config[:test_framework_version] %>"
|
|
<%- end -%>
|
|
<%- if config[:rubocop] -%>
|
|
gem "rubocop"
|
|
<%- end -%>
|