| Commit message (Collapse) | Author | Age | Files | Lines |
| |
|
|
|
|
| |
Noting that we don't take feature requests or 'help me' stuff on the Issues tracker should cut down a ton on bad Issues.
|
|
|
|
| |
This reverts commit 5d95f3209fb2d6155ecd76c7692d0ac71a14726c.
|
|
|
|
| |
instead.
|
| |
|
|\
| |
| | |
log 404 status when ActiveRecord::RecordNotFound was raised (#7646)
|
| | |
|
|/ |
|
| |
|
| |
|
| |
|
| |
|
| |
|
|\
| |
| | |
Rename .rb template handler to .ruby to avoid conflicts with mustache classes
|
| |
| |
| |
| | |
classes
|
|\ \
| | |
| | |
| | |
| | | |
insside/register_template_handler-method-refactoring
Allowing pass couple extension to one register_template_handler call
|
|/ / |
|
| | |
|
|\ \
| | |
| | | |
Fix collection= on hm:t join models when unsaved
|
| | |
| | |
| | |
| | |
| | |
| | | |
If assigning to a has_many :through collection against an unsaved
object using the collection=[<array_of_items>] syntax, the join models
were not properly created, previously.
|
|\ \ \
| | | |
| | | | |
Add missing entry in CHANGELOG about change of AD::Session::MemCacheStore
|
| | |/
| |/| |
|
|\ \ \
| | | |
| | | | |
Remove unncessary code.
|
| | | | |
|
|\ \ \ \
| | | | |
| | | | | |
Fix build for Queue.
|
| |/ / / |
|
|\ \ \ \
| |/ / /
|/| | |
| | | |
| | | | |
kennyj/fix_9fa3f102813eeeec440abd75870dfa7b23835665
Fix warning: method redefine. Testcase name are duplicated.
|
|/ / / |
|
| | |
| | |
| | |
| | | |
the queued message wrappers so the queue itself needn't be marshaled (due to queue reference QueuedMessage).
|
|/ /
| |
| |
| | |
ensure shared behavior.
|
|\ \
| | |
| | | |
improve AR/CHANGELOG [ci skip]
|
|/ / |
|
|\ \
| | |
| | | |
Adds migration and type casting support for PostgreSQL Array datatype
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
Having column related schema dumper code in the AbstractAdapter. The
code remains the same, but by placing it in the AbstractAdapter, we can
then overwrite it with Adapter specific methods that will help with
Adapter specific data types.
The goal of moving this code here is to create a new migration key for
PostgreSQL's array type. Since any datatype can be an array, the goal is
to have ':array => true' as a migration option, turning the datatype
into an array. I've implemented this in postgres_ext, the syntax is
shown here: https://github.com/dockyard/postgres_ext#arrays
Adds array migration support
Adds array_test.rb outlining the test cases for array data type
Adds pg_array_parser to Gemfile for testing
Adds pg_array_parser to postgresql_adapter (unused in this commit)
Adds schema dump support for arrays
Adds postgres array type casting support
Updates changelog, adds note for inet and cidr support, which I forgot to add before
Removing debugger, Adds pg_array_parser to JRuby platform
Removes pg_array_parser requirement, creates ArrayParser module used by
PostgreSQLAdapter
|
| | | |
|
|\ \ \
| | | |
| | | |
| | | |
| | | |
| | | | |
Don't preserve SELECT columns on COUNT
Closes #7651
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
The COUNT clause of a finder_sql relationship is being rewritten from
COUNT(*) to COUNT(table_name.*). This does not appear to be valid syntax
in MySQL:
```
mysql> SELECT COUNT( table_name.* ) FROM `table_name`;
ERROR 1064 (42000): You have an error in your SQL syntax; check the
manual that corresponds to your MySQL server version for the right
syntax to use near '* ) FROM `table_name`' at line 1
```
This fixes the bug, as well as adding tests so we don't re-introduce
it in the future.
Fixes #3956.
|
|\ \ \ \
| |_|_|/
|/| | | |
Set up config_accessor with a default value by block
|
|/ / /
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
* ActiveSupport::Configurable should allow config_accessor to take
default value by block, just like cattr_accessor.
class User
include ActiveSupport::Configurable
config_accessor :hair_colors do
[:brown, :black, :blonde, :red]
end
end
User.hair_colors # => [:brown, :black, :blonde, :red]
* remove trailing whitespaces in configurable.rb and its test file.
* Update ActiveSupport CHANGELOG.
|
|\ \ \
| | | |
| | | | |
Don't explain except normal CRUD sql.
|
| | | | |
|
|\| | |
| | | |
| | | | |
Fix find_in_batches with customized primary_key
|
|/ / / |
|
|\ \ \
| | | |
| | | | |
Query for loading index info should be marked as SCHEMA.
|
| | | | |
|
| | | | |
|
|\ \ \ \
| | | | |
| | | | | |
Clarify the documentation on the Rails::Application#call method
|
|/ / / / |
|
| | | |
| | | |
| | | |
| | | | |
This fix the build http://travis-ci.org/#!/rails/rails/builds/2459981
|
|\ \ \ \
| |/ / /
|/| | | |
fix the build
|