aboutsummaryrefslogtreecommitdiffstats
path: root/lib/bundler/templates/newgem/Gemfile.tt
blob: 1d55fd7a90b8094d2c7cd4350dfb2d8071464d62 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# 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 -%>