README.md in bubble-wrap-1.1.4 vs README.md in bubble-wrap-1.1.5

- old
+ new

@@ -190,10 +190,12 @@ # true > Device.orientation # :portrait > Device.simulator? # true +> Device.ios_version +# "6.0" > Device.retina? # false > Device.screen.width # 320 > Device.screen.height @@ -370,19 +372,19 @@ ### Gestures Extra methods on `UIView` for working with gesture recognizers. A gesture recognizer can be added using a normal Ruby block, like so: ```ruby - view.whenTapped do + view.when_tapped do UIView.animateWithDuration(1, animations:lambda { # animate # @view.transform = ... }) end ``` -There are similar methods for pinched, rotated, swiped, panned, and pressed (for long presses). All of the methods return the actual recognizer object, so it is possible to set the delegate if more fine-grained control is needed. +There are similar methods for `pinched`, `rotated`, `swiped`, `panned`, and `pressed` (for long presses). All of the methods return the actual recognizer object, so it is possible to set the delegate if more fine-grained control is needed. ### UIViewController A custom method was added to `UIViewController` to return the content frame of a view controller.