Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | | `find_templates` should be able to handle 5 arguments | kenta-s | 2017-01-19 | 1 | -2/+2 | |
|/ | ||||||
* | Remove TODOs related to Exceptron [ci skip] | kenta-s | 2017-01-18 | 1 | -2/+0 | |
| | ||||||
* | Fix grammar in partial_renderer.rb [ci skip] | kenta-s | 2017-01-18 | 1 | -1/+1 | |
| | ||||||
* | :warning: "Use assert_nil if expecting nil. This will fail in MT6." | Akira Matsuda | 2017-01-18 | 1 | -1/+6 | |
| | | | | | | These are followups for 307065f959f2b34bdad16487bae906eb3bfeaf28, but TBH I'm personally not very much confortable with this style. Maybe we could override assert_equal in our test_helper not to warn? | |||||
* | Merge pull request #27665 from kenta-s/improve-compute_asset_extname | Rafael França | 2017-01-18 | 1 | -1/+5 | |
|\ | | | | | compute_asset_extname should explicitly return nil in else clause | |||||
| * | should explicitly returns nil in else clause | kenta-s | 2017-01-13 | 1 | -1/+5 | |
| | | ||||||
* | | Merge pull request #27693 from kenta-s/improve-to_sentence-method | Rafael França | 2017-01-18 | 2 | -1/+11 | |
|\ \ | | | | | | | Fix unexpected behavior of `to_sentence` with $, | |||||
| * | | Fix unexpected behavior of with $, | kenta-s | 2017-01-15 | 2 | -1/+11 | |
| | | | ||||||
* | | | Merge pull request #27688 from kenta-s/add-test-for-safe_join | Rafael França | 2017-01-18 | 1 | -0/+5 | |
|\ \ \ | | | | | | | | | Add test for `safe_join` | |||||
| * | | | Add test for safe_join | kenta-s | 2017-01-15 | 1 | -0/+5 | |
| | | | | ||||||
* | | | | Remove unused variable 'regex' | kenta-s | 2017-01-18 | 1 | -1/+1 | |
| | | | | ||||||
* | | | | Don't pollute Object with rubinius_skip and jruby_skip | Akira Matsuda | 2017-01-17 | 1 | -9/+9 | |
| | | | | | | | | | | | | | | | | we call them only in the tests | |||||
* | | | | Merge pull request #27692 from y-yagi/make_render_work_with_ac_params | Eileen M. Uchitelle | 2017-01-16 | 1 | -1/+5 | |
|\ \ \ \ | | | | | | | | | | | make `render` work with AC::Params | |||||
| * | | | | make `render` work with AC::Params | yuuji.yaginuma | 2017-01-15 | 1 | -1/+5 | |
| |/ / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | In 4.2, since AC::Params inherited `Hash`, processing in the case of `Hash` was done. But in 5.x, since AC::Params does not inherit `Hash`, need to add care for AC::Params. Related to 00285e7cf75c96553719072a27c27e4ab7d25b40 | |||||
* | | | | Update comment for Scrubber usage [ci skip] | kenta-s | 2017-01-16 | 1 | -6/+4 | |
| | | | | ||||||
* | | | | Allow render locals to be assigned to instance variables | Andrew White | 2017-01-15 | 4 | -1/+12 | |
| |/ / |/| | | | | | | | | | | | | | | | | | | | | | | | In #26672 we blocked use of Ruby keywords as identifiers for view locals but inadvertently broke the use of instance variable names as identifiers. Whilst not explicitly documented this behavior has been around for a long time and there's no need to break it now. Fixes #27480. | |||||
* | | | Fix broken sample code in action_view/helpers/output_safety_helper.rb [ci skip] | kenta-s | 2017-01-15 | 1 | -1/+1 | |
|/ / | ||||||
* | | Fix grammar in asset_url_helper.rb [ci skip] | kenta-s | 2017-01-13 | 1 | -3/+3 | |
| | | ||||||
* | | class Foo < Struct.new(:x) creates an extra unneeded anonymous class | Akira Matsuda | 2017-01-13 | 6 | -12/+10 | |
| | | | | | | | | because Struct.new returns a Class, we just can give it a name and use it directly without inheriting from it | |||||
* | | Fix typo extention -> extension [ci skip] | kenta-s | 2017-01-13 | 1 | -1/+1 | |
|/ | ||||||
* | Reduce string objects by using \ instead of + or << for concatenating strings | Akira Matsuda | 2017-01-12 | 9 | -528/+528 | |
| | | | | (I personally prefer writing one string in one line no matter how long it is, though) | |||||
* | Use Encoding::UTF_8 constant for default_{internal,external} in the tests | Akira Matsuda | 2017-01-11 | 1 | -2/+2 | |
| | ||||||
* | Remove unneeded Deprecation silence | Rafael Mendonça França | 2017-01-06 | 1 | -5/+3 | |
| | ||||||
* | `self.` is not needed when calling its own instance method | Akira Matsuda | 2017-01-05 | 6 | -7/+7 | |
| | | | | Actually, private methods cannot be called with `self.`, so it's not just redundant, it's a bad habit in Ruby | |||||
* | Merge pull request #27549 from mpugach/consider_params_in_current_page | Rafael França | 2017-01-04 | 3 | -2/+20 | |
|\ | | | | | Add "check_parameters" option to "current_page?" | |||||
| * | Add `check_parameters` option to `current_page?` | Maksym Pugach | 2017-01-04 | 3 | -2/+20 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Example: For "http://www.example.com/shop/checkout?order=desc&page=1" current_page?('http://www.example.com/shop/checkout') => true current_page?( 'http://www.example.com/shop/checkout', check_parameters: true ) => false | |||||
* | | Fix typo s/permited/permitted/ | Ryuta Kamizono | 2017-01-04 | 1 | -2/+2 | |
| | | | | | | | | | | | | | | | | | | ``` % git grep -n permited actionview/test/template/url_helper_test.rb:238: def test_button_to_with_permited_strong_params actionview/test/template/url_helper_test.rb:245: def test_button_to_with_unpermited_strong_params activerecord/test/cases/relations_test.rb:1620: def test_update_on_relation_passing_active_record_object_is_not_permited ``` | |||||
* | | Generate indexed names in input even when objects are not persisted | Rafael Mendonça França | 2017-01-03 | 2 | -6/+17 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | When you ask to generate multiple nested inputs using: field_for('comments[]', Comment.new) do |c| c.text_field :body Rails should generated the names like `post[comments][][body]`. To make sure we don't have regression the fake models now use the same implementation of `#to_param` as `ActiveRecord::Base` Fixes #26942 | |||||
* | | Prevent duplicate data-disable-with attributes | Tyler Hunt | 2017-01-03 | 2 | -14/+25 | |
|/ | | | | | | When using the hash form of the data option, prevent duplicate data-disable-with attributes from appearing in the submit tag due to both string and symbol forms of the hash key being present. | |||||
* | Bump license years for 2017 | Jon Moss | 2016-12-31 | 2 | -2/+2 | |
| | | | | | | | | Per https://www.timeanddate.com/counters/firstnewyear.html, it's already 2017 in a lot of places, so we should bump the Rails license years to 2017. [ci skip] | |||||
* | Merge pull request #27463 from y-yagi/fix_26931 | Rafael França | 2016-12-28 | 3 | -2/+11 | |
|\ | | | | | do not mutate `object_name` of class in `fields_for` | |||||
| * | do not mutate `object_name` of class in `fields_for` | yuuji.yaginuma | 2016-12-27 | 3 | -2/+11 | |
| | | | | | | | | | | | | Since it affects the entire form, should not mutate `object_name` of class. Fixes #26931 | |||||
* | | Fix Rubocop violations and fix documentation visibility | Rafael Mendonça França | 2016-12-28 | 7 | -33/+32 | |
| | | | | | | | | | | | | Some methods were added to public API in 5b14129d8d4ad302b4e11df6bd5c7891b75f393c and they should be not part of the public API. | |||||
* | | Fix typo in action_view/template.rb [ci skip] | kenta-s | 2016-12-28 | 1 | -1/+1 | |
|/ | ||||||
* | assert_equal takes expectation first | Akira Matsuda | 2016-12-26 | 1 | -5/+5 | |
| | ||||||
* | "Use assert_nil if expecting nil. This will fail in minitest 6." | Akira Matsuda | 2016-12-25 | 4 | -16/+16 | |
| | ||||||
* | self. is not needed when calling its own instance method | Akira Matsuda | 2016-12-24 | 1 | -2/+1 | |
| | ||||||
* | Privatize unneededly protected methods in Action View | Akira Matsuda | 2016-12-24 | 7 | -39/+32 | |
| | ||||||
* | No need to nodoc private methods | Akira Matsuda | 2016-12-24 | 9 | -20/+20 | |
| | ||||||
* | Wrong rake task name in the document | Akira Matsuda | 2016-12-24 | 1 | -1/+1 | |
| | | | | [ci skip] | |||||
* | Privatize unneededly protected methods in Action View tests | Akira Matsuda | 2016-12-23 | 5 | -5/+5 | |
| | ||||||
* | Describe what we are protecting | Akira Matsuda | 2016-12-23 | 1 | -0/+2 | |
| | ||||||
* | Unneeded attr_accessor with side effects | Akira Matsuda | 2016-12-23 | 2 | -8/+0 | |
| | ||||||
* | Fix grammar in asset tag documentation | eileencodes | 2016-12-20 | 1 | -1/+1 | |
| | | | | | Updated the docmentation because "options supports" is not grammatically correct. | |||||
* | Improve `javascript_include_tag` documentation (#27403) | Pablo Ifrán | 2016-12-20 | 1 | -5/+24 | |
| | | | | Add all the available options, and correct the samples of the `javascript_include_tag`. | |||||
* | fields: support attributes not on model. | Kasper Timm Hansen | 2016-12-18 | 2 | -0/+37 | |
| | | | | Ensure the support works like form_with. | |||||
* | [ci skip] fields don't output ids by default anymore. | Kasper Timm Hansen | 2016-12-18 | 1 | -2/+2 | |
| | ||||||
* | form_with: allow methods outside the model. | Kasper Timm Hansen | 2016-12-18 | 3 | -16/+96 | |
| | | | | | | | | Has the handy effect of making the initial examples in the form_with docs work too. Had to do some finagling such that form_with's without a scope didn't wrap their names in braces ala `[title]`. | |||||
* | [ci skip] Replace remote with local in form_with doc. | Kasper Timm Hansen | 2016-12-18 | 1 | -1/+1 | |
| | | | | Remote is gone, long live local. | |||||
* | Make attributes output in html opt-in. | Kasper Timm Hansen | 2016-12-18 | 1 | -1/+1 | |
| | | | | | | | | | | By using `except` any option provided to `form_with` would become an html attribute unless explicitly opted out. This proved annoying when adding new internal keys in the options hash and seeing them pop up in the html output. Prevent this by inverting the `except` to `slice` out the keys we want to allow becoming html attributes, like id and class. |