Newer
Older
2018-fumichan-thesis / form-sample / vendor / bundle / ruby / 2.5.0 / gems / concurrent-ruby-1.1.3 / Gemfile
source 'https://rubygems.org'

require File.join(File.dirname(__FILE__ ), 'lib/concurrent/version')

no_path = ENV['NO_PATH']
options = no_path ? {} : { path: '.' }

gem 'concurrent-ruby', Concurrent::VERSION, options
gem 'concurrent-ruby-edge', Concurrent::EDGE_VERSION, options
gem 'concurrent-ruby-ext', Concurrent::VERSION, options.merge(platform: :mri)

group :development do
  gem 'rake', '~> 12.0'
  gem 'rake-compiler', '~> 1.0'
  gem 'rake-compiler-dock', '~> 0.6.0'
  gem 'pry', '~> 0.11', platforms: :mri
end

group :documentation, optional: true do
  gem 'yard', '~> 0.9.0', :require => false
  gem 'redcarpet', '~> 3.0', platforms: :mri # understands github markdown
  gem 'md-ruby-eval', '~> 0.3'
end

group :testing do
  gem 'rspec', '~> 3.7'
  gem 'timecop', '~> 0.7.4'
end

# made opt-in since it will not install on jruby 1.7
group :coverage, optional: !ENV['COVERAGE'] do
  gem 'simplecov', '~> 0.10.0', :require => false
  gem 'coveralls', '~> 0.8.2', :require => false
end

group :benchmarks, optional: true do
  gem 'benchmark-ips', '~> 2.7'
  gem 'bench9000'
end