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
| module Fastlane | |
| module Actions | |
| class AppiumAction < Action | |
| INVOKE_TIMEOUT = 30 | |
| APPIUM_PATH_HOMEBREW = '/usr/local/bin/appium' | |
| APPIUM_APP_PATH = '/Applications/Appium.app' | |
| APPIUM_APP_BUNDLE_PATH = 'Contents/Resources/node_modules/.bin/appium' | |
| def self.run(params) | |
| Actions.verify_gem!('rspec') |
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
| package main | |
| import "sync" | |
| // deferはreturnの後だよ | |
| func A() string { | |
| str := "A" | |
| defer func() { | |
| str = "B" | |
| }() |
OlderNewer