Sha256: 67f2a635030d183cad0f9f11a7bb336e4de3fad0c2d6d97bb82da97cfed98ae8

Contents?: true

Size: 985 Bytes

Versions: 2

Compression:

Stored size: 985 Bytes

Contents

appraise "rails-5-0" do
  gem 'combustion', '~> 0.9.0'

  gem "rails", "~> 5.0.0"

  # rails 5.1+ includes it by default, but rails 5.0 needs it:
  gem 'rails-ujs', require: false

  # Rails 5 won't work with pg 1.0 even though it doesn't say so
  gem "pg",  "~> 0.18"
end

appraise "rails-5-1" do
  gem 'combustion', '~> 0.9.0'

  gem "rails", "~> 5.1.0"

  gem "pg", "~> 1.0"
end

appraise "rails-5-2" do
  gem 'combustion', '~> 0.9.0'

  gem "rails", "~> 5.2.0"
  gem "pg", "~> 1.0"
end

appraise "rails-edge-6" do
  # Edge rails needs unreleased combustion
  # https://github.com/pat/combustion/issues/92
  gem 'combustion', git: "https://github.com/pat/combustion.git"

  gem "rails", git: "https://github.com/rails/rails.git", branch: "master"
  gem "pg", "~> 1.0"

  # We don't actually use coffeescript at all, we need coffee-rails as an explicit
  # dependency just for transitory edge weirdness using current sprockets release
  # with rails 6 edge.
  gem 'coffee-rails'
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
attr_json-0.5.0 Appraisals
attr_json-0.4.0 Appraisals