/config/initializers/secret_token.rb not being generated. Why not?

前端 未结 3 1668
太阳男子
太阳男子 2020-12-17 20:06

Currently going through a rails tutorial and I need to make some modifications to /config/initializers/secret_token.rb, however, I can\'t find this file anywher

相关标签:
3条回答
  • 2020-12-17 20:15

    Thanks for pointing this out. The issue is probably due to using Rails 4.1 instead of Rails 4.0 as specified in the Rails Tutorial. It's because of issues like this that Section 1.2.2 states (bold in original)

    Unless otherwise noted, you should use the exact versions of all software used in the tutorial, including Rails itself, if you want the same results.

    To get things to work, first uninstall the current version of Rails:

    $ gem uninstall rails railties
    

    Then follow the instructions exactly as written in the tutorial to install Rails 4.0:

    $ gem install rails --version 4.0.4
    

    Generating a test app (skipping Bundler for convenience) and piping the output through grep then verifies that secret_token.rb gets generated:

    $ rails -v
    Rails 4.0.4
    $ rails new test_app --skip-bundle | grep secret_token
          create  config/initializers/secret_token.rb
    

    At this point, you should be able to follow the rest of the tutorial as written.

    By the way, I'm about to start work on a 3rd edition of the tutorial, and will plan to take care of this issue as part of a more general update.

    0 讨论(0)
  • 2020-12-17 20:18

    The tutorial you're looking at was likely written for an older version of Rails than you're using.

    secret_token.rb existed in Rails 3 and Rails 4.0 apps; it does not exist in Rails 4.1 apps.

    It has been replaced in Rails 4.1 by the secrets.yml file:

    http://guides.rubyonrails.org/upgrading_ruby_on_rails.html#config-secrets-yml

    0 讨论(0)
  • 2020-12-17 20:22

    I am using 4.1.1. Dont copy nothing to the secrets.yml, just dont forget to update the gitignore file (http://www.railstutorial.org/book/beginning#code-gitignore)

    With this you can keep going on the tutorial

    0 讨论(0)
提交回复
热议问题