Skip to content
This repository has been archived by the owner on Mar 31, 2020. It is now read-only.

Commit

Permalink
Use Carthage and Swiftify the rest of Coins.app
Browse files Browse the repository at this point in the history
CoinsKit and CoinsToday are still mainly Objective-C. That's fine for now.
  • Loading branch information
soffes committed Nov 26, 2014
1 parent a40bb48 commit 17d5fdf
Show file tree
Hide file tree
Showing 32 changed files with 1,030 additions and 729 deletions.
4 changes: 2 additions & 2 deletions .gitignore
@@ -1,9 +1,9 @@
.DS_Store
*xcuserdata/
*build/
*.mode1v3
*.pbxuser
*.moved-aside/
DerivedData
Pods
xcshareddata
Carthage.build
Carthage.checkout
1 change: 1 addition & 0 deletions Cartfile
@@ -0,0 +1 @@
github "soffes/GradientView"
1 change: 1 addition & 0 deletions Cartfile.lock
@@ -0,0 +1 @@
github "soffes/GradientView" "v2.0"
2 changes: 1 addition & 1 deletion Coins Today/Classes/BTCTodayValueView.h
Expand Up @@ -6,7 +6,7 @@
// Copyright (c) 2014 Nothing Magical, Inc. All rights reserved.
//

#import "BTCValueView.h"
@import CoinsKit;

@interface BTCTodayValueView : BTCValueView
@end
2 changes: 1 addition & 1 deletion Coins Today/Classes/BTCTodayViewController.m
Expand Up @@ -9,7 +9,7 @@
#import "BTCTodayViewController.h"
#import "BTCTodayValueView.h"

#import "CoinsKit.h"
@import CoinsKit;

@import NotificationCenter;

Expand Down
474 changes: 420 additions & 54 deletions Coins.xcodeproj/project.pbxproj

Large diffs are not rendered by default.

3 changes: 2 additions & 1 deletion Coins/Classes/AppDelegate.swift
Expand Up @@ -7,6 +7,7 @@
//

import UIKit
import CoinsKit

@UIApplicationMain
class AppDelegate: UIResponder, UIApplicationDelegate {
Expand Down Expand Up @@ -71,7 +72,7 @@ class AppDelegate: UIResponder, UIApplicationDelegate {
BITHockeyManager.sharedHockeyManager().startManager()
BITHockeyManager.sharedHockeyManager().authenticator.authenticateInstallation()

// LLStartSession("987380b36bedad08c8468c1-1e2d6372-7443-11e3-1898-004a77f8b47f")
LLStartSession("987380b36bedad08c8468c1-1e2d6372-7443-11e3-1898-004a77f8b47f")

application.statusBarStyle = .LightContent
application.setMinimumBackgroundFetchInterval(UIApplicationBackgroundFetchIntervalMinimum)
Expand Down
10 changes: 0 additions & 10 deletions Coins/Classes/BTCValueViewController.h

This file was deleted.

0 comments on commit 17d5fdf

Please sign in to comment.