I hereby claim:
- I am eduardomoroni on github.
- I am eduardomoroni (https://keybase.io/eduardomoroni) on keybase.
- I have a public key ASDU9f7Zyv4E0DvqnIx9ZhAWr-AohBTl6aFJtqmzblOq_Ao
To claim this, I am signing this object:
| install: | |
| - nvm install && nvm use | |
| - npm install -g "npm@$(jq -r '.engines.npm' package.json)" | |
| - npm ci | |
| matrix: | |
| include: | |
| - os: linux | |
| language: android | |
| jdk: oraclejdk8 | |
| android: |
| #import <UIKit/UIKit.h> | |
| #import <XCTest/XCTest.h> | |
| #import <React/RCTLog.h> | |
| #import <React/RCTRootView.h> | |
| @interface ReactNativeTravisCITests : XCTestCase | |
| @end |
| # This file contains the fastlane.tools configuration | |
| # You can find the documentation at https://docs.fastlane.tools | |
| platform :ios do | |
| desc "Runs all the tests" | |
| lane :test do | |
| # https://docs.fastlane.tools/actions/scan/ | |
| scan( | |
| project: "ios/ReactNativeTravisCI.xcodeproj", | |
| scheme: "ReactNativeTravisCI" |
| # For more information about the Appfile, see: | |
| # https://docs.fastlane.tools/advanced/#appfile | |
| app_identifier("org.reactjs.native.example.ReactNativeTravisCI") |
| os: linux | |
| language: android | |
| jdk: oraclejdk8 | |
| android: | |
| components: | |
| - build-tools-23.0.1 | |
| - android-23 | |
| before_install: | |
| - yes | sdkmanager "platforms;android-23" | |
| - yes | sdkmanager "build-tools;23.0.1" |
I hereby claim:
To claim this, I am signing this object:
| function memoize(fn) { | |
| var cachedArg; | |
| var cachedResult; | |
| return function(arg) { | |
| if (cachedArg === arg) { | |
| return cachedResult; | |
| } | |
| cachedArg = arg; | |
| cachedResult = fn(arg); | |
| return cachedResult; |
I hereby claim:
To claim this, I am signing this object:
| // compile("commons-net:commons-net:3.5") | |
| // testCompile("org.mockftpserver:MockFtpServer:2.7.1") | |
| import org.apache.commons.net.ftp.FTPClient; | |
| import org.junit.Before; | |
| import org.junit.Rule; | |
| import org.junit.Test; | |
| import org.junit.rules.TemporaryFolder; | |
| import java.io.IOException; |