Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | | | Merge pull request #24057 from javan/actioncable-return-subscription | Jeremy Daer | 2016-03-04 | 1 | -3/+4 | |
|\ \ \ | | | | | | | | | Action Cable: Return subscription object(s) when updating the collection | |||||
| * | | | Return subscription object(s) when updating the collection | Javan Makhmali | 2016-03-04 | 1 | -3/+4 | |
|/ / / | ||||||
* | | | Merge pull request #24056 from lifo/cable-create-subscriptions-fix | Jeremy Daer | 2016-03-04 | 1 | -0/+2 | |
|\ \ \ | | | | | | | | | Fix ActionCable.Subscriptions#create | |||||
| * | | | Make sure ActionCable.Subscriptions#create always returns the newly created ↵ | Pratik Naik | 2016-03-04 | 1 | -0/+2 | |
|/ / / | | | | | | | | | | subscription object | |||||
* | | | Merge pull request #24052 from ↵ | Akira Matsuda | 2016-03-04 | 3 | -1/+7 | |
|\ \ \ | | | | | | | | | | | | | | | | | bquorning/partial-rendering-with-collection-and-dot-in-partial-name Fix partial rendering with dot in filename | |||||
| * | | | Fix partial rendering with dot in filename | Benjamin Quorning | 2016-03-04 | 3 | -1/+7 | |
|/ / / | | | | | | | | | | | | | | | | | | | | | | When rendering a collection with a partial whose filename contains a dot, e.g. "customer.mobile", we would set a `locals[:'customer.mobile']` variable instead of, as in earlier versions of Rails, `locals[:customer]`. This bug was introduced in da9038eaa5d19c77c734a044c6b35d7bfac01104. | |||||
* | | | Merge pull request #24049 from mohitnatoo/railties-run-manually | प्रथमेश Sonpatki | 2016-03-04 | 1 | -2/+1 | |
|\ \ \ | |/ / |/| | | Correcting sentence in description of application.rb in ralities | |||||
| * | | [ci skip] correcting sentence in description of application.rb | Mohit Natoo | 2016-03-04 | 1 | -2/+1 | |
|/ / | | | | | | | Adding period in the end. | |||||
* | | Merge pull request #24045 from Sarah-Alsinan/patch-4 | Kasper Timm Hansen | 2016-03-04 | 1 | -1/+1 | |
|\ \ | | | | | | | Update base.rb [ci skip] | |||||
| * | | Update base.rb | Sarah A | 2016-03-03 | 1 | -1/+1 | |
|/ / | ||||||
* | | Merge pull request #24042 from Sarah-Alsinan/patch-3 | Arun Agrawal | 2016-03-04 | 1 | -1/+1 | |
|\ \ | | | | | | | Update Gemfile | |||||
| * | | Update Gemfile | Sarah A | 2016-03-03 | 1 | -1/+1 | |
|/ / | | | | | Changes "as has to be loaded" to "as it has to be loaded" | |||||
* | | Merge pull request #24039 from javan/actioncable-cleanup | Jeremy Daer | 2016-03-03 | 6 | -22/+24 | |
|\ \ | | | | | | | Action Cable: client side 💅 | |||||
| * | | Store reference to Subscriptions instance for convenience | Javan Makhmali | 2016-03-03 | 1 | -5/+6 | |
| | | | ||||||
| * | | Implicity add Subscription instance to subscriptions collection | Javan Makhmali | 2016-03-03 | 2 | -13/+12 | |
| | | | ||||||
| * | | Share default mount path with client side .js | Javan Makhmali | 2016-03-03 | 3 | -3/+4 | |
| | | | ||||||
| * | | Fix location of default mount path value | Javan Makhmali | 2016-03-03 | 1 | -2/+3 | |
|/ / | | | | | | | #getConfig was implmented as general utility for reading action-cable-* meta tags (hence the `name` argument). Introduced in 8b69f1eeba753c38364fb88136b2503480f2de1d. | |||||
* | | Merge pull request #24038 from javan/actioncable-lazy-connection-monitor | Jeremy Daer | 2016-03-03 | 3 | -41/+52 | |
|\ \ | | | | | | | Action Cable: Defer starting connection monitor until a connection is opened | |||||
| * | | Defer starting connection monitor until a connection is opened | Javan Makhmali | 2016-03-03 | 3 | -41/+52 | |
|/ / | ||||||
* | | Merge pull request #24021 from y-yagi/add_scaffold_stylesheet_to_guide | Jon Moss | 2016-03-03 | 1 | -0/+1 | |
|\ \ | | | | | | | add `scaffold_stylesheet` method to guide [ci skip] | |||||
| * | | add `scaffold_stylesheet` method to guide [ci skip] | yuuji.yaginuma | 2016-03-04 | 1 | -0/+1 | |
| | | | | | | | | | | | | `scaffold_stylesheet` was added in #20479. | |||||
* | | | Merge pull request #24036 from javan/actioncable-lazy-connect | Jeremy Daer | 2016-03-03 | 3 | -9/+10 | |
|\ \ \ | | | | | | | | | Action Cable: Establish WebSocket connection when first subscription is created | |||||
| * | | | Establish WebSocket connection when first subscription is created. Fixes #24026 | Javan Makhmali | 2016-03-03 | 3 | -9/+10 | |
|/ / / | | | | | | | | | | | | | * More intention revealing than connecting on the first call to Connection#send * Fixes that calls to Connection#send would attempt to open a connection when the WebSocket's state is CONNECTING | |||||
* | | | [ci skip] Fix constrain_to documentation. | Kasper Timm Hansen | 2016-03-03 | 1 | -1/+1 | |
| | | | | | | | | | | | | | | | Forgot to update the documentation on the line just above the one I was changing in 4933132. Well done, Kasper :+1: | |||||
* | | | Rename constrain_to to exclude. | Kasper Timm Hansen | 2016-03-03 | 2 | -7/+8 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | `ActionDispatch::SSL` redirects all HTTP requests to HTTPS, not just some. The `constrain_to` option inverts this, so it sounds like the middleware only handles a few requests, rather than the majority with a few routes to opt out of the redirect. Renaming to `exclude` matches this intent more closely. | |||||
* | | | [ci skip] Make collection caching explicit in guides. | Kasper Timm Hansen | 2016-03-03 | 1 | -15/+6 | |
| | | | | | | | | | | | | | | | | | | Since f6e4814 was written we've made collection caching explicit. Thus the documentation is outdated and needs a rewrite. | |||||
* | | | Merge pull request #23992 from matthewd/em-option | Matthew Draper | 2016-03-04 | 31 | -52/+229 | |
|\ \ \ | | | | | | | | | Support faye-websocket + EventMachine as an option | |||||
| * | | | Support faye-websocket + EventMachine as an option | Matthew Draper | 2016-03-02 | 31 | -52/+229 | |
| | | | | ||||||
* | | | | don't treat all associations with extensions as instance dependent. | Yves Senn | 2016-03-03 | 4 | -1/+33 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Closes #23934. This is a forward port of ac832a43b4d026dbad28fed196d2de69ec9928ac Previously the scope of all associations with extensions were wrapped in an instance dependent proc. This made it impossible to preload such associations. | |||||
* | | | | Merge pull request #24027 from mechanicles/a-to-an | Xavier Noria | 2016-03-03 | 7 | -12/+12 | |
|\ \ \ \ | | | | | | | | | | | Change 'a HTTP' to 'an HTTP' [ci skip] | |||||
| * | | | | Change 'a HTTP' to 'an HTTP' [ci skip] | Santosh Wadghule | 2016-03-03 | 7 | -12/+12 | |
| | | | | | ||||||
* | | | | | Merge pull request #24024 from ↵ | Rafael França | 2016-03-03 | 1 | -2/+8 | |
|\ \ \ \ \ | |/ / / / |/| | | | | | | | | | | | | | | jonatack/niceify-dynamic-routes-deprecation-messages Niceify the dynamic routes deprecation messages | |||||
| * | | | | Niceify the dynamic routes deprecation messages | Jon Atack | 2016-03-03 | 1 | -2/+8 | |
| | |/ / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Follow-up to #23980. - Fix grammar: "be remove" -> "be removed". - Wrap lines at 80 chars. Lurvely ;-) | |||||
* | | | | Merge pull request #24025 from mechanicles/a-to-an | Jon Moss | 2016-03-03 | 1 | -1/+1 | |
|\ \ \ \ | | | | | | | | | | | Change 'a HTML' to 'an HTML' [ci skip] | |||||
| * | | | | Change 'a HTML' to 'an HTML' [ci skip] | Santosh Wadghule | 2016-03-03 | 1 | -1/+1 | |
| |/ / / | ||||||
* | | | | Merge pull request #24023 from danielrhodes/bug/ac-connection-monitor-disconnect | Matthew Draper | 2016-03-04 | 2 | -0/+2 | |
|\ \ \ \ | | | | | | | | | | | ConnectionMonitor is once again notified of disconnect | |||||
| * | | | | ConnectionMonitor is once again notified of disconnect | Daniel Rhodes | 2016-03-03 | 2 | -0/+2 | |
| |/ / / | ||||||
* / / / | Prevent nested ExecutionWrapper calls even when using run! directly | Matthew Draper | 2016-03-04 | 2 | -9/+16 | |
|/ / / | ||||||
* | | | Merge pull request #24015 from meinac/active_record_migrations_doc_changes | Rafael França | 2016-03-02 | 1 | -1/+1 | |
|\ \ \ | | | | | | | | | Changed behaviour of timestamps helper by create_table migration generator [ci skip] | |||||
| * | | | Changed behaviour of timestamps helper by create_table migration generator ↵ | Mehmet Emin İNAÇ | 2016-03-03 | 1 | -1/+1 | |
|/ / / | | | | | | | | | | [ci skip] | |||||
* | | | Merge pull request #24011 from gsamokovarov/ar-persistence-api-docs-fix | Rafael França | 2016-03-02 | 1 | -1/+1 | |
|\ \ \ | | | | | | | | | Fix a small template misrender in ActiveRecord::Persistence | |||||
| * | | | Fix a small template misrender in ActiveRecord::Persistence | Genadi Samokovarov | 2016-03-02 | 1 | -1/+1 | |
|/ / / | | | | | | | | | | | | | | | | | | | | | | See the end of [this] page. [ci skip] [this]: http://edgeapi.rubyonrails.org/classes/ActiveRecord/Persistence/ClassMethods.html#method-i-create | |||||
* | | | Merge pull request #23086 from kamipo/deprecate_insert_update_delete_sql | Rafael França | 2016-03-02 | 5 | -60/+17 | |
|\ \ \ | | | | | | | | | Deprecate `{insert|update|delete}_sql` in `DatabaseStatements` | |||||
| * | | | Deprecate `{insert|update|delete}_sql` in `DatabaseStatements` | Ryuta Kamizono | 2016-03-02 | 5 | -60/+17 | |
| | | | | | | | | | | | | | | | | | | | | Originally, `{insert|update|delete}_sql` is protected methods. We can use the `{insert|update|delete}` public methods instead. | |||||
* | | | | Do not run app.executor callbacks in integration tests | Jorge Bejar and Santiago Pastorino | 2016-03-02 | 1 | -11/+2 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This reverts changes made to integration tests in PR #23807. The issue happens when using capybara with a driver that needs to start a server in a separate thread like (poltergeist, selenium, etc). Both threads the capybara server one and the test thread end running syncronize over the interlock. | |||||
* | | | | Fix CHANGELOG spacing [ci skip] | Jeremy Daer | 2016-03-02 | 4 | -20/+20 | |
| | | | | ||||||
* | | | | Add test to make sure the sprockets cache is not shared per environment | Rafael Mendonça França | 2016-03-02 | 2 | -2/+22 | |
| | | | | ||||||
* | | | | Merge pull request #24009 from yahonda/bundle_exec_activerecord_unittest | Rafael França | 2016-03-02 | 1 | -3/+3 | |
|\ \ \ \ | | | | | | | | | | | [ci skip] Add `bundle exec` for ActiveRecord unit tests | |||||
| * | | | | [ci skip] Add `bundle exec` for ActiveRecord unit tests | Yasuo Honda | 2016-03-02 | 1 | -3/+3 | |
| | | | | | ||||||
* | | | | | Merge pull request #24001 from 5t111111/fix-gsub-cookies_serializer | Rafael França | 2016-03-02 | 2 | -2/+3 | |
|\ \ \ \ \ | |/ / / / |/| | | | | Fix description in cookies_serializer.rb being corrupted by gsub when updating |