Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Use frozen string literal in actioncable/ | Kir Shatrov | 2017-07-23 | 1 | -0/+2 |
| | |||||
* | Revert "Merge pull request #29540 from kirs/rubocop-frozen-string" | Matthew Draper | 2017-07-02 | 1 | -1/+0 |
| | | | | | This reverts commit 3420a14590c0e6915d8b6c242887f74adb4120f9, reversing changes made to afb66a5a598ce4ac74ad84b125a5abf046dcf5aa. | ||||
* | Enforce frozen string in Rubocop | Kir Shatrov | 2017-07-01 | 1 | -0/+1 |
| | |||||
* | Allows for other common redis options to be in cable.yml, by default | Marc Ignacio | 2017-06-22 | 1 | -1/+3 |
| | | | | | | | | | | | | | | | | | | - Adds RedisAdapterTest::AlternateConfiguration to account for a relatively common alternative setup, as it’s used as the first example in the [Redis rubygem](https://github.com/redis/redis-rb#getting-started) - Supplies original RedisAdapterTest with more complete redis:// url format by adding a ‘userinfo’ (blank user), so that it resembles the alternate configuration - Supplies original EventedRedisAdapterTest with more complete redis:// url as well - Adds before_script to start redis-server with password as a daemon and with explicit defaults copied from the default redis.conf (Instead of using Travis' default init/upstart scripts for `redis` service) | ||||
* | Use mattr_accessor default: option throughout the project | Genadi Samokovarov | 2017-06-03 | 1 | -1/+1 |
| | |||||
* | Add channel_prefix support to ActionCable redis/evented_redis adapters. | Chad Ingram | 2017-01-17 | 1 | -0/+2 |
| | |||||
* | applies new string literal convention in actioncable/lib | Xavier Noria | 2016-08-06 | 1 | -7/+7 |
| | | | | | The current code base is not uniform. After some discussion, we have chosen to go with double quotes by default. | ||||
* | Support faye-websocket + EventMachine as an option | Matthew Draper | 2016-03-02 | 1 | -4/+5 |
| | |||||
* | Use redis_connector to create redis connections for both subscriptions and ↵ | Pratik Naik | 2016-02-26 | 1 | -2/+6 |
| | | | | broadcasts | ||||
* | Allow for non-standard redis connectors | David Heinemeier Hansson | 2016-02-04 | 1 | -1/+5 |
| | |||||
* | Switch the default redis adapter to a single-stream model | Matthew Draper | 2016-02-01 | 1 | -30/+126 |
| | | | | | | This new adapter does get a little more intimate with the redis-rb gem's implementation than I would like, but it's the least bad of the approaches I've come up with. | ||||
* | Synchronize the lazy setters in Server | Matthew Draper | 2016-01-30 | 1 | -4/+13 |
| | | | | They're all at risk of races on the first requests. | ||||
* | Revert "Revert "Eliminate the EventMachine dependency"" | Matthew Draper | 2016-01-30 | 1 | -0/+16 |
| | |||||
* | Revert "Eliminate the EventMachine dependency" | David Heinemeier Hansson | 2016-01-27 | 1 | -16/+0 |
| | |||||
* | Using a hacked faye-websocket, drop EventMachine | Matthew Draper | 2016-01-24 | 1 | -0/+16 |
| | |||||
* | Allow subscription adapters to be shut down | Matthew Draper | 2016-01-24 | 1 | -0/+5 |
| | |||||
* | Normalize on no arguments for the success callback | Matthew Draper | 2016-01-24 | 1 | -1/+1 |
| | |||||
* | Use the correct reference to the redis connection | Brit Gardner | 2016-01-22 | 1 | -1/+1 |
| | | | | | Fixes #23193 This was throwing `There was an exception - NameError(undefined local variable or method `hi_redis_conn' for #<ActionCable::SubscriptionAdapter::Redis:0x007fb1449e2b70>)` on unsubscribe. | ||||
* | Merge pull request #22950 from maclover7/adapterize-storage-actioncable | Matthew Draper | 2016-01-20 | 1 | -7/+6 |
| | | | | Adapterize storage for ActionCable | ||||
* | Fix code review comments | Jon Moss | 2016-01-18 | 1 | -24/+17 |
| | | | | | | | - adapter -> pubsub (re)rename internally - Change variable names to match method names - Add EventMachine `~> 1.0` as a runtime dependency of ActionCable - Refactor dependency loading for adapters | ||||
* | ActionCable::StorageAdapter ==> ActionCable::SubscriptionAdapter | Jon Moss | 2016-01-18 | 1 | -0/+45 |