1. 25 5月, 2014 1 次提交
  2. 18 5月, 2014 2 次提交
  3. 11 5月, 2014 1 次提交
  4. 07 5月, 2014 1 次提交
  5. 02 5月, 2014 2 次提交
  6. 11 4月, 2014 1 次提交
  7. 09 4月, 2014 2 次提交
  8. 27 3月, 2014 1 次提交
  9. 25 3月, 2014 1 次提交
    • K
      Fix Generation of proper migration when · 5a3817cb
      Kuldeep Aggarwal 提交于
        ActiveRecord::Base.pluralize_table_names = false.
      
        Previously, generation a migration like this:
      
            rails g migration add_column_name_to_user name
      
        would not generating the correct table name.
      
      Fixes #13426.
      5a3817cb
  10. 24 3月, 2014 2 次提交
  11. 15 3月, 2014 1 次提交
  12. 28 2月, 2014 1 次提交
  13. 26 2月, 2014 3 次提交
    • R
      Avoid namespacing routes inside engines · fc61bca3
      Robin Dupret 提交于
      Since #11544, invoking the controller generator, any generated route is
      namespaced according to the class_path method. Since a mountable plugin
      is namespaced, creating a controller inside would generate a namespaced
      route based on the engine's name.
      
      The controller generator now relies on regular_class_path which does not
      contain the class hierarchy but the given path.
      
      Fixes #14079.
      fc61bca3
    • C
      Remove inclusion of rubysl gem for rbx on generated Gemfile · 1d298bd6
      Carlos Antonio da Silva 提交于
      From #14026:
      
          Specific rbx-2 to limit testing on Rubinius 2.x (since there will be
          other versions of Rubinius > 2.x soon).
      
          Also, as of Rubinius 2.2.5, it is no longer necessary to bundle the
          rubysl gem.
      
      This is what Rails master/4.1 supports, so we don't need to add rubysl to
      gemfiles anymore.
      1d298bd6
    • S
      ad75539a
  14. 24 2月, 2014 2 次提交
  15. 23 2月, 2014 1 次提交
  16. 15 2月, 2014 2 次提交
    • A
      remove railties changes. fixes #14054 · 22a1a5ac
      Aaron Patterson 提交于
      Squashed commit of the following:
      
      commit 96991e8e919edfb20cc4120bca4e36ed51175d57
      Author: Aaron Patterson <aaron.patterson@gmail.com>
      Date:   Fri Feb 14 11:29:24 2014 -0800
      
          Revert "gems can be added or skipped from the template"
      
          This reverts commit 8beb42cf.
      
          Conflicts:
          	railties/lib/rails/generators/rails/app/app_generator.rb
          	railties/test/generators/app_generator_test.rb
      
      commit 35599c0e657245ef14ac0f28c9189ad16acf40e6
      Author: Aaron Patterson <aaron.patterson@gmail.com>
      Date:   Fri Feb 14 11:26:53 2014 -0800
      
          Revert "oops, template replay needs to happen after bundle. :orz:"
      
          This reverts commit 9104702b.
      
          Conflicts:
          	railties/lib/rails/generators/rails/app/app_generator.rb
      
      commit f519c3902c313db8e906a49251c91643b8e6499e
      Author: Aaron Patterson <aaron.patterson@gmail.com>
      Date:   Fri Feb 14 11:25:51 2014 -0800
      
          Revert "only ask for these ivars if the target responds to them"
      
          This reverts commit 656d4125.
      
      commit aa524a9428e3e4c45fe221f10a66a08efb827ab5
      Author: Aaron Patterson <aaron.patterson@gmail.com>
      Date:   Fri Feb 14 11:25:39 2014 -0800
      
          Revert "refactor generator tests to use block form of Tempfile"
      
          This reverts commit 65251820.
      
      commit 7d3740549fa4dfa62e3761f8d4bc6d6d441256e7
      Author: Aaron Patterson <aaron.patterson@gmail.com>
      Date:   Fri Feb 14 11:25:25 2014 -0800
      
          Revert "add a more restricted codepath for templates fixes #13390"
      
          This reverts commit 2875b4a6.
      
      commit 525df0af1001918986cdfce59539fd2d52c4f32c
      Author: Aaron Patterson <aaron.patterson@gmail.com>
      Date:   Fri Feb 14 11:25:11 2014 -0800
      
          Revert "add a send so `apply` can be called.  Fixes #13510"
      
          This reverts commit c5034d60.
      22a1a5ac
    • K
      fix path shown in mailer's templates · aae455f6
      Kassio Borges 提交于
      aae455f6
  17. 11 2月, 2014 1 次提交
  18. 30 1月, 2014 2 次提交
    • G
      Modify the session serializer implementation · fd487860
      Guillermo Iguaran 提交于
      Rename allowed options to :marshal and :json, for custom serializers
      only allow the use of custom classes.
      fd487860
    • L
      Allow session serializer key in config.session_store · b23ffd0d
      Lukasz Sarnacki 提交于
      MessageEncryptor has :serializer option, where any serializer object can
      be passed. This commit make it possible to set this serializer from configuration
      level.
      
      There are predefined serializers (:marshal_serializer, :json_serialzier)
      and custom serializer can be passed as String, Symbol (camelized and
      constantized in ActionDispatch::Session namepspace) or serializer object.
      
      Default :json_serializer was also added to generators to provide secure
      defalt.
      b23ffd0d
  19. 28 1月, 2014 1 次提交
    • G
      Add CreateMigration action · 3858a247
      Gert Goet 提交于
      This Thor-action isolates the logic whether to (over-)write migration and
      what is shown to the user. It's modelled after Thor's CreateFile-action.
      
      This solves the issue that removing a non-existing migration, tried to
      remove the template-path (#13588).
      
      Related issues: #12674
      3858a247
  20. 15 1月, 2014 1 次提交
  21. 14 1月, 2014 1 次提交
  22. 13 1月, 2014 3 次提交
  23. 09 1月, 2014 2 次提交
  24. 06 1月, 2014 1 次提交
  25. 22 12月, 2013 1 次提交
  26. 21 12月, 2013 1 次提交
  27. 17 12月, 2013 2 次提交