Wrap lines at 80 chars, follow-up to #626 [skip ci]

This commit is contained in:
Jon Atack 2015-12-20 22:50:30 +01:00
parent 926e316528
commit 5b2351b655
2 changed files with 8 additions and 3 deletions

View File

@ -46,7 +46,8 @@
* Added `ransack_alias` to allow users to customize the names for long
ransack field names. PR
[#623](https://github.com/activerecord-hackery/ransack/pull/623), commit [e712ff1](https://github.com/activerecord-hackery/ransack/commit/e712ff1).
[#623](https://github.com/activerecord-hackery/ransack/pull/623), commit
[e712ff1](https://github.com/activerecord-hackery/ransack/commit/e712ff1).
*Ray Zane*

View File

@ -346,7 +346,9 @@ symbolized association (`:department_title)`, `:employees_last_name`).
### Ransack Aliases
You can customize the attribute names for your Ransack searches by using a `ransack_alias`. This is particularly useful for long attribute names that are necessary when querying associations or multiple columns.
You can customize the attribute names for your Ransack searches by using a
`ransack_alias`. This is particularly useful for long attribute names that are
necessary when querying associations or multiple columns.
```ruby
class Post < ActiveRecord::Base
@ -357,7 +359,9 @@ class Post < ActiveRecord::Base
end
```
Now, rather than using `:author_first_name_or_author_last_name_cont` in your form, you can simply use `:author_cont`. This serves to produce more expressive query parameters in your URLs.
Now, rather than using `:author_first_name_or_author_last_name_cont` in your
form, you can simply use `:author_cont`. This serves to produce more expressive
query parameters in your URLs.
```erb
<%= search_form_for @q do |f| %>