Sha256: d5afc6b2c8486ea487323bf8cd0b89540442d18496b46e7ba30793d607559bbd

Contents?: true

Size: 903 Bytes

Versions: 4

Compression:

Stored size: 903 Bytes

Contents

source 'https://rubygems.org'

gemspec

group :development do
  gem 'vagrant', github: "mitchellh/vagrant", tag: "v1.1.2"
  gem 'coolline'
  gem 'guard', '>= 1.5.0'
  gem 'guard-rspec'
  gem 'guard-spork'
  gem 'guard-yard'
  gem 'redcarpet'
  gem 'yard'
  gem 'fuubar'

  require 'rbconfig'

  if RbConfig::CONFIG['target_os'] =~ /darwin/i
    gem 'growl', require: false
    gem 'rb-fsevent', require: false

    if `uname`.strip == 'Darwin' && `sw_vers -productVersion`.strip >= '10.8'
      gem 'terminal-notifier-guard', '~> 1.5.3', require: false
    end rescue Errno::ENOENT

  elsif RbConfig::CONFIG['target_os'] =~ /linux/i
    gem 'libnotify',  '~> 0.8.0', require: false
    gem 'rb-inotify', require: false

  elsif RbConfig::CONFIG['target_os'] =~ /mswin|mingw/i
    gem 'rb-notifu', '>= 0.0.4', require: false
    gem 'wdm', require: false
    gem 'win32console', require: false
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
berkshelf-vagrant-1.1.2 Gemfile
berkshelf-vagrant-1.1.0 Gemfile
berkshelf-vagrant-1.0.6 Gemfile
berkshelf-vagrant-1.0.4 Gemfile