Skip to content

Commit

Permalink
Fixup project, update README and guides
Browse files Browse the repository at this point in the history
Summary:
- Fix OCMock issues with tvOS tests
- Update README/guides
Closes #737

Differential Revision: D5052333

Pulled By: jessesquires

fbshipit-source-id: 958444d892c14dd4c75e244f20ae21bbfeec8290
  • Loading branch information
jessesquires authored and facebook-github-bot committed May 12, 2017
1 parent 32a566d commit 9d102b9
Show file tree
Hide file tree
Showing 25 changed files with 888 additions and 523 deletions.
6 changes: 3 additions & 3 deletions Guides/Installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ The preferred method of installation for `IGListKit` is using [CocoaPods](https:
In order to use the latest release of the framework, add the following to your `Podfile`:

```ruby
pod 'IGListKit', '~> 3.0.0'
pod 'IGListKit', '~> 3.0'
```

### Using `master`
Expand All @@ -29,7 +29,7 @@ With the exception of `macOS` (which currently only supports the diffing algorit
However, if you only want to use the diffing components of this library, then you can use the diffing subspec in your `Podfile`:

```ruby
pod 'IGListKit/Diffing', '~> 3.0.0'
pod 'IGListKit/Diffing', '~> 3.0'
```

Regardless of whether you only use the diffing components, or the entire library, the imports are the same:
Expand All @@ -43,5 +43,5 @@ import IGListKit
If using [Carthage](https://github.com/Carthage/Carthage), add the following to your `Cartfile`:

```ogdl
github "Instagram/IGListKit" ~> 3.0.0
github "Instagram/IGListKit" ~> 3.0
```
1 change: 0 additions & 1 deletion Podfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
source 'https://github.com/CocoaPods/Specs.git'
use_frameworks!
platform :ios, '8.0'

workspace 'IGListKit'

Expand Down
2 changes: 1 addition & 1 deletion Podfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@ DEPENDENCIES:
SPEC CHECKSUMS:
OCMock: 35ae71d6a8fcc1b59434d561d1520b9dd4f15765

PODFILE CHECKSUM: c1d61b6e03649cc2671f4ec29d6e8fb07238b6de
PODFILE CHECKSUM: b27692418c91f87e51125b014298a4f9372c5441

COCOAPODS: 1.2.1
2 changes: 1 addition & 1 deletion Pods/Manifest.lock

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

1,274 changes: 778 additions & 496 deletions Pods/Pods.xcodeproj/project.pbxproj

Large diffs are not rendered by default.

File renamed without changes.
5 changes: 5 additions & 0 deletions Pods/Target Support Files/OCMock-iOS/OCMock-iOS-dummy.m

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.

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

26 changes: 26 additions & 0 deletions Pods/Target Support Files/OCMock-tvOS/Info.plist

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

5 changes: 5 additions & 0 deletions Pods/Target Support Files/OCMock-tvOS/OCMock-tvOS-dummy.m

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

12 changes: 12 additions & 0 deletions Pods/Target Support Files/OCMock-tvOS/OCMock-tvOS-prefix.pch

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

26 changes: 26 additions & 0 deletions Pods/Target Support Files/OCMock-tvOS/OCMock-tvOS-umbrella.h

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

6 changes: 6 additions & 0 deletions Pods/Target Support Files/OCMock-tvOS/OCMock-tvOS.modulemap

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

9 changes: 9 additions & 0 deletions Pods/Target Support Files/OCMock-tvOS/OCMock-tvOS.xcconfig

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

5 changes: 0 additions & 5 deletions Pods/Target Support Files/OCMock/OCMock-dummy.m

This file was deleted.

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.

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.

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.

4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,15 +59,15 @@ We use the open source version `master` branch in the Instagram app.
The preferred installation method is with [CocoaPods](https://cocoapods.org). Add the following to your `Podfile`:

```ruby
pod 'IGListKit', '~> 3.0.0'
pod 'IGListKit', '~> 3.0'
```

### Carthage

For [Carthage](https://github.com/Carthage/Carthage), add the following to your `Cartfile`:

```ogdl
github "Instagram/IGListKit" ~> 3.0.0
github "Instagram/IGListKit" ~> 3.0
```

> For advanced usage, see our [Installation Guide](https://instagram.github.io/IGListKit/installation.html).
Expand Down

0 comments on commit 9d102b9

Please sign in to comment.