Skip to content
This repository was archived by the owner on Aug 1, 2023. It is now read-only.

Commit f57b6d3

Browse files
committed
Fastlane
1 parent 6d19a71 commit f57b6d3

File tree

11 files changed

+285
-124
lines changed

11 files changed

+285
-124
lines changed

.gitignore

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,8 @@ xcuserdata
2323
*.xcuserstate
2424
*.orig
2525
venv/
26+
.bundle
27+
vendor
2628

2729
## Obj-C/Swift specific
2830
*.hmap
@@ -39,3 +41,11 @@ docs/
3941

4042
## CocoaPods
4143
Pods/
44+
Carthage/
45+
46+
## Fastlane
47+
fastlane/report.xml
48+
fastlane/Preview.html
49+
fastlane/screenshots
50+
fastlane/README.md
51+
fastlane/test_output

.gitmodules

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
[submodule "fastlane/actions/codecov"]
2+
path = fastlane/actions/codecov
3+
url = https://gist.github.com/04126b3051f6cd6aebe041bb1dfe14e9.git

.travis.yml

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -14,15 +14,9 @@ before_install:
1414
install:
1515
- if [[ ! $(which pip) ]]; then easy_install --user pip && export PATH=/Users/travis/Library/Python/2.7/bin:${PATH}; fi;
1616
- pip install -r requirements.txt
17-
- echo $(which wstest)
18-
- pushd Example; pod install; popd
17+
- bundle install
1918
# - if [[ ! $(which xcpretty) ]]; then gem install xcpretty --user-install; fi;
2019

2120
script:
22-
- xcodebuild -workspace Example/RxWebSocket.xcworkspace -scheme RxWebSocket-Example -destination 'platform=iOS Simulator,name=iPhone 7,OS=10.2' build
2321
- wstest -m echoserver -w ws://127.0.0.1:9000 &
24-
- xcodebuild -workspace Example/RxWebSocket.xcworkspace -scheme RxWebSocket-Example -destination 'platform=iOS Simulator,name=iPhone 7,OS=10.2' test
25-
- pod lib lint --no-clean --quick
26-
27-
after_success:
28-
- bash <(curl -s https://codecov.io/bash) -J 'RxWebSocket'
22+
- bundle exec fastlane ci

Cartfile

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,2 @@
11
github "daltoniam/Starscream" ~> 3.0
22
github "ReactiveX/RxSwift" ~> 4.0
3-
github "ReactiveX/RxCocoa" ~> 4.0

Cartfile.resolved

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
github "ReactiveX/RxSwift" "4.0.0"
2+
github "daltoniam/Starscream" "3.0.2"
3+
github "daltoniam/common-crypto-spm" "1.1.0"
4+
github "daltoniam/zlib-spm" "1.1.0"

Example/RxWebSocket.xcodeproj/project.pbxproj

Lines changed: 9 additions & 115 deletions
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,7 @@
1313
607FACDD1AFB9204008FA782 /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 607FACDC1AFB9204008FA782 /* Images.xcassets */; };
1414
607FACE01AFB9204008FA782 /* LaunchScreen.xib in Resources */ = {isa = PBXBuildFile; fileRef = 607FACDE1AFB9204008FA782 /* LaunchScreen.xib */; };
1515
607FACEC1AFB9204008FA782 /* Tests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 607FACEB1AFB9204008FA782 /* Tests.swift */; };
16-
96E3630555BF5C6B9B407DD5 /* Pods_RxWebSocket_Tests.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 709422A2636017DD399E9D3C /* Pods_RxWebSocket_Tests.framework */; };
17-
EF0B1B74B44118C54DF67229 /* Pods_RxWebSocket_Example.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1FDAB2D21F5BE19B1DABEB86 /* Pods_RxWebSocket_Example.framework */; };
18-
F27CA9C81C7623C4009CFFF1 /* .travis.yml in Resources */ = {isa = PBXBuildFile; fileRef = F27CA9C71C7623C4009CFFF1 /* .travis.yml */; };
19-
F27CA9CE1C763CF5009CFFF1 /* CHANGELOG.md in Sources */ = {isa = PBXBuildFile; fileRef = F27CA9CD1C763CF5009CFFF1 /* CHANGELOG.md */; };
20-
F2ECCF9C1EA01F330097B199 /* codecov.yml in Resources */ = {isa = PBXBuildFile; fileRef = F2ECCF9B1EA01F330097B199 /* codecov.yml */; };
16+
8469D15142C283B8DB180F08 /* Pods_RxWebSocket_Example.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 86C6F21453B2693F211BA9FE /* Pods_RxWebSocket_Example.framework */; };
2117
/* End PBXBuildFile section */
2218

2319
/* Begin PBXContainerItemProxy section */
@@ -44,15 +40,12 @@
4440
607FACE51AFB9204008FA782 /* RxWebSocket_Tests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = RxWebSocket_Tests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
4541
607FACEA1AFB9204008FA782 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
4642
607FACEB1AFB9204008FA782 /* Tests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Tests.swift; sourceTree = "<group>"; };
47-
709422A2636017DD399E9D3C /* Pods_RxWebSocket_Tests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_RxWebSocket_Tests.framework; sourceTree = BUILT_PRODUCTS_DIR; };
48-
7496BB67D7F9D4279CDA9BFD /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; name = LICENSE; path = ../LICENSE; sourceTree = "<group>"; };
49-
8788324106E787C691412931 /* Pods-RxWebSocket_Example.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-RxWebSocket_Example.release.xcconfig"; path = "Pods/Target Support Files/Pods-RxWebSocket_Example/Pods-RxWebSocket_Example.release.xcconfig"; sourceTree = "<group>"; };
50-
A8AFD6F6C6BA2CD8E20794E7 /* Pods-RxWebSocket_Tests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-RxWebSocket_Tests.release.xcconfig"; path = "Pods/Target Support Files/Pods-RxWebSocket_Tests/Pods-RxWebSocket_Tests.release.xcconfig"; sourceTree = "<group>"; };
51-
B256775BC6FE4B02B040F943 /* Pods-RxWebSocket_Tests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-RxWebSocket_Tests.debug.xcconfig"; path = "Pods/Target Support Files/Pods-RxWebSocket_Tests/Pods-RxWebSocket_Tests.debug.xcconfig"; sourceTree = "<group>"; };
52-
BD6500E316122FDC2DA47095 /* Pods-RxWebSocket_Example.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-RxWebSocket_Example.debug.xcconfig"; path = "Pods/Target Support Files/Pods-RxWebSocket_Example/Pods-RxWebSocket_Example.debug.xcconfig"; sourceTree = "<group>"; };
53-
F27CA9C71C7623C4009CFFF1 /* .travis.yml */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; name = .travis.yml; path = ../.travis.yml; sourceTree = "<group>"; };
54-
F27CA9CD1C763CF5009CFFF1 /* CHANGELOG.md */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = net.daringfireball.markdown; name = CHANGELOG.md; path = ../CHANGELOG.md; sourceTree = "<group>"; };
55-
F2ECCF9B1EA01F330097B199 /* codecov.yml */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; name = codecov.yml; path = ../codecov.yml; sourceTree = "<group>"; };
43+
6F1156B3BB162DE224C17C2F /* Pods_RxWebSocket_Tests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_RxWebSocket_Tests.framework; sourceTree = BUILT_PRODUCTS_DIR; };
44+
86C6F21453B2693F211BA9FE /* Pods_RxWebSocket_Example.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_RxWebSocket_Example.framework; sourceTree = BUILT_PRODUCTS_DIR; };
45+
8876F53E294401E01FBABD5B /* Pods-RxWebSocket_Example.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-RxWebSocket_Example.release.xcconfig"; path = "Pods/Target Support Files/Pods-RxWebSocket_Example/Pods-RxWebSocket_Example.release.xcconfig"; sourceTree = "<group>"; };
46+
C45BC9DBD6891F1B4DACDCCD /* Pods-RxWebSocket_Tests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-RxWebSocket_Tests.release.xcconfig"; path = "Pods/Target Support Files/Pods-RxWebSocket_Tests/Pods-RxWebSocket_Tests.release.xcconfig"; sourceTree = "<group>"; };
47+
F289E1801FAD084000F09F54 /* RxSwift.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = RxSwift.framework; path = Carthage/Build/iOS/RxSwift.framework; sourceTree = "<group>"; };
48+
F289E1811FAD084000F09F54 /* RxCocoa.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = RxCocoa.framework; path = Carthage/Build/iOS/RxCocoa.framework; sourceTree = "<group>"; };
5649
/* End PBXFileReference section */
5750

5851
/* Begin PBXFrameworksBuildPhase section */
@@ -159,15 +152,6 @@
159152
name = Pods;
160153
sourceTree = "<group>";
161154
};
162-
E6D3294B247AA461F67BD810 /* Frameworks */ = {
163-
isa = PBXGroup;
164-
children = (
165-
1FDAB2D21F5BE19B1DABEB86 /* Pods_RxWebSocket_Example.framework */,
166-
709422A2636017DD399E9D3C /* Pods_RxWebSocket_Tests.framework */,
167-
);
168-
name = Frameworks;
169-
sourceTree = "<group>";
170-
};
171155
/* End PBXGroup section */
172156

173157
/* Begin PBXNativeTarget section */
@@ -535,6 +519,7 @@
535519
isa = XCBuildConfiguration;
536520
baseConfigurationReference = BD6500E316122FDC2DA47095 /* Pods-RxWebSocket_Example.debug.xcconfig */;
537521
buildSettings = {
522+
ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES;
538523
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
539524
INFOPLIST_FILE = RxWebSocket/Info.plist;
540525
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
@@ -550,6 +535,7 @@
550535
isa = XCBuildConfiguration;
551536
baseConfigurationReference = 8788324106E787C691412931 /* Pods-RxWebSocket_Example.release.xcconfig */;
552537
buildSettings = {
538+
ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES;
553539
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
554540
INFOPLIST_FILE = RxWebSocket/Info.plist;
555541
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
@@ -597,98 +583,6 @@
597583
};
598584
name = Release;
599585
};
600-
F289E17A1FAD012400F09F54 /* Debug */ = {
601-
isa = XCBuildConfiguration;
602-
buildSettings = {
603-
CLANG_ANALYZER_NONNULL = YES;
604-
CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
605-
CLANG_CXX_LANGUAGE_STANDARD = "gnu++14";
606-
CLANG_ENABLE_MODULES = YES;
607-
CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
608-
CLANG_WARN_COMMA = YES;
609-
CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
610-
CLANG_WARN_INFINITE_RECURSION = YES;
611-
CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
612-
CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
613-
CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
614-
CLANG_WARN_STRICT_PROTOTYPES = YES;
615-
CLANG_WARN_SUSPICIOUS_MOVE = YES;
616-
CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
617-
CODE_SIGN_IDENTITY = "iPhone Developer";
618-
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "";
619-
CODE_SIGN_STYLE = Automatic;
620-
CURRENT_PROJECT_VERSION = 1;
621-
DEBUG_INFORMATION_FORMAT = dwarf;
622-
DEFINES_MODULE = YES;
623-
DYLIB_COMPATIBILITY_VERSION = 1;
624-
DYLIB_CURRENT_VERSION = 1;
625-
DYLIB_INSTALL_NAME_BASE = "@rpath";
626-
FRAMEWORK_SEARCH_PATHS = (
627-
"$(inherited)",
628-
"$(PROJECT_DIR)/Carthage/Build/iOS",
629-
);
630-
GCC_C_LANGUAGE_STANDARD = gnu11;
631-
INFOPLIST_FILE = RxWebSocket/Info.plist;
632-
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
633-
IPHONEOS_DEPLOYMENT_TARGET = 8.0;
634-
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
635-
PRODUCT_BUNDLE_IDENTIFIER = com.flaviocaetano.RxWebSocket;
636-
PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)";
637-
SKIP_INSTALL = YES;
638-
SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG;
639-
SWIFT_OPTIMIZATION_LEVEL = "-Onone";
640-
SWIFT_VERSION = 4.0;
641-
TARGETED_DEVICE_FAMILY = "1,2";
642-
VERSIONING_SYSTEM = "apple-generic";
643-
VERSION_INFO_PREFIX = "";
644-
};
645-
name = Debug;
646-
};
647-
F289E17B1FAD012400F09F54 /* Release */ = {
648-
isa = XCBuildConfiguration;
649-
buildSettings = {
650-
CLANG_ANALYZER_NONNULL = YES;
651-
CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
652-
CLANG_CXX_LANGUAGE_STANDARD = "gnu++14";
653-
CLANG_ENABLE_MODULES = YES;
654-
CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
655-
CLANG_WARN_COMMA = YES;
656-
CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
657-
CLANG_WARN_INFINITE_RECURSION = YES;
658-
CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
659-
CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
660-
CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
661-
CLANG_WARN_STRICT_PROTOTYPES = YES;
662-
CLANG_WARN_SUSPICIOUS_MOVE = YES;
663-
CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
664-
CODE_SIGN_IDENTITY = "iPhone Developer";
665-
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "";
666-
CODE_SIGN_STYLE = Automatic;
667-
CURRENT_PROJECT_VERSION = 1;
668-
DEFINES_MODULE = YES;
669-
DYLIB_COMPATIBILITY_VERSION = 1;
670-
DYLIB_CURRENT_VERSION = 1;
671-
DYLIB_INSTALL_NAME_BASE = "@rpath";
672-
FRAMEWORK_SEARCH_PATHS = (
673-
"$(inherited)",
674-
"$(PROJECT_DIR)/Carthage/Build/iOS",
675-
);
676-
GCC_C_LANGUAGE_STANDARD = gnu11;
677-
INFOPLIST_FILE = RxWebSocket/Info.plist;
678-
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
679-
IPHONEOS_DEPLOYMENT_TARGET = 8.0;
680-
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
681-
PRODUCT_BUNDLE_IDENTIFIER = com.flaviocaetano.RxWebSocket;
682-
PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)";
683-
SKIP_INSTALL = YES;
684-
SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule";
685-
SWIFT_VERSION = 4.0;
686-
TARGETED_DEVICE_FAMILY = "1,2";
687-
VERSIONING_SYSTEM = "apple-generic";
688-
VERSION_INFO_PREFIX = "";
689-
};
690-
name = Release;
691-
};
692586
/* End XCBuildConfiguration section */
693587

694588
/* Begin XCConfigurationList section */

Gemfile

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
source "https://rubygems.org"
2+
3+
gem 'fastlane', '~> 2.62.1'
4+
gem 'cocoapods', '~> 1.3.1'

Gemfile.lock

Lines changed: 118 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@ GEM
77
minitest (~> 5.1)
88
thread_safe (~> 0.3, >= 0.3.4)
99
tzinfo (~> 1.1)
10+
addressable (2.5.2)
11+
public_suffix (>= 2.0.2, < 4.0)
12+
babosa (1.0.2)
1013
claide (1.0.2)
1114
cocoapods (1.3.1)
1215
activesupport (>= 4.0.2, < 5)
@@ -41,34 +44,149 @@ GEM
4144
nap (>= 0.8, < 2.0)
4245
netrc (~> 0.11)
4346
cocoapods-try (1.1.0)
47+
colored (1.2)
4448
colored2 (3.1.2)
49+
commander-fastlane (4.4.5)
50+
highline (~> 1.7.2)
4551
concurrent-ruby (1.0.5)
52+
declarative (0.0.10)
53+
declarative-option (0.1.0)
54+
domain_name (0.5.20170404)
55+
unf (>= 0.0.5, < 1.0.0)
56+
dotenv (2.2.1)
4657
escape (0.0.4)
58+
excon (0.59.0)
59+
faraday (0.13.1)
60+
multipart-post (>= 1.2, < 3)
61+
faraday-cookie_jar (0.0.6)
62+
faraday (>= 0.7.4)
63+
http-cookie (~> 1.0.0)
64+
faraday_middleware (0.12.2)
65+
faraday (>= 0.7.4, < 1.0)
66+
fastimage (2.1.0)
67+
fastlane (2.62.1)
68+
CFPropertyList (>= 2.3, < 3.0.0)
69+
addressable (>= 2.3, < 3.0.0)
70+
babosa (>= 1.0.2, < 2.0.0)
71+
bundler (>= 1.12.0, < 2.0.0)
72+
colored
73+
commander-fastlane (>= 4.4.5, < 5.0.0)
74+
dotenv (>= 2.1.1, < 3.0.0)
75+
excon (>= 0.45.0, < 1.0.0)
76+
faraday (~> 0.9)
77+
faraday-cookie_jar (~> 0.0.6)
78+
faraday_middleware (~> 0.9)
79+
fastimage (>= 2.1.0, < 3.0.0)
80+
gh_inspector (>= 1.0.1, < 2.0.0)
81+
google-api-client (>= 0.13.1, < 0.14.0)
82+
highline (>= 1.7.2, < 2.0.0)
83+
json (< 3.0.0)
84+
mini_magick (~> 4.5.1)
85+
multi_json
86+
multi_xml (~> 0.5)
87+
multipart-post (~> 2.0.0)
88+
plist (>= 3.1.0, < 4.0.0)
89+
public_suffix (~> 2.0.0)
90+
rubyzip (>= 1.1.0, < 2.0.0)
91+
security (= 0.1.3)
92+
slack-notifier (>= 1.3, < 2.0.0)
93+
terminal-notifier (>= 1.6.2, < 2.0.0)
94+
terminal-table (>= 1.4.5, < 2.0.0)
95+
tty-screen (~> 0.5.0)
96+
word_wrap (~> 1.0.0)
97+
xcodeproj (>= 1.5.0, < 2.0.0)
98+
xcpretty (>= 0.2.4, < 1.0.0)
99+
xcpretty-travis-formatter (>= 0.0.3)
47100
fourflusher (2.0.1)
48101
fuzzy_match (2.0.4)
49102
gh_inspector (1.0.3)
103+
google-api-client (0.13.6)
104+
addressable (~> 2.5, >= 2.5.1)
105+
googleauth (~> 0.5)
106+
httpclient (>= 2.8.1, < 3.0)
107+
mime-types (~> 3.0)
108+
representable (~> 3.0)
109+
retriable (>= 2.0, < 4.0)
110+
googleauth (0.6.1)
111+
faraday (~> 0.12)
112+
jwt (>= 1.4, < 3.0)
113+
logging (~> 2.0)
114+
memoist (~> 0.12)
115+
multi_json (~> 1.11)
116+
os (~> 0.9)
117+
signet (~> 0.7)
118+
highline (1.7.8)
119+
http-cookie (1.0.3)
120+
domain_name (~> 0.5)
121+
httpclient (2.8.3)
50122
i18n (0.9.0)
51123
concurrent-ruby (~> 1.0)
124+
json (2.1.0)
125+
jwt (2.1.0)
126+
little-plugger (1.1.4)
127+
logging (2.2.2)
128+
little-plugger (~> 1.1)
129+
multi_json (~> 1.10)
130+
memoist (0.16.0)
131+
mime-types (3.1)
132+
mime-types-data (~> 3.2015)
133+
mime-types-data (3.2016.0521)
134+
mini_magick (4.5.1)
52135
minitest (5.10.3)
53136
molinillo (0.5.7)
137+
multi_json (1.12.2)
138+
multi_xml (0.6.0)
139+
multipart-post (2.0.0)
54140
nanaimo (0.2.3)
55141
nap (1.1.0)
56142
netrc (0.11.0)
143+
os (0.9.6)
144+
plist (3.3.0)
145+
public_suffix (2.0.5)
146+
representable (3.0.4)
147+
declarative (< 0.1.0)
148+
declarative-option (< 0.2.0)
149+
uber (< 0.2.0)
150+
retriable (3.1.1)
151+
rouge (2.0.7)
57152
ruby-macho (1.1.0)
153+
rubyzip (1.2.1)
154+
security (0.1.3)
155+
signet (0.8.1)
156+
addressable (~> 2.3)
157+
faraday (~> 0.9)
158+
jwt (>= 1.5, < 3.0)
159+
multi_json (~> 1.10)
160+
slack-notifier (1.5.1)
161+
terminal-notifier (1.8.0)
162+
terminal-table (1.8.0)
163+
unicode-display_width (~> 1.1, >= 1.1.1)
58164
thread_safe (0.3.6)
165+
tty-screen (0.5.1)
59166
tzinfo (1.2.4)
60167
thread_safe (~> 0.1)
168+
uber (0.1.0)
169+
unf (0.1.4)
170+
unf_ext
171+
unf_ext (0.0.7.4)
172+
unicode-display_width (1.3.0)
173+
word_wrap (1.0.0)
61174
xcodeproj (1.5.3)
62175
CFPropertyList (~> 2.3.3)
63176
claide (>= 1.0.2, < 2.0)
64177
colored2 (~> 3.1)
65178
nanaimo (~> 0.2.3)
179+
xcpretty (0.2.8)
180+
rouge (~> 2.0.7)
181+
xcpretty-travis-formatter (1.0.0)
182+
xcpretty (~> 0.2, >= 0.0.7)
66183

67184
PLATFORMS
68185
ruby
69186

70187
DEPENDENCIES
71188
cocoapods (~> 1.3.1)
189+
fastlane (~> 2.62.1)
72190

73191
BUNDLED WITH
74192
1.15.4

0 commit comments

Comments
 (0)