File: Gemfile

package info (click to toggle)
ruby-slack-notifier 2.4.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 288 kB
  • sloc: ruby: 1,076; makefile: 5
file content (23 lines) | stat: -rw-r--r-- 401 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
# frozen_string_literal: true

source "https://rubygems.org"

gemspec

group :development do
  if RUBY_VERSION >= "2.0.0"
    gem "pry-byebug"
  else
    gem "pry-debugger"
  end

  gem "benchmark-ips"
end

group :test do
  gem "rake",     "~> 12.0"
  gem "rspec",    "~> 3.5.0"
  gem "rubocop",  "~> 0.51", require: false if RUBY_VERSION >= "2.1"

  gem "string-scrub" if RUBY_VERSION <= "1.9.3"
end