Sha256: 977826499aecef8089c5181860fd208201b84dee7fcd3836502a9ac23fe87cac

Contents?: true

Size: 760 Bytes

Versions: 8

Compression:

Stored size: 760 Bytes

Contents

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 :dev do
  gem 'fuubar'
  gem 'yard'
  gem 'redcarpet'
  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

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
solve-3.1.1 Gemfile
solve-3.1.0 Gemfile
solve-3.0.1 Gemfile
solve-3.0.0 Gemfile
solve-2.0.3 Gemfile
solve-2.0.2 Gemfile
solve-2.0.1 Gemfile
solve-2.0.0 Gemfile