mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
ca133c0366
The Gemfile wasn't properly put in the last commit. As a result, Layout/EmptyLines inspected an offense in the Gemfile. This also fixes the spec w.r.t change in the task default. Signed-off-by: Utkarsh Gupta <utkarsh@debian.org> https://github.com/rubygems/rubygems/commit/d1418fddd3
20 lines
392 B
Text
20 lines
392 B
Text
# frozen_string_literal: true
|
|
|
|
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", "~> 0.80"
|
|
<%- end -%>
|