Skip to content

Commit

Permalink
Rename ARBarCharts to ARCharts
Browse files Browse the repository at this point in the history
  • Loading branch information
Boris-Em committed Jul 18, 2017
1 parent 6ff448a commit 999587d
Show file tree
Hide file tree
Showing 14 changed files with 90 additions and 87 deletions.
19 changes: 0 additions & 19 deletions ARBarCharts/ARBarCharts.h

This file was deleted.

File renamed without changes.
Expand Up @@ -6,6 +6,8 @@
// Copyright © 2017 Boris Emorine. All rights reserved.
//

import UIKit

/**
* The `ARBarChartsDataSource` protocol is adopted by an object that mediates the application's data model for an `ARBarChart` object.
* The data source proves the bar chart object with the information it needs to construct and modify a bar chart.
Expand Down
19 changes: 19 additions & 0 deletions ARCharts/ARCharts.h
@@ -0,0 +1,19 @@
//
// ARCharts.h
// ARCharts
//
// Created by Bobo on 7/15/17.
// Copyright © 2017 Boris Emorine. All rights reserved.
//

#import <UIKit/UIKit.h>

//! Project version number for ARCharts.
FOUNDATION_EXPORT double ARChartsVersionNumber;

//! Project version string for ARCharts.
FOUNDATION_EXPORT const unsigned char ARChartsVersionString[];

// In this header, you should import all the public headers of your framework using statements like #import <ARCharts/PublicHeader.h>


Expand Up @@ -7,6 +7,7 @@
//

import Foundation
import UIKit

/**
* The `ARDataSeries` object is used as a convenience to easily create bar charts with `ARBarcharts`.
Expand All @@ -21,7 +22,7 @@ public class ARDataSeries: ARBarChartsDataSource, ARBarChartsDelegate {

private let values: [[Double]]

public required init(withValues values: [[Double]], barChart: ARBarChartNode) {
public required init(withValues values: [[Double]], barChart: ARBarChart) {
self.values = values
barChart.dataSource = self
barChart.delegate = self
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion ARBarCharts/Int+random.swift → ARCharts/Int+random.swift
@@ -1,6 +1,6 @@
//
// Int+random.swift
// ARBarCharts
// ARCharts
//
// Created by Christopher Chute on 7/17/17.
// Copyright © 2017 Boris Emorine. All rights reserved.
Expand Down

Large diffs are not rendered by default.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Expand Up @@ -7,7 +7,7 @@
//

import XCTest
@testable import ARBarCharts
@testable import ARCharts

class ARBarChartsTests: XCTestCase {

Expand Down
File renamed without changes.
4 changes: 2 additions & 2 deletions SampleApp/ViewController+ARBarChartDataSource.swift
@@ -1,12 +1,12 @@
//
// ViewController+ARBarChartDataSource.swift
// ARBarChartsSampleApp
// ARChartsSampleApp
//
// Created by Christopher Chute on 7/16/17.
// Copyright © 2017 Boris Emorine. All rights reserved.
//

import ARBarCharts
import ARCharts
import UIKit

// Implements ARBarChartsDataSource protocol for the Fruit Sales sample data set.
Expand Down
2 changes: 1 addition & 1 deletion SampleApp/ViewController+ARBarChartDelegate.swift
Expand Up @@ -6,7 +6,7 @@
// Copyright © 2017 Boris Emorine. All rights reserved.
//

import ARBarCharts
import ARCharts
import UIKit

// Implements ARBarChartsDelegate protocol for the Fruit Sales sample data set.
Expand Down
4 changes: 2 additions & 2 deletions SampleApp/ViewController.swift
@@ -1,12 +1,12 @@
//
// ViewController.swift
// ARBarCharts
// ARCharts
//
// Created by Bobo on 7/5/17.
// Copyright © 2017 Boris Emorine. All rights reserved.
//

import ARBarCharts
import ARCharts
import ARKit
import SceneKit
import UIKit
Expand Down

0 comments on commit 999587d

Please sign in to comment.