Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | [docs] fix ActionDispatch documentation | Hrvoje Šimić | 2017-03-13 | 1 | -1/+0 |
| | |||||
* | Add more rubocop rules about whitespaces | Rafael Mendonça França | 2016-10-29 | 2 | -3/+3 |
| | |||||
* | applies new string literal convention in actionpack/lib | Xavier Noria | 2016-08-06 | 3 | -18/+18 |
| | | | | | The current code base is not uniform. After some discussion, we have chosen to go with double quotes by default. | ||||
* | Remove some comments about Ruby 1.9 behaviors | Rafael Mendonça França | 2015-01-04 | 1 | -1/+1 |
| | |||||
* | Replace Array#shuffle.first with Array#sample | Erik Michaels-Ober | 2014-10-13 | 1 | -2/+2 |
| | |||||
* | push move_string in to `move` | Aaron Patterson | 2014-04-01 | 1 | -14/+12 |
| | |||||
* | combine move_regexp and move_string so we only loop over states once | Aaron Patterson | 2014-04-01 | 1 | -9/+6 |
| | |||||
* | do not create memo objects since we'll just throw them away | Aaron Patterson | 2014-04-01 | 1 | -7/+10 |
| | |||||
* | only ask if `t` is empty once. | Aaron Patterson | 2014-04-01 | 1 | -4/+1 |
| | |||||
* | Replace map.flatten with flat_map in actionpack | Erik Michaels-Ober | 2014-03-03 | 3 | -8/+8 |
| | |||||
* | Replace map.flatten(1) with flat_map | Erik Michaels-Ober | 2014-02-28 | 1 | -3/+3 |
| | |||||
* | Revert "Merge pull request #12990 from vipulnsward/remove_visualizer_param" | Rafael Mendonça França | 2013-11-21 | 1 | -1/+1 |
| | | | | | | | | | | | This reverts commit 5a19346d2855ecb1c791cdef3af92589566d00db, reversing changes made to d82588ee4756b03025813b3997f4db171ee0fcdc. This argument is being used in the view https://github.com/rails/rails/blob/5a19346d2855ecb1c791cdef3af92589566d00db/actionpack/lib/action_dispatch/journey/visualizer/index.html.erb#L4 It is being set using the binding https://github.com/rails/rails/blob/5a19346d2855ecb1c791cdef3af92589566d00db/actionpack/lib/action_dispatch/journey/gtg/transition_table.rb#L108 | ||||
* | Remove unused param `title`to `TransitionTable#visualizer` | Vipul A M | 2013-11-22 | 1 | -1/+1 |
| | |||||
* | Eliminate `JSON.{parse,load,generate,dump}` and `def to_json` | Godfrey Chan | 2013-11-05 | 1 | -5/+3 |
| | | | | | | | | | | | | | | | JSON.{dump,generate} offered by the JSON gem is not compatiable with Rails at the moment and can cause a lot of subtle bugs when passed certain data structures. This changed all direct usage of the JSON gem in internal Rails code to always go through AS::JSON.{decode,encode}. We also shouldn't be implementing `to_json` most of the time, and these occurances are replaced with an equivilent `as_json` implementation to avoid problems down the road. See [1] for all the juicy details. [1]: intridea/multi_json#138 (comment) | ||||
* | Make GTG::TransTable thread safe. | thedarkone | 2013-09-28 | 1 | -12/+23 |
| | | | | From now on only the `[]=` method is allowed to modify the internal states hashes. | ||||
* | update AD::Journey to follow Rails coding conventions | Francesco Rodriguez | 2012-12-20 | 3 | -70/+72 |
| | |||||
* | :nodoc: Journey because is not part of the public API [ci skip] | Francesco Rodriguez | 2012-12-19 | 3 | -11/+11 |
| | |||||
* | Integrate Journey into Action Dispatch | Andrew White | 2012-12-19 | 3 | -0/+360 |
Move the Journey code underneath the ActionDispatch namespace so that we don't pollute the global namespace with names that may be used for models. Fixes rails/journey#49. |