1. 09 4月, 2020 4 次提交
  2. 08 4月, 2020 6 次提交
  3. 07 4月, 2020 5 次提交
  4. 06 4月, 2020 9 次提交
  5. 05 4月, 2020 3 次提交
    • F
      Add description to db:rollback command for multiple databases [ci skip] · 790e5719
      Faruk AYDIN 提交于
      rails -T command omits rake tasks that do not have a task description,
      so I added a description to `db:rollback` command for multiple databases
      and updated the documentation accordingly
      790e5719
    • J
      Clarify database.yml DATABASE_URL instructions · 85808bf1
      Jonathan Hefner 提交于
      From the instructions in database.yml, it is not clear that Rails will
      automatically use ENV['DATABASE_URL'] if it is present.
      
      This commit rewords the instructions to clarify that Rails will do so.
      85808bf1
    • J
      Remove `rake rdoc` task in generated plugin · 677eac67
      Jonathan Hefner 提交于
      The `rdoc lib` command produces nearly the same output as `rake rdoc`.
      The `rdoc lib` command also has the benefit of being standard, whereas
      Rake subcommands can vary from project to project.  Since the purpose of
      either command is to support local development, as opposed to generating
      official docs for consumption by e.g. rubygems, the standard command
      seems preferable.
      
      Note that the `rdoc` command outputs to the doc/ directory by default,
      so this commit also adds that directory to the plugin .gitignore file.
      677eac67
  6. 04 4月, 2020 4 次提交
  7. 03 4月, 2020 3 次提交
  8. 01 4月, 2020 3 次提交
    • J
      Deprecate rendering templates with . in the name · f84773a5
      John Hawthorn 提交于
      Allowing templates with "." introduces some ambiguity. Is index.html.erb
      a template named "index" with format "html", or is it a template named
      "index.html" without a format? We know it's probably the former, but if
      we asked ActionView to render "index.html" we would currently get some
      combination of the two: a Template with index.html as the name and
      virtual path, but with html as the format.
      
      This deprecates having "." anywhere in the template's name, we should
      reserve this character for specifying formats. I think in 99% of cases
      this will be people specifying `index.html` instead of simply `index`.
      
      This was actually once deprecated in the 3.x series (removed in
      6c57177f) but I don't think we can rely
      on nobody having introduced this in the past 8 years.
      f84773a5
    • D
      Add a way to deliver inbound emails by source (#38849) · d56d2e74
      David Heinemeier Hansson 提交于
      * Add a way to deliver inbound emails by source
      
      Great for testing when you get an eml file and can just paste it in.
      
      * Test updates
      
      * Fix tests
      
      * Fix spacing
      d56d2e74
    • G
      8c4d6a04
  9. 31 3月, 2020 3 次提交