vipergeng 0.2.16 → 0.2.17
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
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 9deb198d2f629199865a13a322f19f0de67d1e71
|
4
|
+
data.tar.gz: b19f29cf98cc8535c12636f39119c7bd69432223
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f47b04cbf34145ed75692ab80a7ebbe7df7ff036be3e0031d8c0f2377e2c6055f1f1c8e06c2ccd8b8ea2ee47178d24fdf97eb95b63c81a425287a740c821078f
|
7
|
+
data.tar.gz: 25917bd4688b9682e3e2a52946ce2eae5ea43c71363e26fe5d355424dccbf6c5125baf66682da512dadbd6c4aedad914f188801530d1f79177bf0904facd04f8
|
@@ -6,14 +6,14 @@
|
|
6
6
|
// Copyright © ___YEAR___ ___ORGANIZATIONNAME___. All rights reserved.
|
7
7
|
//
|
8
8
|
|
9
|
-
import
|
9
|
+
import UIKit
|
10
10
|
|
11
11
|
class VIPERWireFrame: VIPERWireFrameProtocol {
|
12
12
|
|
13
13
|
static func presentVIPERModule(fromView: AnyObject) {
|
14
14
|
|
15
15
|
// Generating module components
|
16
|
-
let viewController =
|
16
|
+
let viewController = storyboard.instantiateViewController(withIdentifier: "VIPERViewController")
|
17
17
|
if let view = viewController as? VIPERViewController {
|
18
18
|
let presenter: VIPERPresenterProtocol & VIPERInteractorOutputProtocol = VIPERPresenter()
|
19
19
|
let interactor: VIPERInteractorInputProtocol = VIPERInteractor()
|
data/lib/vipergen/version.rb
CHANGED