| Commit message (Collapse) | Author | Age | Files | Lines |
... | |
| | | | | |
|
| | | | |
| | | | |
| | | | |
| | | | | |
parsing request params.
|
| | | | | |
|
| | | | |
| | | | |
| | | | |
| | | | | |
the same line
|
| | | | | |
|
| | | | |
| | | | |
| | | | |
| | | | | |
This reverts commit 2233f1456f6fb1b92e6c1bded70b89a3302c4306.
|
|\ \ \ \ \
| | | | | |
| | | | | | |
Add missing inflector dependency
|
| | | | | | |
|
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
65843e1acc0c8d285ff79f8c9c49d4d1215440be
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
Skip tests for non-supported isolation levels
|
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
i.e. Oracle database does not support these isolation levels.
`:read_uncommitted` `:repeatable_read`
This commit also works with other databases which do not support
these isolation levels.
|
|/ / / / / / |
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
Skip tests for non-supported isolation levels with Oracle
|
| | | | | | | |
|
|\ \ \ \ \ \ \
| | | | | | | |
| | | | | | | | |
Feature: set the same width and height for image if size attribute is a number
|
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
http://guides.rubyonrails.org/security.html#regular-expressions
|
|/ / / / / / /
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
This will set image's both width and height attributes to
value passed in size option.
|
|\ \ \ \ \ \ \
| |/ / / / / /
|/| / / / / /
| |/ / / / / |
Improve support for minitest's spec DSL
|
| | | | | | |
|
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
Improve how helper tests to resolve the helper class from the test name.
Add tests for helper tests using the minitest spec DSL.
|
| | | | | | |
|
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
Improve how mailer tests to resolve mailers from the test name.
Add tests for mailer tests using the minitest spec DSL.
|
| | | | | | |
|
| | | | | | |
|
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
Allow controller tests using the spec DSL to match strings.
Add test coverage for the register_spec_type calls.
|
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
Add tests for controller tests using the minitest spec DSL.
|
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
AS::TC::ConstantLookup walks the test's name to find the constant it is describing.
This additional lookup logic is needed to better support minitest's spec DSL.
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
remove unused Mime::Type#verify_request?
|
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
Mime::Type.browser_generated_types
|
| | | | | | | |
|
| | | | | | | |
|
|\ \ \ \ \ \ \
| | | | | | | |
| | | | | | | | |
update Security guide with StrongParameters documentation
|
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
StrongParameters [ci skip]
|
| |_|/ / / / /
|/| | | | | | |
|
|\ \ \ \ \ \ \
| | | | | | | |
| | | | | | | | |
Fix collisions with before and after validation callbacks.
|
| | | | | | | | |
|
| | | | | | | | |
|
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
This commit allows a user to do something like:
before_validation :do_stuff, :on => [ :create, :update ]
after_validation :do_more, :on => [ :create, :update ]
|
|\ \ \ \ \ \ \ \
| | | | | | | | |
| | | | | | | | | |
Deletion of an extra blank line in configuration template file
|
| | | | | | | | | |
|
| | | | | | | | | |
|
|/ / / / / / / /
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
This is still an early draft, but let's add it to the index
to have it ready.
|
|\ \ \ \ \ \ \ \
| |/ / / / / / /
|/| | | | | | | |
[ci skip] Update Performance Testing guide.
|
|/ / / / / / /
| | | | | | |
| | | | | | |
| | | | | | | |
- remove Palmist which is no longer available.
- update link to Query Reviewer.
|
|\ \ \ \ \ \ \
| | | | | | | |
| | | | | | | | |
Removed sorting of attribute names in controller generator.
|
| | | | | | | | |
|
|/ / / / / / /
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
I believe when people use generators, they typically order the
parameters on the command line in an order that makes sense
to them. Sorting them in the generated code makes the order
seem more arbitrary to humans, even though it's less arbitrary
to computers. :-)
Example:
rails g scaffold Post title:string content:text
The human chose to put title before content. Sorted
attributes in the generated code work but don't match the
human's intent:
params.require(:posts).permit(:content, :title)
|
|\ \ \ \ \ \ \
| |_|/ / / / /
|/| | | | | | |
Update Debugging Rails Application guide.
|
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
- remove query_stats plugin reference in debugging guide since it is no longer maintained.
- remove exception_logger plugin reference in debugging guide since it is no longer maintained.
- update query_reviewer url to the latest one on github.
|
|/ / / / / / |
|