File: Gemfile

package info (click to toggle)
ruby-yell 2.2.2-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, forky, sid, trixie
  • size: 272 kB
  • sloc: ruby: 1,125; makefile: 2
file content (24 lines) | stat: -rw-r--r-- 439 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# frozen_string_literal: true

source 'http://rubygems.org'

# Specify your gem's dependencies in yell.gemspec
gemspec

group :development, :test do
  gem 'rake'

  gem 'rspec-core', '~> 3'
  gem 'rspec-expectations'
  gem 'rspec-its'
  gem 'rspec-mocks'

  gem 'byebug', platform: :mri
  gem 'timecop'

  gem 'activesupport', '~> 5'

  gem 'coveralls', require: false
  gem 'rubocop', require: false
  gem 'simplecov', require: false
end