File: Gemfile

package info (click to toggle)
ruby-solve 4.0.4-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,708 kB
  • sloc: ruby: 36,626; makefile: 3
file content (36 lines) | stat: -rw-r--r-- 870 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
25
26
27
28
29
30
31
32
33
34
35
36
source "https://rubygems.org"

gemspec

group :gecode do
  gem "dep_selector", "~> 1.0"
end

# If this group is named "development", then `bundle install --without
# development` automagically excludes development dependencies that are listed
# in the gemspec, which will skip installing rspec and then we can't run tests.
group :development do
  gem "fuubar"
  gem "yard"
  gem "redcarpet"
  gem "chefstyle", git: "https://github.com/chef/chefstyle.git", branch: "master"
end

group :guard do
  gem "guard-rspec"
  gem "guard-spork"
  gem "guard-yard"
  gem "coolline"

  require "rbconfig"

  if RbConfig::CONFIG["target_os"] =~ /darwin/i
    gem "ruby_gntp", require: false

  elsif RbConfig::CONFIG["target_os"] =~ /linux/i
    gem "libnotify", require: false

  elsif RbConfig::CONFIG["target_os"] =~ /mswin|mingw/i
    gem "win32console", require: false
  end
end