Files
gosick/Gemfile

45 lines
1.1 KiB
Ruby

require 'rbconfig'
source 'https://rubygems.org'
# Add dependencies required to use your gem here.
gem "thor", ">= 0.14.0"
# Add dependencies to develop your gem here.
# Include everything needed to run rake, tests, features, etc.
group :development do
gem "rake", ">= 0.8.7"
gem "rspec", "~> 3.1.0"
gem "guard"
gem "guard-rspec"
gem "rb-readline", "~> 0.5.0"
gem "test_construct"
gem "capture-output", "~> 1.0.0"
if RbConfig::CONFIG['host_os'] =~ /linux|freebsd|openbsd|sunos|solaris/
gem 'libnotify'
end
if RbConfig::CONFIG['host_os'] =~ /darwin|mac os/
gem 'terminal-notifier-guard', '~> 1.6.1'
end
if RUBY_VERSION < '2.0.0'
gem "addressable", "< 2.5"
gem "json", "< 2"
gem "coveralls", "< 0.8.6", require: false
gem "tins", "< 1.3.5"
gem "term-ansicolor", "< 1.3.2"
gem "rubocop", "< 0.42"
else
gem "coveralls", require: false
gem "rubocop"
end
if RUBY_VERSION < '2.1.0'
gem "rdoc", "< 5"
end
if RUBY_VERSION < '2.3.0'
gem "rack", "< 2"
gem "listen", "< 3"
gem "jeweler", ">= 1.6.2", "< 2.2"
else
gem "jeweler", ">= 1.6.2"
end
end