Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | use a request object in the session middleware | Aaron Patterson | 2015-08-22 | 1 | -19/+21 |
| | | | | | This commit allows us to use one request object rather than allocating multiple request objects to deal with the session. | ||||
* | point at rack master | Aaron Patterson | 2015-08-20 | 1 | -1/+1 |
| | |||||
* | Cleaning and adding tests for Session | Attila Domokos | 2014-03-19 | 1 | -7/+34 |
| | | | Adding tests for Session `destroy`, `update` and `delete` methods. No changes for code under test. | ||||
* | Make ActionDispatch::Request::Session#fetch behave like Hash#fetch | Trent Ogren | 2013-12-11 | 1 | -3/+2 |
| | | | | | | Session#fetch was mutating the session when given a default argument and/or a block. Since Session duck-types as a Hash, it should behave like one in these cases. | ||||
* | session#fetch doesn't behave exactly like Hash#fetch. | Damien Mathieu | 2013-10-30 | 1 | -1/+5 |
| | | | | | | | | | Mention it in the changelog and add a test checking for regressions. Hash#fetch isn't adding the defaultly returned value. However, in the session, saving it is the behavior we should expect. See discussion in #12692 | ||||
* | add the fetch method to sessions | Damien Mathieu | 2013-10-29 | 1 | -0/+13 |
| | |||||
* | Alias refute methods to assert_not and perfer assert_not on tests | Rafael Mendonça França | 2012-12-31 | 1 | -1/+1 |
| | |||||
* | Add test for clear in ActionDispatch::Request::Session | Andreas Loupasakis | 2012-09-08 | 1 | -0/+9 |
| | |||||
* | Added ActionDispatch::Request::Session#keys and ↵ | Philip Arndt | 2012-05-23 | 1 | -0/+16 |
| | | | | ActionDispatch::Request::Session#values | ||||
* | testing session store behavior | Aaron Patterson | 2012-05-02 | 1 | -0/+48 |