Skip to content

Commit

Permalink
Merge pull request #8 from dbgrandi/dbgrandi-patch-1
Browse files Browse the repository at this point in the history
Update .travis.yml
  • Loading branch information
adamkaplan authored Jan 3, 2019
2 parents 09f71ab + 54115c0 commit a604a6c
Show file tree
Hide file tree
Showing 24 changed files with 477 additions and 468 deletions.
11 changes: 7 additions & 4 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,12 @@
language: objective-c
os: osx
osx_image: xcode10.1
before_install:
- export LANG=en_US.UTF-8
- bundle install
- pod install --project-directory=Example
script:
- set -o pipefail
- xcodebuild -workspace Example/DBGHTMLEntitiesExample.xcworkspace -scheme DBGHTMLEntitiesExample -sdk iphonesimulator -configuration Debug test -destination platform='iOS Simulator',OS='10.0',name='iPhone 7' | xcpretty -c
- pod lib lint
xcode_workspace: Example/DBGHTMLEntitiesExample.xcworkspace
xcode_scheme: DBGHTMLEntitiesExample
xcode_destination: platform=iOS Simulator,OS=11.4,name=iPhone X
after_success:
- pod lib lint --quick
170 changes: 105 additions & 65 deletions Example/DBGHTMLEntitiesExample.xcodeproj/project.pbxproj

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<Scheme
LastUpgradeVersion = "0920"
LastUpgradeVersion = "1010"
version = "1.3">
<BuildAction
parallelizeBuildables = "YES"
Expand Down Expand Up @@ -40,7 +40,6 @@
buildConfiguration = "Debug"
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
language = ""
shouldUseLaunchSchemeArgsEnv = "YES">
<Testables>
<TestableReference
Expand Down Expand Up @@ -70,7 +69,6 @@
buildConfiguration = "Debug"
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
language = ""
launchStyle = "0"
useCustomWorkingDirectory = "NO"
ignoresPersistentStateOnLaunch = "NO"
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict/>
</plist>
8 changes: 4 additions & 4 deletions Example/DBGHTMLEntitiesExample/DBGAppDelegate.m
Original file line number Diff line number Diff line change
Expand Up @@ -7,18 +7,18 @@
//

#import "DBGAppDelegate.h"
#import "DBGPageViewController.h"
#import "DBGExampleViewController.h"

@implementation DBGAppDelegate

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
application.statusBarHidden = YES;

self.window = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]];
self.window.backgroundColor = [UIColor blackColor];
self.window = [[UIWindow alloc] initWithFrame:UIScreen.mainScreen.bounds];
self.window.backgroundColor = UIColor.blackColor;

self.window.rootViewController = [[DBGPageViewController alloc] init];
self.window.rootViewController = [DBGExampleViewController new];

[self.window makeKeyAndVisible];
return YES;
Expand Down
93 changes: 0 additions & 93 deletions Example/DBGHTMLEntitiesExample/DBGDecodeExampleViewController.m

This file was deleted.

11 changes: 0 additions & 11 deletions Example/DBGHTMLEntitiesExample/DBGEncodeExampleViewController.h

This file was deleted.

116 changes: 0 additions & 116 deletions Example/DBGHTMLEntitiesExample/DBGEncodeExampleViewController.m

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@
// Copyright (c) 2014 David Grandinetti. All rights reserved.
//

@interface DBGDecodeExampleViewController : UIViewController
@interface DBGExampleViewController : UIViewController

@end
Loading

0 comments on commit a604a6c

Please sign in to comment.