Sha256: 6c769f073cd5eab35e423998f2bc1f122d7bff01572ca484abdac8a01d97da7e

Contents?: true

Size: 564 Bytes

Versions: 3

Compression:

Stored size: 564 Bytes

Contents

source "http://rubygems.org"

# Specify your gem's dependencies in oauth-plugin.gemspec
gemspec

require 'rbconfig'

platforms :ruby do
  if RbConfig::CONFIG['target_os'] =~ /darwin/i
    gem 'rb-fsevent'
    gem 'growl'
  end
  if RbConfig::CONFIG['target_os'] =~ /linux/i
    gem 'rb-inotify', '>= 0.5.1'
    gem 'libnotify',  '~> 0.1.3'
  end
end

platforms :jruby do
  if RbConfig::CONFIG['target_os'] =~ /darwin/i
    gem 'growl'
  end
  if RbConfig::CONFIG['target_os'] =~ /linux/i
    gem 'rb-inotify', '>= 0.5.1'
    gem 'libnotify',  '~> 0.1.3'
  end
end

Version data entries

3 entries across 3 versions & 2 rubygems

Version Path
houston-oauth-plugin-0.5.1 Gemfile
oauth-plugin-0.5.1 Gemfile
oauth-plugin-0.5.0 Gemfile