Sha256: ceef08a081e28f7f8c0b10632408b6615eb68d8959107ae19d0954a8ae557b51
Contents?: true
Size: 766 Bytes
Versions: 2
Compression:
Stored size: 766 Bytes
Contents
# frozen_string_literal: true source 'https://rubygems.org' gemspec group :coverage do gem 'codeclimate-test-reporter' gem 'coveralls' gem 'simplecov-teamcity-summary' end group :style do gem 'rubocop', '< 0.50' gem 'rubocop-rspec' end group :test do gem 'rspec', '~> 3.0' gem 'rspec-collection_matchers' gem 'rspec-its' end group :guard do gem 'guard-bundler' gem 'guard-rspec' gem 'guard-rubocop' # guard notifications. install_if(-> { Gem.win_platform? }) do gem 'ruby_gntp' gem 'wdm' end install_if(-> { RbConfig::CONFIG['target_os'] =~ /linux/i }) do gem 'rb-inotify' end install_if(-> { RbConfig::CONFIG['target_os'] =~ /mac|darwin/i }) do gem 'rb-fsevent' gem 'terminal-notifier-guard' end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
rake-funnel-0.24.0 | Gemfile |
rake-funnel-0.23.0 | Gemfile |