Skip to content

Commit

Permalink
Renamed project
Browse files Browse the repository at this point in the history
  • Loading branch information
ThibaultKlein committed Nov 21, 2016
1 parent 69eb737 commit 6c023dd
Show file tree
Hide file tree
Showing 18 changed files with 602 additions and 540 deletions.
8 changes: 4 additions & 4 deletions Atlas.podspec → AddressGeocoder.podspec
Original file line number Diff line number Diff line change
@@ -1,24 +1,24 @@
#
# Be sure to run `pod lib lint Atlas.podspec' to ensure this is a
# Be sure to run `pod lib lint AddressGeocoder.podspec' to ensure this is a
# valid spec before submitting.
#
# Any lines starting with a # are optional, but their use is encouraged
# To learn more about a Podspec see http://guides.cocoapods.org/syntax/podspec.html
#

Pod::Spec.new do |s|
s.name = "Atlas"
s.name = "AddressGeocoder"
s.version = "0.0.1"
s.summary = "Geocoding Helper"

s.description = <<-DESC
Geocoding helper. Can provide a locality and state based on a ZIP code.
DESC

s.homepage = "https://github.com/prolificinteractive/Atlas"
s.homepage = "https://github.com/prolificinteractive/AddressGeocoder"
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { "Thibault Klein" => "thibault@prolificinteractive.com" }
s.source = { :git => "https://github.com/prolificinteractive/Atlas.git", :tag => s.version.to_s }
s.source = { :git => "https://github.com/prolificinteractive/AddressGeocoder.git", :tag => s.version.to_s }

s.platform = :ios, '9.0'
s.requires_arc = true
Expand Down
556 changes: 556 additions & 0 deletions Example/AddressGeocoderExample.xcodeproj/project.pbxproj

Large diffs are not rendered by default.

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

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

Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
//
// AppDelegate.swift
// Atlas
// AddressGeocoderExample
//
// Created by Thibault Klein on 11/21/16.
// Copyright © 2016 Prolific Interactive. All rights reserved.
Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
//
// ViewController.swift
// Atlas
// AddressGeocoderExample
//
// Created by Thibault Klein on 11/21/16.
// Copyright © 2016 Prolific Interactive. All rights reserved.
//

import Atlas
import AddressGeocoder
import Result
import UIKit

Expand Down Expand Up @@ -34,5 +34,5 @@ class ViewController: UIViewController, Geocodable {
}
})
}

}
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
//
// AtlasTests.swift
// AtlasTests
// AddressGeocoderExampleTests.swift
// AddressGeocoderExampleTests
//
// Created by Thibault Klein on 11/21/16.
// Copyright © 2016 Prolific Interactive. All rights reserved.
//

import XCTest
@testable import Atlas
@testable import AddressGeocoderExample

class AtlasTests: XCTestCase {
class AddressGeocoderExampleTests: XCTestCase {

override func setUp() {
super.setUp()
Expand Down
File renamed without changes.
Loading

0 comments on commit 6c023dd

Please sign in to comment.