File: Gemfile

package info (click to toggle)
ruby-amq-protocol 2.3.4-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 520 kB
  • sloc: ruby: 5,225; python: 248; makefile: 4
file content (22 lines) | stat: -rw-r--r-- 343 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
# encoding: utf-8

source "https://rubygems.org"


group :development do
  # excludes Windows, Rubinius and JRuby
  gem "ruby-prof", :platforms => [:mri_19, :mri_20, :mri_21]

  gem "rake"
end

group :test do
  gem "rspec", ">= 3.8.0"
  gem "rspec-its"
  gem "simplecov"
  gem 'bigdecimal'
end

group :development, :test do
  gem "byebug"
end