1. 17 1月, 2019 2 次提交
  2. 11 1月, 2019 2 次提交
  3. 09 1月, 2019 2 次提交
  4. 31 12月, 2018 1 次提交
  5. 27 12月, 2018 1 次提交
    • G
      Don't expect defined protect_against_forgery? in {token,csrf_meta}_tag · a58db74c
      Genadi Samokovarov 提交于
      The `#csrf_meta_tags` and `#token_tag` Action View helper methods are
      expecting the class in which are included to explicitly define the
      method `#protect_against_forgery?` or else they will fail with
      `NoMethodError`.
      
      This is a problem if you want to use Action View outside of Rails
      applications. For example, in #34788 I used the `#button_to` helper
      inside of the error pages templates that have a custom
      `ActionView::Base` subclass, which did not defined
      `#protect_against_forgery?` and trying to call the button failed.
      
      I had to dig inside of Action View to find-out what's was going on. I
      think we should either set a default method implementation in the
      helpers or check for the method definition, but don't explicitly require
      the presence of `#protect_against_forgery?` in every `ActionViews::Base`
      subclass as the errors are hard to figure out.
      a58db74c
  6. 26 12月, 2018 1 次提交
  7. 21 12月, 2018 3 次提交
  8. 20 12月, 2018 1 次提交
  9. 18 12月, 2018 2 次提交
  10. 13 12月, 2018 1 次提交
  11. 11 12月, 2018 1 次提交
  12. 06 12月, 2018 1 次提交
  13. 05 12月, 2018 1 次提交
  14. 20 11月, 2018 1 次提交
  15. 08 11月, 2018 1 次提交
  16. 07 11月, 2018 2 次提交
  17. 26 10月, 2018 1 次提交
    • R
      Added maxlength example to text_field documentation · 5edbc1fd
      Raghu Kamat 提交于
      The usage of maxlength in the text_field helper adds a size attribute
      to the generated text_field input with the same value as the maxlength.
      This implicit addition of size attribute by the method gives a false
      impression that it may be bug. By adding the implementation of the
      maxlength to the api docs, we explicitly tell the reader referring the
      api doc that addition of size along with maxlength is the expected behaviour.
      
      [ci skip]
      5edbc1fd
  18. 10 10月, 2018 1 次提交
    • E
      Add allocations to template renderer subscription · e8c1be4a
      Eileen Uchitelle 提交于
      This PR adds the allocations to the instrumentation for template and
      partial rendering.
      
      Before:
      
      ```
        Rendering posts/new.html.erb within layouts/application
        Rendered posts/_form.html.erb (9.7ms)
        Rendered posts/new.html.erb within layouts/application (10.9ms)
      Completed 200 OK in 902ms (Views: 890.8ms | ActiveRecord: 0.8ms)
      ```
      
      After:
      
      ```
        Rendering posts/new.html.erb within layouts/application
        Rendered posts/_form.html.erb (Duration: 7.1ms | Allocations: 6004)
        Rendered posts/new.html.erb within layouts/application (Duration: 8.3ms | Allocations: 6654)
      Completed 200 OK in 858ms (Views: 848.4ms | ActiveRecord: 0.4ms | Allocations: 1539564)
      ```
      e8c1be4a
  19. 04 10月, 2018 1 次提交
  20. 02 10月, 2018 2 次提交
  21. 01 10月, 2018 2 次提交
  22. 29 9月, 2018 1 次提交
    • Y
      Add `Style/RedundantFreeze` to remove redudant `.freeze` · aa3dcabd
      Yasuo Honda 提交于
      Since Rails 6.0 will support Ruby 2.4.1 or higher
      `# frozen_string_literal: true` magic comment is enough to make string object frozen.
      This magic comment is enabled by `Style/FrozenStringLiteralComment` cop.
      
      * Exclude these files not to auto correct false positive `Regexp#freeze`
       - 'actionpack/lib/action_dispatch/journey/router/utils.rb'
       - 'activerecord/lib/active_record/connection_adapters/sqlite3_adapter.rb'
      
      It has been fixed by https://github.com/rubocop-hq/rubocop/pull/6333
      Once the newer version of RuboCop released and available at Code Climate these exclude entries should be removed.
      
      * Replace `String#freeze` with `String#-@` manually if explicit frozen string objects are required
      
       - 'actionpack/test/controller/test_case_test.rb'
       - 'activemodel/test/cases/type/string_test.rb'
       - 'activesupport/lib/active_support/core_ext/string/strip.rb'
       - 'activesupport/test/core_ext/string_ext_test.rb'
       - 'railties/test/generators/actions_test.rb'
      aa3dcabd
  23. 27 9月, 2018 1 次提交
  24. 26 9月, 2018 2 次提交
  25. 25 9月, 2018 3 次提交
  26. 23 9月, 2018 2 次提交
    • S
      Remove private def · 0fe2bb81
      Sakshi Jain 提交于
      0fe2bb81
    • Y
      Enable `Performance/UnfreezeString` cop · 1b86d901
      yuuji.yaginuma 提交于
      In Ruby 2.3 or later, `String#+@` is available and `+@` is faster than `dup`.
      
      ```ruby
      # frozen_string_literal: true
      
      require "bundler/inline"
      
      gemfile(true) do
        source "https://rubygems.org"
      
        gem "benchmark-ips"
      end
      
      Benchmark.ips do |x|
        x.report('+@') { +"" }
        x.report('dup') { "".dup }
        x.compare!
      end
      ```
      
      ```
      $ ruby -v benchmark.rb
      ruby 2.5.1p57 (2018-03-29 revision 63029) [x86_64-linux]
      Warming up --------------------------------------
                        +@   282.289k i/100ms
                       dup   187.638k i/100ms
      Calculating -------------------------------------
                        +@      6.775M (± 3.6%) i/s -     33.875M in   5.006253s
                       dup      3.320M (± 2.2%) i/s -     16.700M in   5.032125s
      
      Comparison:
                        +@:  6775299.3 i/s
                       dup:  3320400.7 i/s - 2.04x  slower
      
      ```
      1b86d901
  27. 22 9月, 2018 1 次提交
    • A
      Let escape_javascript handle conversion to string · dd0cfb03
      Andrew Vit 提交于
      This brings `escape_javascript` in line with the behavior of `json_escape` and
      allows other value types to be output without needing explicit casting in the
      view template.
      
      Example:
      
          <%= javascript_tag do %>
            var locale = '<%== j I18n.locale %>'; // locale is a symbol
          <% end %>
      dd0cfb03