Sha256: a439f39fa188f59abe3ac76c08da5836a6618facc9c6ec8fbcd69d4a68f4e8d5
Contents?: true
Size: 562 Bytes
Versions: 6
Compression:
Stored size: 562 Bytes
Contents
source 'https://rubygems.org' gemspec gem 'sqlite3', '1.3.10' rails_version = ENV['RAILS_VERSION'] || 'default' jsonapi_resources_version = ENV['JSONAPI_RESOURCES_VERSION'] || 'default' case rails_version when 'master' gem 'rails', git: 'https://github.com/rails/rails.git' gem 'arel', git: 'https://github.com/rails/arel.git' when 'default' gem 'rails', '>= 4.2' else gem 'rails', "~> #{rails_version}" end case jsonapi_resources_version when 'default' gem 'jsonapi-resources', '0.9' else gem 'jsonapi-resources', jsonapi_resources_version end
Version data entries
6 entries across 6 versions & 1 rubygems