File: Gemfile

package info (click to toggle)
ruby-combustion 1.5.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 332 kB
  • sloc: ruby: 628; makefile: 9; sh: 6
file content (19 lines) | stat: -rw-r--r-- 295 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# frozen_string_literal: true

source "http://rubygems.org"

if ENV['AUTOPKGTEST_TMP']
  gem 'combustion'
  gem 'rails'
  gem 'rspec'
else
  gemspec
end

gem "sqlite3"

gem "rubocop"
gem "rubocop-packaging"

# Required for testing Rails 6.1 on MRI 3.1+
gem "net-smtp" if RUBY_VERSION.to_f > 3.0