Method: Mechanize::History#shift
- Defined in:
- lib/mechanize/history.rb
#shift ⇒ Object
56 57 58 59 60 61 62 63 64 65 |
# File 'lib/mechanize/history.rb', line 56 def shift return nil if length == 0 page = self[0] self[0] = nil super remove_from_index(page) page end |