Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Rename to ListableUI #211

Merged
merged 5 commits into from
Sep 25, 2020
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
10 changes: 5 additions & 5 deletions BlueprintLists.podspec → BlueprintUILists.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@

Pod::Spec.new do |s|
s.name = 'BlueprintLists'
s.name = 'BlueprintUILists'
s.version = '0.9.0'
s.summary = 'Declarative list views for iOS apps that deploy back to iOS 11.0.'
s.homepage = 'https://github.com/kyleve/Listable'
Expand All @@ -12,14 +12,14 @@ Pod::Spec.new do |s|

s.swift_versions = ['5.0']

s.dependency 'Listable'
s.dependency 'ListableUI'
s.dependency 'BlueprintUI'

s.source_files = 'BlueprintLists/Sources/**/*.{swift}'
s.source_files = 'BlueprintUILists/Sources/**/*.{swift}'

s.test_spec 'Tests' do |test_spec|
test_spec.source_files = 'BlueprintLists/Tests/**/*.{swift}'
test_spec.resources = 'BlueprintLists/Tests/Resources/**/*'
test_spec.source_files = 'BlueprintUILists/Tests/**/*.{swift}'
test_spec.ios.resource_bundle = { 'BlueprintUIListsResources' => 'BlueprintUILists/Tests/Resources/**/*.*' }

test_spec.framework = 'XCTest'

Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
//
// BlueprintHeaderFooterContent.swift
// BlueprintLists
// BlueprintUILists
//
// Created by Kyle Van Essen on 10/22/19.
//

import BlueprintUI
import Listable
import ListableUI


/// Alias to allow less verbose creation of headers.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
//
// BlueprintItemContent.swift
// BlueprintLists
// BlueprintUILists
//
// Created by Kyle Van Essen on 10/22/19.
//

import BlueprintUI
import Listable
import ListableUI


///
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
//
// Deprecations.swift
// BlueprintLists
// BlueprintUILists
//
// Created by Kyle Van Essen on 5/29/20.
//
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,4 @@
///

@_exported import BlueprintUI
@_exported import Listable
@_exported import ListableUI
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
//
// List.swift
// BlueprintLists
// BlueprintUILists
//
// Created by Kyle Van Essen on 10/22/19.
//

import BlueprintUI

import Listable
import ListableUI


///
Expand Down
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
//
// ListReorderGesture.swift
// BlueprintLists
// BlueprintUILists
//
// Created by Kyle Van Essen on 11/14/19.
//

import BlueprintUI
import Listable
import ListableUI


///
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
//
// Tests.swift
// Listable
// ListableUI
//
// Created by Kyle Van Essen on 6/17/19.
//
Expand Down
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@

- [`isEmpty` on `Content` and `Section` have been replaced with `contains(any:)`](https://github.com/kyleve/Listable/pull/197), which allows more granular comparison of the content in the whole list and in individual sections, respectively. This allows you to check if the list or sections contain headers, footers, items, all, or some combination of them.

- Listable has been [renamed to ListableUI](https://github.com/kyleve/Listable/pull/211/), and BlueprintLists is now named BlueprintUILists. This is done to be more consistent with other Square UI libraries, and to avoid a conflict with an existing published Cocoapod, also named Listable.

### Misc

# Past Releases
Expand Down
12 changes: 6 additions & 6 deletions Demo/Demo.xcodeproj/xcshareddata/xcschemes/Demo.xcscheme
Original file line number Diff line number Diff line change
Expand Up @@ -70,19 +70,19 @@
skipped = "NO">
<BuildableReference
BuildableIdentifier = "primary"
BlueprintIdentifier = "FEDB08DE1F9CE90D4A66BB17EA1E00F3"
BuildableName = "BlueprintLists-Unit-Tests.xctest"
BlueprintName = "BlueprintLists-Unit-Tests"
BlueprintIdentifier = "2574E40016CF80218A67E4254FA74D9A"
BuildableName = "BlueprintUILists-Unit-Tests.xctest"
BlueprintName = "BlueprintUILists-Unit-Tests"
ReferencedContainer = "container:../Pods/Pods.xcodeproj">
</BuildableReference>
</TestableReference>
<TestableReference
skipped = "NO">
<BuildableReference
BuildableIdentifier = "primary"
BlueprintIdentifier = "04099BB01E02215D58299914B20C8D1B"
BuildableName = "Listable-Unit-Tests.xctest"
BlueprintName = "Listable-Unit-Tests"
BlueprintIdentifier = "FE995140B25147403F401CCAA5BEB178"
BuildableName = "ListableUI-Unit-Tests.xctest"
BlueprintName = "ListableUI-Unit-Tests"
ReferencedContainer = "container:../Pods/Pods.xcodeproj">
</BuildableReference>
</TestableReference>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
//


import BlueprintLists
import BlueprintUILists
import BlueprintUICommonControls


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@

import UIKit

import Listable
import BlueprintLists
import ListableUI
import BlueprintUILists
import BlueprintUI
import BlueprintUICommonControls

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
// Copyright © 2019 Kyle Van Essen. All rights reserved.
//

import Listable
import BlueprintLists
import ListableUI
import BlueprintUILists
import BlueprintUI
import BlueprintUICommonControls

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
// Copyright © 2019 Kyle Van Essen. All rights reserved.
//

import Listable
import BlueprintLists
import ListableUI
import BlueprintUILists
import BlueprintUI
import BlueprintUICommonControls

Expand Down
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
//
// CollectionViewBasicDemoViewController.swift
// Listable-DemoApp
// ListableUI-DemoApp
//
// Created by Kyle Van Essen on 7/9/19.
//

import UIKit

import Listable
import BlueprintLists
import ListableUI
import BlueprintUILists


final class CollectionViewBasicDemoViewController : UIViewController
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
//

import UIKit
import Listable
import BlueprintLists
import ListableUI
import BlueprintUILists
import BlueprintUI
import BlueprintUICommonControls
import EnglishDictionary
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
// Copyright © 2020 Kyle Van Essen. All rights reserved.
//

import BlueprintLists
import BlueprintUILists
import BlueprintUICommonControls


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@

import UIKit

import Listable
import BlueprintLists
import ListableUI
import BlueprintUILists
import BlueprintUI
import BlueprintUICommonControls

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@
//

import UIKit
import Listable
import ListableUI
import BlueprintUI
import BlueprintUICommonControls
import BlueprintLists
import BlueprintUILists


final class HorizontalLayoutViewController : UIViewController
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@
//

import UIKit
import Listable
import BlueprintLists
import ListableUI
import BlueprintUILists
import BlueprintUI
import BlueprintUICommonControls

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
//

import Foundation
import BlueprintLists
import BlueprintUILists


final class ItemInsertAndRemoveAnimationsViewController : ListViewController
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@
// Copyright © 2019 Kyle Van Essen. All rights reserved.
//

import BlueprintLists
import BlueprintUILists
import BlueprintUI
import BlueprintUICommonControls

import Listable
import ListableUI


final class ItemizationEditorViewController : UIViewController
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@
//

import UIKit
import Listable
import BlueprintLists
import ListableUI
import BlueprintUILists
import BlueprintUI
import BlueprintUICommonControls

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
//

import UIKit
import BlueprintLists
import BlueprintUILists
import BlueprintUICommonControls


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
// Copyright © 2020 Kyle Van Essen. All rights reserved.
//

import BlueprintLists
import BlueprintUILists
import BlueprintUICommonControls
import Combine

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
// Copyright © 2020 Kyle Van Essen. All rights reserved.
//

import Listable
import ListableUI
import UIKit


Expand Down
2 changes: 1 addition & 1 deletion Demo/Sources/Demos/Demo Screens/PagedViewController.swift
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
// Copyright © 2020 Kyle Van Essen. All rights reserved.
//

import BlueprintLists
import BlueprintUILists
import BlueprintUICommonControls


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@

import UIKit

import Listable
import BlueprintLists
import ListableUI
import BlueprintUILists
import BlueprintUI
import BlueprintUICommonControls

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
//

import UIKit
import Listable
import ListableUI


final class ScrollViewEdgesPlaygroundViewController : UIViewController, UIScrollViewDelegate
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@


import UIKit
import Listable
import ListableUI
import BlueprintUI
import BlueprintUICommonControls
import BlueprintLists
import BlueprintUILists


final class SpacingCustomizationViewController : UIViewController
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
// Created by Kyle Van Essen on 3/24/20.
// Copyright © 2020 Kyle Van Essen. All rights reserved.
//
import Listable
import BlueprintLists
import ListableUI
import BlueprintUILists
import BlueprintUI
import BlueprintUICommonControls
import UIKit
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@


import UIKit
import Listable
import ListableUI
import BlueprintUI
import BlueprintUICommonControls
import BlueprintLists
import BlueprintUILists


final class WidthCustomizationViewController : UIViewController
Expand Down
2 changes: 1 addition & 1 deletion Demo/Sources/Demos/DemosRootViewController.swift
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
//

import UIKit
import Listable
import ListableUI


public final class DemosRootViewController : ListViewController
Expand Down
Loading