| Commit message (Collapse) | Author | Age | Files | Lines |
... | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
test_sqlite_add_column_in_transaction_raises_statement_invalid [#1669 state:resolved]
Signed-off-by: Pratik Naik <pratiknaik@gmail.com>
|
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
and Template::EagerPath
|
| | | |\| | |
|
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
Signed-off-by: Pratik Naik <pratiknaik@gmail.com>
|
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
Signed-off-by: Pratik Naik <pratiknaik@gmail.com>
|
| | | | | | |
|
| | | | | | |
|
| | | | | | |
|
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
so that the corresponding erb templates get rendered with the proper binding [#1493 state:resolved]
|
| | | | | | |
|
| | | | | | |
|
| | | |/ /
| | |/| |
| | | | |
| | | | | |
cache key instead of just assuming the its a string [#1299 state:committed]
|
| | | | |
| | | | |
| | | | |
| | | | | |
Signed-off-by: David Heinemeier Hansson <david@loudthinking.com>
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
state:committed]
Signed-off-by: David Heinemeier Hansson <david@loudthinking.com>
|
| | |\ \ \ |
|
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
Signed-off-by: Pratik Naik <pratiknaik@gmail.com>
|
| | |/ / /
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
like scoped_by_user_name(user_name) and scoped_by_user_name_and_password(user_name, password) that will use the scoped method with attributes you supply. [#1648 state:committed]
Signed-off-by: David Heinemeier Hansson <david@loudthinking.com>
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
state:resolved]
Signed-off-by: Pratik Naik <pratiknaik@gmail.com>
|
| | | | | |
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
[#1618 state:resolved]
Signed-off-by: Pratik Naik <pratiknaik@gmail.com>
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
state:resolved]
Signed-off-by: Pratik Naik <pratiknaik@gmail.com>
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
regarding symlinks on Windows.
Signed-off-by: Pratik Naik <pratiknaik@gmail.com>
|
| | | | |
| | | | |
| | | | |
| | | | | |
Signed-off-by: David Heinemeier Hansson <david@loudthinking.com>
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
nil) [#1219 state:committed]
Signed-off-by: David Heinemeier Hansson <david@loudthinking.com>
|
| | | |/
| | |/|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
App with simple respond_to:
def index
respond_to do |format|
format.html
format.xml
format.json
end
end
On JRuby (after complete hotspot warmup) -- 8% improvement:
550 requests per second after this commit
510 requests per second with old method_missing technique
On MRI (8% improvement):
430 requests per second after this commit
400 requests per second with old method_missing technique
|
| | |\ \ |
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
With self referential associations, the scope for the the top level should not affect fetching of associations, for example
when doing
Person.male.find :all, :include => :friends
we should load all of the friends for each male, not just the male friends.
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
state:resolved]
Signed-off-by: Frederick Cheung <frederick.cheung@gmail.com>
|
| | | | |
| | | | |
| | | | |
| | | | | |
Signed-off-by: Frederick Cheung <frederick.cheung@gmail.com>
|
| | | | | |
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
Marshal.dump(Marshal.load(marshaled_hash)) is not guarenteed to be equal to marshaled_hash
because of the lack of ordering of hash
|
| | | | | |
|
| | | | | |
|
| | | | | |
|
| | | | |
| | | | |
| | | | |
| | | | | |
ActionController#render(string) [#1435]
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
=> string. [#1435]
Examples:
# Instead of render(:action => 'other_action')
render('other_action')
Note : Argument must not have any '/'
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
=> string. [#1435]
Examples:
# Instead of render(:template => 'controller/action')
render('controller/action')
Note : Argument must not begin with a '/', but have at least one '/'
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
string. [#1435]
Examples:
# Instead of render(:file => '/Users/lifo/home.html.erb')
render('/Users/lifo/home.html.erb')
Note : Filename must begin with a forward slash ('/')
|
| | | | | |
|
| | | | | |
|
| | |/ / |
|
| | | | |
|
| |\ \ \ |
|
| |\ \ \ \
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
Conflicts:
activerecord/lib/active_record/fixtures.rb
activerecord/test/cases/defaults_test.rb
|
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
- Fixed compatibility with the old 'postgres' driver which doesn't support
transaction state introspection.
- Added unit tests for it.
|
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
documentation for nested transactions.
|
| | | | | | |
|
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
transaction_test.
|
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
activity ourselves"
This commit conflicts with savepoint support.
This reverts commit 045713ee240fff815edb5962b25d668512649478.
Conflicts:
activerecord/lib/active_record/connection_adapters/postgresql_adapter.rb
|
| | | | | | |
|