File: Gemfile

package info (click to toggle)
ruby-gir-ffi 0.11.0-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 1,812 kB
  • ctags: 1,637
  • sloc: ruby: 20,737; makefile: 90; sh: 1
file content (21 lines) | stat: -rw-r--r-- 579 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
# frozen_string_literal: true
source 'https://rubygems.org'

# The gem's dependencies are specified in gir_ffi.gemspec
gemspec

gem 'rubocop', '~> 0.43.0', group: :development

gem 'mutant', git: 'https://github.com/mbj/mutant.git',
              branch: 'feature/minitest-integration',
              platform: :mri_23,
              group: :development

if ENV['CI']
  if ENV['TRAVIS_RUBY_VERSION'] == '2.2'
    gem 'coveralls', group: :development
  end
else
  gem 'simplecov', '~> 0.12.0', group: :development, platform: :mri
  gem 'pry', '~> 0.10.0', group: :development
end