pod-builder 2.0.0.beta.21 → 2.0.0.beta.26
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.md +10 -22
- data/exe/pod_builder +10 -32
- data/lib/pod_builder/command.rb +1 -3
- data/lib/pod_builder/command/build.rb +0 -1
- data/lib/pod_builder/command/generate_lldbinit.rb +151 -0
- data/lib/pod_builder/command/init.rb +26 -12
- data/lib/pod_builder/configuration.rb +2 -20
- data/lib/pod_builder/core.rb +17 -7
- data/lib/pod_builder/install.rb +135 -71
- data/lib/pod_builder/podfile.rb +23 -5
- data/lib/pod_builder/podfile_cp.rb +1 -1
- data/lib/pod_builder/podfile_item.rb +1 -1
- data/lib/pod_builder/rome/post_install.rb +185 -12
- data/lib/pod_builder/templates/build_podfile.template +1 -1
- data/lib/pod_builder/version.rb +1 -1
- data/pod-builder.gemspec +2 -2
- metadata +4 -28
- data/Example/PodBuilder/.gitignore +0 -6
- data/Example/PodBuilder/.pod_builder/pod_builder +0 -0
- data/Example/PodBuilder/PodBuilder.json +0 -38
- data/Example/PodBuilder/Podfile +0 -23
- data/Example/PodBuilder/Podfile.restore +0 -40
- data/Example/PodBuilderExample.xcodeproj/project.pbxproj +0 -411
- data/Example/PodBuilderExample.xcodeproj/project.xcworkspace/contents.xcworkspacedata +0 -7
- data/Example/PodBuilderExample.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +0 -8
- data/Example/PodBuilderExample.xcodeproj/project.xcworkspace/xcuserdata/tomas.xcuserdatad/UserInterfaceState.xcuserstate +0 -0
- data/Example/PodBuilderExample.xcworkspace/contents.xcworkspacedata +0 -10
- data/Example/PodBuilderExample.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +0 -8
- data/Example/PodBuilderExample/AppDelegate.swift +0 -51
- data/Example/PodBuilderExample/Assets.xcassets/AppIcon.appiconset/Contents.json +0 -98
- data/Example/PodBuilderExample/Assets.xcassets/Contents.json +0 -6
- data/Example/PodBuilderExample/Base.lproj/LaunchScreen.storyboard +0 -25
- data/Example/PodBuilderExample/Base.lproj/Main.storyboard +0 -24
- data/Example/PodBuilderExample/Info.plist +0 -45
- data/Example/PodBuilderExample/ViewController.swift +0 -25
- data/Example/Podfile +0 -49
- data/Example/Podfile.lock +0 -435
- data/Example/Pods-acknowledgements.md +0 -210
- data/Example/Pods-acknowledgements.plist +0 -206
- data/lib/pod_builder/command/clear_lldbinit.rb +0 -48
- data/lib/pod_builder/command/generate_lfs.rb +0 -70
- data/lib/pod_builder/command/update_lldbinit.rb +0 -162
Binary file
|
@@ -1,51 +0,0 @@
|
|
1
|
-
//
|
2
|
-
// AppDelegate.swift
|
3
|
-
// PodBuilderExample
|
4
|
-
//
|
5
|
-
// Created by Tomas Camin on 24/08/2018.
|
6
|
-
// Copyright © 2018 Subito. All rights reserved.
|
7
|
-
//
|
8
|
-
|
9
|
-
import UIKit
|
10
|
-
import Alamofire
|
11
|
-
import Firebase
|
12
|
-
import Loop
|
13
|
-
import AFNetworking
|
14
|
-
|
15
|
-
@UIApplicationMain
|
16
|
-
class AppDelegate: UIResponder, UIApplicationDelegate {
|
17
|
-
|
18
|
-
var window: UIWindow?
|
19
|
-
|
20
|
-
|
21
|
-
func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplicationLaunchOptionsKey: Any]?) -> Bool {
|
22
|
-
// Override point for customization after application launch.
|
23
|
-
|
24
|
-
return true
|
25
|
-
}
|
26
|
-
|
27
|
-
func applicationWillResignActive(_ application: UIApplication) {
|
28
|
-
// Sent when the application is about to move from active to inactive state. This can occur for certain types of temporary interruptions (such as an incoming phone call or SMS message) or when the user quits the application and it begins the transition to the background state.
|
29
|
-
// Use this method to pause ongoing tasks, disable timers, and invalidate graphics rendering callbacks. Games should use this method to pause the game.
|
30
|
-
}
|
31
|
-
|
32
|
-
func applicationDidEnterBackground(_ application: UIApplication) {
|
33
|
-
// Use this method to release shared resources, save user data, invalidate timers, and store enough application state information to restore your application to its current state in case it is terminated later.
|
34
|
-
// If your application supports background execution, this method is called instead of applicationWillTerminate: when the user quits.
|
35
|
-
}
|
36
|
-
|
37
|
-
func applicationWillEnterForeground(_ application: UIApplication) {
|
38
|
-
// Called as part of the transition from the background to the active state; here you can undo many of the changes made on entering the background.
|
39
|
-
}
|
40
|
-
|
41
|
-
func applicationDidBecomeActive(_ application: UIApplication) {
|
42
|
-
// Restart any tasks that were paused (or not yet started) while the application was inactive. If the application was previously in the background, optionally refresh the user interface.
|
43
|
-
}
|
44
|
-
|
45
|
-
func applicationWillTerminate(_ application: UIApplication) {
|
46
|
-
// Called when the application is about to terminate. Save data if appropriate. See also applicationDidEnterBackground:.
|
47
|
-
}
|
48
|
-
|
49
|
-
|
50
|
-
}
|
51
|
-
|
@@ -1,98 +0,0 @@
|
|
1
|
-
{
|
2
|
-
"images" : [
|
3
|
-
{
|
4
|
-
"idiom" : "iphone",
|
5
|
-
"size" : "20x20",
|
6
|
-
"scale" : "2x"
|
7
|
-
},
|
8
|
-
{
|
9
|
-
"idiom" : "iphone",
|
10
|
-
"size" : "20x20",
|
11
|
-
"scale" : "3x"
|
12
|
-
},
|
13
|
-
{
|
14
|
-
"idiom" : "iphone",
|
15
|
-
"size" : "29x29",
|
16
|
-
"scale" : "2x"
|
17
|
-
},
|
18
|
-
{
|
19
|
-
"idiom" : "iphone",
|
20
|
-
"size" : "29x29",
|
21
|
-
"scale" : "3x"
|
22
|
-
},
|
23
|
-
{
|
24
|
-
"idiom" : "iphone",
|
25
|
-
"size" : "40x40",
|
26
|
-
"scale" : "2x"
|
27
|
-
},
|
28
|
-
{
|
29
|
-
"idiom" : "iphone",
|
30
|
-
"size" : "40x40",
|
31
|
-
"scale" : "3x"
|
32
|
-
},
|
33
|
-
{
|
34
|
-
"idiom" : "iphone",
|
35
|
-
"size" : "60x60",
|
36
|
-
"scale" : "2x"
|
37
|
-
},
|
38
|
-
{
|
39
|
-
"idiom" : "iphone",
|
40
|
-
"size" : "60x60",
|
41
|
-
"scale" : "3x"
|
42
|
-
},
|
43
|
-
{
|
44
|
-
"idiom" : "ipad",
|
45
|
-
"size" : "20x20",
|
46
|
-
"scale" : "1x"
|
47
|
-
},
|
48
|
-
{
|
49
|
-
"idiom" : "ipad",
|
50
|
-
"size" : "20x20",
|
51
|
-
"scale" : "2x"
|
52
|
-
},
|
53
|
-
{
|
54
|
-
"idiom" : "ipad",
|
55
|
-
"size" : "29x29",
|
56
|
-
"scale" : "1x"
|
57
|
-
},
|
58
|
-
{
|
59
|
-
"idiom" : "ipad",
|
60
|
-
"size" : "29x29",
|
61
|
-
"scale" : "2x"
|
62
|
-
},
|
63
|
-
{
|
64
|
-
"idiom" : "ipad",
|
65
|
-
"size" : "40x40",
|
66
|
-
"scale" : "1x"
|
67
|
-
},
|
68
|
-
{
|
69
|
-
"idiom" : "ipad",
|
70
|
-
"size" : "40x40",
|
71
|
-
"scale" : "2x"
|
72
|
-
},
|
73
|
-
{
|
74
|
-
"idiom" : "ipad",
|
75
|
-
"size" : "76x76",
|
76
|
-
"scale" : "1x"
|
77
|
-
},
|
78
|
-
{
|
79
|
-
"idiom" : "ipad",
|
80
|
-
"size" : "76x76",
|
81
|
-
"scale" : "2x"
|
82
|
-
},
|
83
|
-
{
|
84
|
-
"idiom" : "ipad",
|
85
|
-
"size" : "83.5x83.5",
|
86
|
-
"scale" : "2x"
|
87
|
-
},
|
88
|
-
{
|
89
|
-
"idiom" : "ios-marketing",
|
90
|
-
"size" : "1024x1024",
|
91
|
-
"scale" : "1x"
|
92
|
-
}
|
93
|
-
],
|
94
|
-
"info" : {
|
95
|
-
"version" : 1,
|
96
|
-
"author" : "xcode"
|
97
|
-
}
|
98
|
-
}
|
@@ -1,25 +0,0 @@
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
2
|
-
<document type="com.apple.InterfaceBuilder3.CocoaTouch.Storyboard.XIB" version="3.0" toolsVersion="13122.16" systemVersion="17A277" targetRuntime="iOS.CocoaTouch" propertyAccessControl="none" useAutolayout="YES" launchScreen="YES" useTraitCollections="YES" useSafeAreas="YES" colorMatched="YES" initialViewController="01J-lp-oVM">
|
3
|
-
<dependencies>
|
4
|
-
<plugIn identifier="com.apple.InterfaceBuilder.IBCocoaTouchPlugin" version="13104.12"/>
|
5
|
-
<capability name="Safe area layout guides" minToolsVersion="9.0"/>
|
6
|
-
<capability name="documents saved in the Xcode 8 format" minToolsVersion="8.0"/>
|
7
|
-
</dependencies>
|
8
|
-
<scenes>
|
9
|
-
<!--View Controller-->
|
10
|
-
<scene sceneID="EHf-IW-A2E">
|
11
|
-
<objects>
|
12
|
-
<viewController id="01J-lp-oVM" sceneMemberID="viewController">
|
13
|
-
<view key="view" contentMode="scaleToFill" id="Ze5-6b-2t3">
|
14
|
-
<rect key="frame" x="0.0" y="0.0" width="375" height="667"/>
|
15
|
-
<autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
|
16
|
-
<color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
|
17
|
-
<viewLayoutGuide key="safeArea" id="6Tk-OE-BBY"/>
|
18
|
-
</view>
|
19
|
-
</viewController>
|
20
|
-
<placeholder placeholderIdentifier="IBFirstResponder" id="iYj-Kq-Ea1" userLabel="First Responder" sceneMemberID="firstResponder"/>
|
21
|
-
</objects>
|
22
|
-
<point key="canvasLocation" x="53" y="375"/>
|
23
|
-
</scene>
|
24
|
-
</scenes>
|
25
|
-
</document>
|
@@ -1,24 +0,0 @@
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
-
<document type="com.apple.InterfaceBuilder3.CocoaTouch.Storyboard.XIB" version="3.0" toolsVersion="13122.16" systemVersion="17A277" targetRuntime="iOS.CocoaTouch" propertyAccessControl="none" useAutolayout="YES" useTraitCollections="YES" useSafeAreas="YES" colorMatched="YES" initialViewController="BYZ-38-t0r">
|
3
|
-
<dependencies>
|
4
|
-
<plugIn identifier="com.apple.InterfaceBuilder.IBCocoaTouchPlugin" version="13104.12"/>
|
5
|
-
<capability name="Safe area layout guides" minToolsVersion="9.0"/>
|
6
|
-
<capability name="documents saved in the Xcode 8 format" minToolsVersion="8.0"/>
|
7
|
-
</dependencies>
|
8
|
-
<scenes>
|
9
|
-
<!--View Controller-->
|
10
|
-
<scene sceneID="tne-QT-ifu">
|
11
|
-
<objects>
|
12
|
-
<viewController id="BYZ-38-t0r" customClass="ViewController" customModuleProvider="target" sceneMemberID="viewController">
|
13
|
-
<view key="view" contentMode="scaleToFill" id="8bC-Xf-vdC">
|
14
|
-
<rect key="frame" x="0.0" y="0.0" width="375" height="667"/>
|
15
|
-
<autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
|
16
|
-
<color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
|
17
|
-
<viewLayoutGuide key="safeArea" id="6Tk-OE-BBY"/>
|
18
|
-
</view>
|
19
|
-
</viewController>
|
20
|
-
<placeholder placeholderIdentifier="IBFirstResponder" id="dkx-z0-nzr" sceneMemberID="firstResponder"/>
|
21
|
-
</objects>
|
22
|
-
</scene>
|
23
|
-
</scenes>
|
24
|
-
</document>
|
@@ -1,45 +0,0 @@
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
-
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
3
|
-
<plist version="1.0">
|
4
|
-
<dict>
|
5
|
-
<key>CFBundleDevelopmentRegion</key>
|
6
|
-
<string>$(DEVELOPMENT_LANGUAGE)</string>
|
7
|
-
<key>CFBundleExecutable</key>
|
8
|
-
<string>$(EXECUTABLE_NAME)</string>
|
9
|
-
<key>CFBundleIdentifier</key>
|
10
|
-
<string>$(PRODUCT_BUNDLE_IDENTIFIER)</string>
|
11
|
-
<key>CFBundleInfoDictionaryVersion</key>
|
12
|
-
<string>6.0</string>
|
13
|
-
<key>CFBundleName</key>
|
14
|
-
<string>$(PRODUCT_NAME)</string>
|
15
|
-
<key>CFBundlePackageType</key>
|
16
|
-
<string>APPL</string>
|
17
|
-
<key>CFBundleShortVersionString</key>
|
18
|
-
<string>1.0</string>
|
19
|
-
<key>CFBundleVersion</key>
|
20
|
-
<string>1</string>
|
21
|
-
<key>LSRequiresIPhoneOS</key>
|
22
|
-
<true/>
|
23
|
-
<key>UILaunchStoryboardName</key>
|
24
|
-
<string>LaunchScreen</string>
|
25
|
-
<key>UIMainStoryboardFile</key>
|
26
|
-
<string>Main</string>
|
27
|
-
<key>UIRequiredDeviceCapabilities</key>
|
28
|
-
<array>
|
29
|
-
<string>armv7</string>
|
30
|
-
</array>
|
31
|
-
<key>UISupportedInterfaceOrientations</key>
|
32
|
-
<array>
|
33
|
-
<string>UIInterfaceOrientationPortrait</string>
|
34
|
-
<string>UIInterfaceOrientationLandscapeLeft</string>
|
35
|
-
<string>UIInterfaceOrientationLandscapeRight</string>
|
36
|
-
</array>
|
37
|
-
<key>UISupportedInterfaceOrientations~ipad</key>
|
38
|
-
<array>
|
39
|
-
<string>UIInterfaceOrientationPortrait</string>
|
40
|
-
<string>UIInterfaceOrientationPortraitUpsideDown</string>
|
41
|
-
<string>UIInterfaceOrientationLandscapeLeft</string>
|
42
|
-
<string>UIInterfaceOrientationLandscapeRight</string>
|
43
|
-
</array>
|
44
|
-
</dict>
|
45
|
-
</plist>
|
@@ -1,25 +0,0 @@
|
|
1
|
-
//
|
2
|
-
// ViewController.swift
|
3
|
-
// PodBuilderExample
|
4
|
-
//
|
5
|
-
// Created by Tomas Camin on 24/08/2018.
|
6
|
-
// Copyright © 2018 Subito. All rights reserved.
|
7
|
-
//
|
8
|
-
|
9
|
-
import UIKit
|
10
|
-
|
11
|
-
class ViewController: UIViewController {
|
12
|
-
|
13
|
-
override func viewDidLoad() {
|
14
|
-
super.viewDidLoad()
|
15
|
-
// Do any additional setup after loading the view, typically from a nib.
|
16
|
-
}
|
17
|
-
|
18
|
-
override func didReceiveMemoryWarning() {
|
19
|
-
super.didReceiveMemoryWarning()
|
20
|
-
// Dispose of any resources that can be recreated.
|
21
|
-
}
|
22
|
-
|
23
|
-
|
24
|
-
}
|
25
|
-
|
data/Example/Podfile
DELETED
@@ -1,49 +0,0 @@
|
|
1
|
-
# Autogenerated by PodBuilder (https://github.com/Subito-it/PodBuilder)
|
2
|
-
# Any change to this file should be done on PodBuilder/Podfile
|
3
|
-
|
4
|
-
platform :ios, '9.0'
|
5
|
-
|
6
|
-
target 'PodBuilderExample' do
|
7
|
-
use_frameworks!
|
8
|
-
|
9
|
-
# Pods for PodBuilderExample
|
10
|
-
pod 'Alamofire', :path => 'PodBuilder/Prebuilt' # pb<Alamofire>
|
11
|
-
pod 'AFNetworking', :path => 'PodBuilder/Prebuilt' # pb<AFNetworking>
|
12
|
-
pod 'Loop', :path => 'PodBuilder/Prebuilt' # pb<Loop>
|
13
|
-
pod 'ReactiveSwift', :path => 'PodBuilder/Prebuilt' # pb<Loop>
|
14
|
-
|
15
|
-
# Firebase
|
16
|
-
pod 'Firebase'
|
17
|
-
pod 'FirebaseCore', :path => 'PodBuilder/Prebuilt' # pb<FirebaseCore>
|
18
|
-
pod 'GoogleUtilities', :path => 'PodBuilder/Prebuilt' # pb<FirebaseCore>
|
19
|
-
pod 'FirebaseCoreDiagnostics', :path => 'PodBuilder/Prebuilt' # pb<FirebaseCore>
|
20
|
-
pod 'PromisesObjC', :path => 'PodBuilder/Prebuilt' # pb<FirebaseCore>
|
21
|
-
pod 'GoogleDataTransport', :path => 'PodBuilder/Prebuilt' # pb<FirebaseCore>
|
22
|
-
pod 'nanopb', :path => 'PodBuilder/Prebuilt' # pb<FirebaseCore>
|
23
|
-
pod 'FirebaseDatabase', :path => 'PodBuilder/Prebuilt' # pb<FirebaseDatabase>
|
24
|
-
pod 'leveldb-library', :path => 'PodBuilder/Prebuilt' # pb<FirebaseDatabase>
|
25
|
-
pod 'GoogleUtilities', :path => 'PodBuilder/Prebuilt' # pb<FirebaseDatabase>
|
26
|
-
pod 'FirebaseAuth', :path => 'PodBuilder/Prebuilt' # pb<FirebaseAuth>
|
27
|
-
pod 'GoogleUtilities', :path => 'PodBuilder/Prebuilt' # pb<FirebaseAuth>
|
28
|
-
pod 'GTMSessionFetcher', :path => 'PodBuilder/Prebuilt' # pb<FirebaseAuth>
|
29
|
-
pod 'FirebaseFirestore', :path => 'PodBuilder/Prebuilt' # pb<FirebaseFirestore>
|
30
|
-
pod 'abseil', :path => 'PodBuilder/Prebuilt' # pb<FirebaseFirestore>
|
31
|
-
pod 'gRPC-C++', :path => 'PodBuilder/Prebuilt' # pb<FirebaseFirestore>
|
32
|
-
pod 'GoogleUtilities', :path => 'PodBuilder/Prebuilt' # pb<FirebaseFirestore>
|
33
|
-
pod 'gRPC-Core', :path => 'PodBuilder/Prebuilt' # pb<FirebaseFirestore>
|
34
|
-
pod 'BoringSSL-GRPC', :path => 'PodBuilder/Prebuilt' # pb<FirebaseFirestore>
|
35
|
-
pod 'FirebasePerformance'
|
36
|
-
pod 'FirebaseCrashlytics', :path => 'PodBuilder/Prebuilt' # pb<FirebaseCrashlytics>
|
37
|
-
pod 'FirebaseInstallations', :path => 'PodBuilder/Prebuilt' # pb<FirebaseCrashlytics>
|
38
|
-
pod 'GoogleUtilities', :path => 'PodBuilder/Prebuilt' # pb<FirebaseCrashlytics>
|
39
|
-
end
|
40
|
-
|
41
|
-
pre_install do |installer|
|
42
|
-
Pod::Installer::Xcode::TargetValidator.send(:define_method, :verify_no_duplicate_framework_and_library_names) {}
|
43
|
-
|
44
|
-
end
|
45
|
-
|
46
|
-
post_install do |installer|
|
47
|
-
require 'pod_builder/podfile/post_actions'
|
48
|
-
PodBuilder::Podfile::pod_builder_post_process
|
49
|
-
end
|
data/Example/Podfile.lock
DELETED
@@ -1,435 +0,0 @@
|
|
1
|
-
PODS:
|
2
|
-
- abseil (0.20200225.0):
|
3
|
-
- abseil/algorithm (= 0.20200225.0)
|
4
|
-
- abseil/base (= 0.20200225.0)
|
5
|
-
- abseil/container (= 0.20200225.0)
|
6
|
-
- abseil/memory (= 0.20200225.0)
|
7
|
-
- abseil/meta (= 0.20200225.0)
|
8
|
-
- abseil/numeric (= 0.20200225.0)
|
9
|
-
- abseil/strings (= 0.20200225.0)
|
10
|
-
- abseil/time (= 0.20200225.0)
|
11
|
-
- abseil/types (= 0.20200225.0)
|
12
|
-
- abseil/utility (= 0.20200225.0)
|
13
|
-
- abseil/algorithm (0.20200225.0):
|
14
|
-
- abseil/algorithm/algorithm (= 0.20200225.0)
|
15
|
-
- abseil/algorithm/algorithm (0.20200225.0):
|
16
|
-
- abseil/base/config
|
17
|
-
- abseil/base (0.20200225.0):
|
18
|
-
- abseil/base/atomic_hook (= 0.20200225.0)
|
19
|
-
- abseil/base/base (= 0.20200225.0)
|
20
|
-
- abseil/base/base_internal (= 0.20200225.0)
|
21
|
-
- abseil/base/bits (= 0.20200225.0)
|
22
|
-
- abseil/base/config (= 0.20200225.0)
|
23
|
-
- abseil/base/core_headers (= 0.20200225.0)
|
24
|
-
- abseil/base/dynamic_annotations (= 0.20200225.0)
|
25
|
-
- abseil/base/endian (= 0.20200225.0)
|
26
|
-
- abseil/base/errno_saver (= 0.20200225.0)
|
27
|
-
- abseil/base/log_severity (= 0.20200225.0)
|
28
|
-
- abseil/base/raw_logging_internal (= 0.20200225.0)
|
29
|
-
- abseil/base/spinlock_wait (= 0.20200225.0)
|
30
|
-
- abseil/base/throw_delegate (= 0.20200225.0)
|
31
|
-
- abseil/base/atomic_hook (0.20200225.0):
|
32
|
-
- abseil/base/config
|
33
|
-
- abseil/base/core_headers
|
34
|
-
- abseil/base/base (0.20200225.0):
|
35
|
-
- abseil/base/atomic_hook
|
36
|
-
- abseil/base/base_internal
|
37
|
-
- abseil/base/config
|
38
|
-
- abseil/base/core_headers
|
39
|
-
- abseil/base/dynamic_annotations
|
40
|
-
- abseil/base/log_severity
|
41
|
-
- abseil/base/raw_logging_internal
|
42
|
-
- abseil/base/spinlock_wait
|
43
|
-
- abseil/meta/type_traits
|
44
|
-
- abseil/base/base_internal (0.20200225.0):
|
45
|
-
- abseil/base/config
|
46
|
-
- abseil/meta/type_traits
|
47
|
-
- abseil/base/bits (0.20200225.0):
|
48
|
-
- abseil/base/config
|
49
|
-
- abseil/base/core_headers
|
50
|
-
- abseil/base/config (0.20200225.0)
|
51
|
-
- abseil/base/core_headers (0.20200225.0):
|
52
|
-
- abseil/base/config
|
53
|
-
- abseil/base/dynamic_annotations (0.20200225.0)
|
54
|
-
- abseil/base/endian (0.20200225.0):
|
55
|
-
- abseil/base/config
|
56
|
-
- abseil/base/core_headers
|
57
|
-
- abseil/base/errno_saver (0.20200225.0):
|
58
|
-
- abseil/base/config
|
59
|
-
- abseil/base/log_severity (0.20200225.0):
|
60
|
-
- abseil/base/config
|
61
|
-
- abseil/base/core_headers
|
62
|
-
- abseil/base/raw_logging_internal (0.20200225.0):
|
63
|
-
- abseil/base/atomic_hook
|
64
|
-
- abseil/base/config
|
65
|
-
- abseil/base/core_headers
|
66
|
-
- abseil/base/log_severity
|
67
|
-
- abseil/base/spinlock_wait (0.20200225.0):
|
68
|
-
- abseil/base/base_internal
|
69
|
-
- abseil/base/core_headers
|
70
|
-
- abseil/base/errno_saver
|
71
|
-
- abseil/base/throw_delegate (0.20200225.0):
|
72
|
-
- abseil/base/config
|
73
|
-
- abseil/base/raw_logging_internal
|
74
|
-
- abseil/container (0.20200225.0):
|
75
|
-
- abseil/container/compressed_tuple (= 0.20200225.0)
|
76
|
-
- abseil/container/inlined_vector (= 0.20200225.0)
|
77
|
-
- abseil/container/inlined_vector_internal (= 0.20200225.0)
|
78
|
-
- abseil/container/compressed_tuple (0.20200225.0):
|
79
|
-
- abseil/utility/utility
|
80
|
-
- abseil/container/inlined_vector (0.20200225.0):
|
81
|
-
- abseil/algorithm/algorithm
|
82
|
-
- abseil/base/core_headers
|
83
|
-
- abseil/base/throw_delegate
|
84
|
-
- abseil/container/inlined_vector_internal
|
85
|
-
- abseil/memory/memory
|
86
|
-
- abseil/container/inlined_vector_internal (0.20200225.0):
|
87
|
-
- abseil/base/core_headers
|
88
|
-
- abseil/container/compressed_tuple
|
89
|
-
- abseil/memory/memory
|
90
|
-
- abseil/meta/type_traits
|
91
|
-
- abseil/types/span
|
92
|
-
- abseil/memory (0.20200225.0):
|
93
|
-
- abseil/memory/memory (= 0.20200225.0)
|
94
|
-
- abseil/memory/memory (0.20200225.0):
|
95
|
-
- abseil/base/core_headers
|
96
|
-
- abseil/meta/type_traits
|
97
|
-
- abseil/meta (0.20200225.0):
|
98
|
-
- abseil/meta/type_traits (= 0.20200225.0)
|
99
|
-
- abseil/meta/type_traits (0.20200225.0):
|
100
|
-
- abseil/base/config
|
101
|
-
- abseil/numeric (0.20200225.0):
|
102
|
-
- abseil/numeric/int128 (= 0.20200225.0)
|
103
|
-
- abseil/numeric/int128 (0.20200225.0):
|
104
|
-
- abseil/base/config
|
105
|
-
- abseil/base/core_headers
|
106
|
-
- abseil/strings (0.20200225.0):
|
107
|
-
- abseil/strings/internal (= 0.20200225.0)
|
108
|
-
- abseil/strings/str_format (= 0.20200225.0)
|
109
|
-
- abseil/strings/str_format_internal (= 0.20200225.0)
|
110
|
-
- abseil/strings/strings (= 0.20200225.0)
|
111
|
-
- abseil/strings/internal (0.20200225.0):
|
112
|
-
- abseil/base/config
|
113
|
-
- abseil/base/core_headers
|
114
|
-
- abseil/base/endian
|
115
|
-
- abseil/base/raw_logging_internal
|
116
|
-
- abseil/meta/type_traits
|
117
|
-
- abseil/strings/str_format (0.20200225.0):
|
118
|
-
- abseil/strings/str_format_internal
|
119
|
-
- abseil/strings/str_format_internal (0.20200225.0):
|
120
|
-
- abseil/base/config
|
121
|
-
- abseil/base/core_headers
|
122
|
-
- abseil/meta/type_traits
|
123
|
-
- abseil/numeric/int128
|
124
|
-
- abseil/strings/strings
|
125
|
-
- abseil/types/span
|
126
|
-
- abseil/strings/strings (0.20200225.0):
|
127
|
-
- abseil/base/base
|
128
|
-
- abseil/base/bits
|
129
|
-
- abseil/base/config
|
130
|
-
- abseil/base/core_headers
|
131
|
-
- abseil/base/endian
|
132
|
-
- abseil/base/raw_logging_internal
|
133
|
-
- abseil/base/throw_delegate
|
134
|
-
- abseil/memory/memory
|
135
|
-
- abseil/meta/type_traits
|
136
|
-
- abseil/numeric/int128
|
137
|
-
- abseil/strings/internal
|
138
|
-
- abseil/time (0.20200225.0)
|
139
|
-
- abseil/types (0.20200225.0):
|
140
|
-
- abseil/types/bad_optional_access (= 0.20200225.0)
|
141
|
-
- abseil/types/optional (= 0.20200225.0)
|
142
|
-
- abseil/types/span (= 0.20200225.0)
|
143
|
-
- abseil/types/bad_optional_access (0.20200225.0):
|
144
|
-
- abseil/base/config
|
145
|
-
- abseil/base/raw_logging_internal
|
146
|
-
- abseil/types/optional (0.20200225.0):
|
147
|
-
- abseil/base/base_internal
|
148
|
-
- abseil/base/config
|
149
|
-
- abseil/base/core_headers
|
150
|
-
- abseil/memory/memory
|
151
|
-
- abseil/meta/type_traits
|
152
|
-
- abseil/types/bad_optional_access
|
153
|
-
- abseil/utility/utility
|
154
|
-
- abseil/types/span (0.20200225.0):
|
155
|
-
- abseil/algorithm/algorithm
|
156
|
-
- abseil/base/core_headers
|
157
|
-
- abseil/base/throw_delegate
|
158
|
-
- abseil/meta/type_traits
|
159
|
-
- abseil/utility (0.20200225.0):
|
160
|
-
- abseil/utility/utility (= 0.20200225.0)
|
161
|
-
- abseil/utility/utility (0.20200225.0):
|
162
|
-
- abseil/base/base_internal
|
163
|
-
- abseil/base/config
|
164
|
-
- abseil/meta/type_traits
|
165
|
-
- AFNetworking (4.0.1)
|
166
|
-
- Alamofire (4.9.1)
|
167
|
-
- BoringSSL-GRPC (0.0.7)
|
168
|
-
- Firebase (6.30.0):
|
169
|
-
- Firebase/Core (= 6.30.0)
|
170
|
-
- Firebase/Core (6.30.0):
|
171
|
-
- Firebase/CoreOnly
|
172
|
-
- FirebaseAnalytics (= 6.7.2)
|
173
|
-
- Firebase/CoreOnly (6.30.0):
|
174
|
-
- FirebaseCore (= 6.10.0)
|
175
|
-
- FirebaseABTesting (4.2.0):
|
176
|
-
- FirebaseCore (~> 6.10)
|
177
|
-
- FirebaseAnalytics (6.7.2):
|
178
|
-
- FirebaseCore (~> 6.8)
|
179
|
-
- FirebaseInstallations (~> 1.4)
|
180
|
-
- GoogleAppMeasurement (= 6.7.2)
|
181
|
-
- GoogleUtilities/AppDelegateSwizzler (~> 6.7)
|
182
|
-
- GoogleUtilities/MethodSwizzler (~> 6.7)
|
183
|
-
- GoogleUtilities/Network (~> 6.7)
|
184
|
-
- "GoogleUtilities/NSData+zlib (~> 6.7)"
|
185
|
-
- nanopb (~> 1.30905.0)
|
186
|
-
- FirebaseAuth (6.8.0):
|
187
|
-
- FirebaseCore
|
188
|
-
- GoogleUtilities/AppDelegateSwizzler
|
189
|
-
- GoogleUtilities/Environment
|
190
|
-
- GTMSessionFetcher/Core
|
191
|
-
- FirebaseCore (6.10.0):
|
192
|
-
- FirebaseCoreDiagnostics
|
193
|
-
- GoogleUtilities/Environment
|
194
|
-
- GoogleUtilities/Logger
|
195
|
-
- FirebaseCoreDiagnostics (1.5.0):
|
196
|
-
- GoogleDataTransport
|
197
|
-
- GoogleUtilities/Environment
|
198
|
-
- GoogleUtilities/Logger
|
199
|
-
- nanopb
|
200
|
-
- FirebaseCrashlytics (4.4.0):
|
201
|
-
- FirebaseCore
|
202
|
-
- FirebaseInstallations
|
203
|
-
- GoogleDataTransport
|
204
|
-
- nanopb
|
205
|
-
- PromisesObjC
|
206
|
-
- FirebaseDatabase (6.5.0):
|
207
|
-
- FirebaseCore
|
208
|
-
- leveldb-library
|
209
|
-
- FirebaseFirestore (1.16.4):
|
210
|
-
- abseil/algorithm
|
211
|
-
- abseil/base
|
212
|
-
- abseil/memory
|
213
|
-
- abseil/meta
|
214
|
-
- abseil/strings/strings
|
215
|
-
- abseil/time
|
216
|
-
- abseil/types
|
217
|
-
- FirebaseCore
|
218
|
-
- "gRPC-C++"
|
219
|
-
- leveldb-library
|
220
|
-
- nanopb
|
221
|
-
- FirebaseInstallations (1.6.0):
|
222
|
-
- FirebaseCore
|
223
|
-
- GoogleUtilities/Environment
|
224
|
-
- GoogleUtilities/UserDefaults
|
225
|
-
- PromisesObjC
|
226
|
-
- FirebasePerformance (3.3.0):
|
227
|
-
- FirebaseCore (~> 6.9)
|
228
|
-
- FirebaseInstallations (~> 1.5)
|
229
|
-
- FirebaseRemoteConfig (~> 4.7)
|
230
|
-
- GoogleDataTransport (~> 7.0)
|
231
|
-
- GoogleToolboxForMac/Logger (~> 2.1)
|
232
|
-
- "GoogleToolboxForMac/NSData+zlib (~> 2.1)"
|
233
|
-
- GoogleUtilities/Environment (~> 6.2)
|
234
|
-
- GoogleUtilities/ISASwizzler (~> 6.2)
|
235
|
-
- GoogleUtilities/MethodSwizzler (~> 6.2)
|
236
|
-
- GTMSessionFetcher/Core (~> 1.1)
|
237
|
-
- Protobuf (~> 3.12)
|
238
|
-
- FirebaseRemoteConfig (4.9.0):
|
239
|
-
- FirebaseABTesting (~> 4.2)
|
240
|
-
- FirebaseCore (~> 6.10)
|
241
|
-
- FirebaseInstallations (~> 1.6)
|
242
|
-
- GoogleUtilities/Environment (~> 6.7)
|
243
|
-
- "GoogleUtilities/NSData+zlib (~> 6.7)"
|
244
|
-
- GoogleAppMeasurement (6.7.2):
|
245
|
-
- GoogleUtilities/AppDelegateSwizzler (~> 6.7)
|
246
|
-
- GoogleUtilities/MethodSwizzler (~> 6.7)
|
247
|
-
- GoogleUtilities/Network (~> 6.7)
|
248
|
-
- "GoogleUtilities/NSData+zlib (~> 6.7)"
|
249
|
-
- nanopb (~> 1.30905.0)
|
250
|
-
- GoogleDataTransport (7.2.0):
|
251
|
-
- nanopb
|
252
|
-
- GoogleToolboxForMac/Defines (2.2.2)
|
253
|
-
- GoogleToolboxForMac/Logger (2.2.2):
|
254
|
-
- GoogleToolboxForMac/Defines (= 2.2.2)
|
255
|
-
- "GoogleToolboxForMac/NSData+zlib (2.2.2)":
|
256
|
-
- GoogleToolboxForMac/Defines (= 2.2.2)
|
257
|
-
- GoogleUtilities (6.7.2):
|
258
|
-
- GoogleUtilities/AppDelegateSwizzler (= 6.7.2)
|
259
|
-
- GoogleUtilities/Environment (= 6.7.2)
|
260
|
-
- GoogleUtilities/ISASwizzler (= 6.7.2)
|
261
|
-
- GoogleUtilities/Logger (= 6.7.2)
|
262
|
-
- GoogleUtilities/MethodSwizzler (= 6.7.2)
|
263
|
-
- GoogleUtilities/Network (= 6.7.2)
|
264
|
-
- "GoogleUtilities/NSData+zlib (= 6.7.2)"
|
265
|
-
- GoogleUtilities/Reachability (= 6.7.2)
|
266
|
-
- GoogleUtilities/UserDefaults (= 6.7.2)
|
267
|
-
- GoogleUtilities/AppDelegateSwizzler (6.7.2):
|
268
|
-
- GoogleUtilities/Environment
|
269
|
-
- GoogleUtilities/Logger
|
270
|
-
- GoogleUtilities/Network
|
271
|
-
- GoogleUtilities/Environment (6.7.2):
|
272
|
-
- PromisesObjC
|
273
|
-
- GoogleUtilities/ISASwizzler (6.7.2)
|
274
|
-
- GoogleUtilities/Logger (6.7.2):
|
275
|
-
- GoogleUtilities/Environment
|
276
|
-
- GoogleUtilities/MethodSwizzler (6.7.2):
|
277
|
-
- GoogleUtilities/Logger
|
278
|
-
- GoogleUtilities/Network (6.7.2):
|
279
|
-
- GoogleUtilities/Logger
|
280
|
-
- "GoogleUtilities/NSData+zlib"
|
281
|
-
- GoogleUtilities/Reachability
|
282
|
-
- "GoogleUtilities/NSData+zlib (6.7.2)"
|
283
|
-
- GoogleUtilities/Reachability (6.7.2):
|
284
|
-
- GoogleUtilities/Logger
|
285
|
-
- GoogleUtilities/UserDefaults (6.7.2):
|
286
|
-
- GoogleUtilities/Logger
|
287
|
-
- "gRPC-C++ (1.28.2)":
|
288
|
-
- "gRPC-C++/Implementation (= 1.28.2)"
|
289
|
-
- "gRPC-C++/Interface (= 1.28.2)"
|
290
|
-
- "gRPC-C++/Implementation (1.28.2)":
|
291
|
-
- abseil/container/inlined_vector
|
292
|
-
- abseil/memory/memory
|
293
|
-
- abseil/strings/str_format
|
294
|
-
- abseil/strings/strings
|
295
|
-
- abseil/types/optional
|
296
|
-
- "gRPC-C++/Interface"
|
297
|
-
- gRPC-Core
|
298
|
-
- "gRPC-C++/Interface (1.28.2)"
|
299
|
-
- gRPC-Core (1.28.2):
|
300
|
-
- gRPC-Core/Implementation (= 1.28.2)
|
301
|
-
- gRPC-Core/Interface (= 1.28.2)
|
302
|
-
- gRPC-Core/Implementation (1.28.2):
|
303
|
-
- abseil/container/inlined_vector
|
304
|
-
- abseil/memory/memory
|
305
|
-
- abseil/strings/str_format
|
306
|
-
- abseil/strings/strings
|
307
|
-
- abseil/types/optional
|
308
|
-
- BoringSSL-GRPC
|
309
|
-
- gRPC-Core/Interface
|
310
|
-
- gRPC-Core/Interface (1.28.2)
|
311
|
-
- GTMSessionFetcher (1.4.0):
|
312
|
-
- GTMSessionFetcher/Core (= 1.4.0)
|
313
|
-
- GTMSessionFetcher/Core (1.4.0)
|
314
|
-
- leveldb-library (1.22)
|
315
|
-
- Loop (1.0.0):
|
316
|
-
- ReactiveSwift
|
317
|
-
- nanopb (1.30905.0)
|
318
|
-
- PromisesObjC (1.2.10)
|
319
|
-
- Protobuf (3.12.0)
|
320
|
-
- ReactiveSwift (6.3.0)
|
321
|
-
|
322
|
-
DEPENDENCIES:
|
323
|
-
- abseil (from `PodBuilder/Prebuilt`)
|
324
|
-
- AFNetworking (from `PodBuilder/Prebuilt`)
|
325
|
-
- Alamofire (from `PodBuilder/Prebuilt`)
|
326
|
-
- BoringSSL-GRPC (from `PodBuilder/Prebuilt`)
|
327
|
-
- Firebase
|
328
|
-
- FirebaseAuth (from `PodBuilder/Prebuilt`)
|
329
|
-
- FirebaseCore (from `PodBuilder/Prebuilt`)
|
330
|
-
- FirebaseCoreDiagnostics (from `PodBuilder/Prebuilt`)
|
331
|
-
- FirebaseCrashlytics (from `PodBuilder/Prebuilt`)
|
332
|
-
- FirebaseDatabase (from `PodBuilder/Prebuilt`)
|
333
|
-
- FirebaseFirestore (from `PodBuilder/Prebuilt`)
|
334
|
-
- FirebaseInstallations (from `PodBuilder/Prebuilt`)
|
335
|
-
- FirebasePerformance
|
336
|
-
- GoogleDataTransport (from `PodBuilder/Prebuilt`)
|
337
|
-
- GoogleUtilities (from `PodBuilder/Prebuilt`)
|
338
|
-
- "gRPC-C++ (from `PodBuilder/Prebuilt`)"
|
339
|
-
- gRPC-Core (from `PodBuilder/Prebuilt`)
|
340
|
-
- GTMSessionFetcher (from `PodBuilder/Prebuilt`)
|
341
|
-
- leveldb-library (from `PodBuilder/Prebuilt`)
|
342
|
-
- Loop (from `PodBuilder/Prebuilt`)
|
343
|
-
- nanopb (from `PodBuilder/Prebuilt`)
|
344
|
-
- PromisesObjC (from `PodBuilder/Prebuilt`)
|
345
|
-
- ReactiveSwift (from `PodBuilder/Prebuilt`)
|
346
|
-
|
347
|
-
SPEC REPOS:
|
348
|
-
trunk:
|
349
|
-
- Firebase
|
350
|
-
- FirebaseABTesting
|
351
|
-
- FirebaseAnalytics
|
352
|
-
- FirebasePerformance
|
353
|
-
- FirebaseRemoteConfig
|
354
|
-
- GoogleAppMeasurement
|
355
|
-
- GoogleToolboxForMac
|
356
|
-
- Protobuf
|
357
|
-
|
358
|
-
EXTERNAL SOURCES:
|
359
|
-
abseil:
|
360
|
-
:path: PodBuilder/Prebuilt
|
361
|
-
AFNetworking:
|
362
|
-
:path: PodBuilder/Prebuilt
|
363
|
-
Alamofire:
|
364
|
-
:path: PodBuilder/Prebuilt
|
365
|
-
BoringSSL-GRPC:
|
366
|
-
:path: PodBuilder/Prebuilt
|
367
|
-
FirebaseAuth:
|
368
|
-
:path: PodBuilder/Prebuilt
|
369
|
-
FirebaseCore:
|
370
|
-
:path: PodBuilder/Prebuilt
|
371
|
-
FirebaseCoreDiagnostics:
|
372
|
-
:path: PodBuilder/Prebuilt
|
373
|
-
FirebaseCrashlytics:
|
374
|
-
:path: PodBuilder/Prebuilt
|
375
|
-
FirebaseDatabase:
|
376
|
-
:path: PodBuilder/Prebuilt
|
377
|
-
FirebaseFirestore:
|
378
|
-
:path: PodBuilder/Prebuilt
|
379
|
-
FirebaseInstallations:
|
380
|
-
:path: PodBuilder/Prebuilt
|
381
|
-
GoogleDataTransport:
|
382
|
-
:path: PodBuilder/Prebuilt
|
383
|
-
GoogleUtilities:
|
384
|
-
:path: PodBuilder/Prebuilt
|
385
|
-
"gRPC-C++":
|
386
|
-
:path: PodBuilder/Prebuilt
|
387
|
-
gRPC-Core:
|
388
|
-
:path: PodBuilder/Prebuilt
|
389
|
-
GTMSessionFetcher:
|
390
|
-
:path: PodBuilder/Prebuilt
|
391
|
-
leveldb-library:
|
392
|
-
:path: PodBuilder/Prebuilt
|
393
|
-
Loop:
|
394
|
-
:path: PodBuilder/Prebuilt
|
395
|
-
nanopb:
|
396
|
-
:path: PodBuilder/Prebuilt
|
397
|
-
PromisesObjC:
|
398
|
-
:path: PodBuilder/Prebuilt
|
399
|
-
ReactiveSwift:
|
400
|
-
:path: PodBuilder/Prebuilt
|
401
|
-
|
402
|
-
SPEC CHECKSUMS:
|
403
|
-
abseil: 38dd06f1a1c46a8077431abb08d5ee08e3c47ddb
|
404
|
-
AFNetworking: 4413b9b5fe93ac8654b0b84ccf268d927c684cf8
|
405
|
-
Alamofire: 673dc236c6eb2b38f3997805638351da69fb3b3b
|
406
|
-
BoringSSL-GRPC: e616d4f8b9c3302a569cac5cce8712f45d399393
|
407
|
-
Firebase: 210f41ca352067d83b1ba4fd2e7fb49a0c017397
|
408
|
-
FirebaseABTesting: 8a9d8df3acc2b43f4a22014ddf9f601bca6af699
|
409
|
-
FirebaseAnalytics: a299a86ef70fcc6aa011418bc65a7e101fb9636c
|
410
|
-
FirebaseAuth: 0f252dcefd8a2bcc91f11c19bb179c7b1c4a966b
|
411
|
-
FirebaseCore: 440bbfb8dbe422fa836f737b1131f86ee38f7498
|
412
|
-
FirebaseCoreDiagnostics: c622773be51517e83265ad3d2fdf000dc5b12ddb
|
413
|
-
FirebaseCrashlytics: 2bef5c583908351eb4b4c3c14f8af129ccd1cefe
|
414
|
-
FirebaseDatabase: 34e8a5276651f75b8a5e2a37bc48348db4444b33
|
415
|
-
FirebaseFirestore: 755532e856e92287ef92dc31a8ad7b8c9feeb8e9
|
416
|
-
FirebaseInstallations: bb5cd0838e04022e80c224dfb99925651cee71ce
|
417
|
-
FirebasePerformance: 269607f1dcf37bb1f21e3b3ae0ab5b2691644c54
|
418
|
-
FirebaseRemoteConfig: e40f9e084658210c4d9c341cfa9f6cab6ad4f67e
|
419
|
-
GoogleAppMeasurement: 3def7652b1f5b5a576178dc332e2a36a260fbef6
|
420
|
-
GoogleDataTransport: 19c92c2a9d5e713d87da1442160466e5b24fb3f9
|
421
|
-
GoogleToolboxForMac: 800648f8b3127618c1b59c7f97684427630c5ea3
|
422
|
-
GoogleUtilities: a758f37ba7789bc7a1d567013514058af72290a7
|
423
|
-
"gRPC-C++": fcc8d30c28d12d34f7508828d4df4b0000926c72
|
424
|
-
gRPC-Core: 258525d016ec9122e18222923ad893c57d603f39
|
425
|
-
GTMSessionFetcher: 11a5534080aacc95b136e1467fe489b90678e86f
|
426
|
-
leveldb-library: 6e04a17147c308f588794d18ae1894fdd4660330
|
427
|
-
Loop: 80d7c063e912c52ad88ea85ed0256697c989c936
|
428
|
-
nanopb: d0d2e64c285be3891c42e84da4266d97f571fe4f
|
429
|
-
PromisesObjC: 3ffeb229291fb0aeb10bbd0d453bcbcf81d9a60a
|
430
|
-
Protobuf: 2793fcd0622a00b546c60e7cbbcc493e043e9bb9
|
431
|
-
ReactiveSwift: d0edd719021696e4307e1de29e7344129766b0af
|
432
|
-
|
433
|
-
PODFILE CHECKSUM: d1f8c6329b352a6e3e7e166ded4c42493ba8908f
|
434
|
-
|
435
|
-
COCOAPODS: 1.9.3
|