File: Gemfile

package info (click to toggle)
ruby-hashie 5.0.0-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 884 kB
  • sloc: ruby: 7,049; sh: 8; makefile: 6
file content (15 lines) | stat: -rw-r--r-- 468 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
source 'http://rubygems.org'

gem 'hashie', path: '../../..'
require File.expand_path('../../../../lib/hashie/extensions/ruby_version', __FILE__)

# rubocop:disable Bundler/DuplicatedGem
if Hashie::Extensions::RubyVersion.new(RUBY_VERSION) >= Hashie::Extensions::RubyVersion.new('2.4.0')
  gem 'activesupport', '~> 5.x', require: false
else
  gem 'activesupport', '~> 4.x', require: false
end
# rubocop:enable Bundler/DuplicatedGem

gem 'rake'
gem 'rspec', '~> 3.5.0'