SCREENSHOT_PATH=/tmp/foo/ calabash-android run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import UIKit | |
class InnerShadowView: UIView { | |
lazy var innerShadowLayer: CAShapeLayer = { | |
let shadowLayer = CAShapeLayer() | |
shadowLayer.shadowColor = UIColor.black.cgColor | |
shadowLayer.shadowOffset = CGSize(width: 0.0, height: 0.0) | |
shadowLayer.shadowOpacity = 0.1 | |
shadowLayer.shadowRadius = 14 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Generate .ruby-version and .ruby-gemset | |
rvm --ruby-version use ruby-2.1.3@my_gemset | |
Upgrade RVM | |
rvm get stable | |
Delete gemset | |
rvm gemset delete ruby-2.1.3@my_gemset |