Sha256: 6b9abc7fc899d6154ca9edaeda0c56284aaf3f74c7c6d13e0f91d46ef8a72318

Contents?: true

Size: 904 Bytes

Versions: 8

Compression:

Stored size: 904 Bytes

Contents

source 'https://rubygems.org'

git_source(:github) {|repo_name| "https://github.com/#{repo_name}" }

activemodel_version = ENV['ACTIVEMODEL_VERSION']

activemodel = case activemodel_version
              when '3.2' then '3.2.22'
              when '4.0' then '4.0.13'
              when '4.1' then '4.1.16'
              when '4.2' then '4.2.11'
              when '5.0' then '5.0.7'
              when '5.1' then '5.1.7'
              when '5.2' then '5.2.4'
              when '6.0' then '6.0.0'
              end

group :test do
  if activemodel_version
    gem 'activesupport', activemodel, require: false
    gem 'activemodel', activemodel, require: false
    gem 'minitest', activemodel_version < '4.1' ? '~> 4.2' : '~> 5.0'
  else
    gem 'minitest', '~> 5.0'
  end

  gem 'simplecov', require: false
end

gem 'rake', '~> 13.0'

# Specify your gem's dependencies in type_validator.gemspec
gemspec

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
kind-3.1.0 Gemfile
kind-3.0.1 Gemfile
kind-3.0.0 Gemfile
kind-2.3.0 Gemfile
kind-2.2.0 Gemfile
kind-2.1.0 Gemfile
kind-2.0.0 Gemfile
kind-1.9.0 Gemfile