Sha256: b644cdf14bbd14d327043f10f058c1837895dd8d4881fcd2badbcd4b5a8a542c

Contents?: true

Size: 1.33 KB

Versions: 6

Compression:

Stored size: 1.33 KB

Contents

source "https://rubygems.org"

gemspec

if File.exists?('Gemfile.local') then
  eval File.read('Gemfile.local'), nil, 'Gemfile.local'
end

platforms :ruby do
  gem 'mysql2'
end

platforms :jruby do
  gem 'jdbc-mysql'
  gem 'jmx4r'
end

group :development do
  gem 'redcarpet', platforms: :ruby
  gem 'yard'
  gem 'geminabox'
  gem 'ronn', platforms: :ruby
  gem 'chef-zero', '~> 1.5.0'
  gem 'pry-nav'
  gem 'ruby-prof', platforms: :ruby
end

group :test do
  gem 'rack-test'
  gem 'rake', '>= 0.9.2.2'
  gem 'rspec'
  gem 'webmock'
  gem 'spork'
  gem 'aruba'
  gem 'cucumber'
  gem 'coolline'
  gem 'fuubar'
  gem 'json_spec'
  gem 'guard'
  gem 'guard-cucumber'
  gem 'guard-rspec'
  gem 'guard-spork'
  gem 'guard-yard'

  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.7.1', 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

6 entries across 6 versions & 1 rubygems

Version Path
motherbrain-1.1.3 Gemfile
motherbrain-1.1.2 Gemfile
motherbrain-1.1.1 Gemfile
motherbrain-1.1.0 Gemfile
motherbrain-1.0.0 Gemfile
motherbrain-0.14.5 Gemfile