Code Monkey home page Code Monkey logo

Comments (3)

pat avatar pat commented on August 21, 2024 1

I've just pushed a commit to avoid setting secret_token for Rails 5.2 onwards (d22798d). Also, secret_key_base is already being set, so for your temporary workaround, you don't need to worry about that.

Thanks for reporting the issue :) I'll push a gem release out in the next week or so.

from combustion.

pat avatar pat commented on August 21, 2024 1

0.9.1 is now released with this fix :)

from combustion.

jrochkind avatar jrochkind commented on August 21, 2024

In my own app, which runs CI in multiple rails versions (not using appraisal, just my own hack, appraisal probably has it's own way...), I get rid of deprecation message like this:

Combustion.initialize! :all do
  case "#{Rails::VERSION::MAJOR}.#{Rails::VERSION::MINOR}"
  when "5.0"
    # avoid deprecation notice
    config.active_record.time_zone_aware_types = [:datetime]
  when "5.2"
    config.secret_key_base = config.secret_token
    config.secret_token = nil
  end
end

from combustion.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.