From b98c50bdf90062149d6b5b10476c228c8d54e529 Mon Sep 17 00:00:00 2001 From: Jorge Ovalle Date: Mon, 1 Jul 2019 20:23:07 -0500 Subject: [PATCH 1/5] Add new badges and update license --- LICENSE | 2 +- README.md | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/LICENSE b/LICENSE index 9274c8b..94151de 100644 --- a/LICENSE +++ b/LICENSE @@ -1,4 +1,4 @@ -Copyright (c) 2018 lojals +Copyright (c) 2019 Wizeline Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/README.md b/README.md index e141053..ae37a07 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,9 @@ ![WLEmptyState_Banner](https://user-images.githubusercontent.com/6756995/55449438-bf01f300-5588-11e9-9c0d-dd48bd5babb4.png) [![Build Status](https://travis-ci.org/wizeline/WLEmptyState.svg?branch=develop)](https://travis-ci.org/wizeline/WLEmptyState) [![Version](https://img.shields.io/cocoapods/v/WLEmptyState.svg?style=flat)](https://cocoapods.org/pods/WLEmptyState) +[![Carthage compatible](https://img.shields.io/badge/Carthage-compatible-4BC51D.svg?style=flat)](https://github.com/Carthage/Carthage) [![Twitter](https://img.shields.io/twitter/follow/theWizeline.svg?label=Wizeline%20&style=flat)](http://twitter.com/thewizeline) +[![MIT license](http://img.shields.io/badge/license-MIT-brightgreen.svg)](http://opensource.org/licenses/MIT) ## Table of Content From 0502e93da871ad640ecdafe07edd78e0f1d8612d Mon Sep 17 00:00:00 2001 From: Jorge Ovalle Date: Mon, 1 Jul 2019 20:29:47 -0500 Subject: [PATCH 2/5] Update podspec version --- WLEmptyState.podspec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/WLEmptyState.podspec b/WLEmptyState.podspec index a29fc3f..1fa507a 100644 --- a/WLEmptyState.podspec +++ b/WLEmptyState.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = 'WLEmptyState' - s.version = '1.0.2' + s.version = '2.0.0' s.summary = 'Custom view for Empty states on tables or collection entities' s.description = 'A control to display a place holder in case there\'s no data on a UITableView or UICollectionView' From 19ab6a224738b06d152f7a9758ae53f3680550b6 Mon Sep 17 00:00:00 2001 From: Jorge Ovalle Date: Tue, 2 Jul 2019 13:13:37 -0500 Subject: [PATCH 3/5] Add carthage instructions in Readme --- README.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/README.md b/README.md index ae37a07..03c9ab0 100644 --- a/README.md +++ b/README.md @@ -35,12 +35,20 @@ To run the `Example` project: ### Installing WLEmptyState +#### CocoaPods + WLEmptyState is available through [CocoaPods](https://cocoapods.org). To install it, add the following command to your Podfile: ```ruby pod 'WLEmptyState' ``` +#### Carthage + +Carthage is a decentralized dependency manager that builds your dependencies and provides you with binary frameworks. To integrate WLEmptyState into your Xcode project using Carthage, specify it in your Cartfile: + +github "wizeline/WLEmptyState" + ### Configuring WLEmptyState The WLEmptyState component uses [Method Swizzling](https://nshipster.com/method-swizzling/). Therefore, to configure `WLEmptyState`, follow these steps: From a490fdd8294ca40afcc8e7266af0ad72a551f5bf Mon Sep 17 00:00:00 2001 From: Jorge Ovalle Date: Tue, 2 Jul 2019 13:15:18 -0500 Subject: [PATCH 4/5] Improve readme command --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index 03c9ab0..d1f747a 100644 --- a/README.md +++ b/README.md @@ -47,7 +47,9 @@ pod 'WLEmptyState' Carthage is a decentralized dependency manager that builds your dependencies and provides you with binary frameworks. To integrate WLEmptyState into your Xcode project using Carthage, specify it in your Cartfile: +```ruby github "wizeline/WLEmptyState" +``` ### Configuring WLEmptyState From a92bf0d8f4555831801bf770fbffd7cb39b548d8 Mon Sep 17 00:00:00 2001 From: Jorge Ovalle Date: Tue, 2 Jul 2019 13:58:31 -0500 Subject: [PATCH 5/5] Add link for carthage --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index d1f747a..4555322 100644 --- a/README.md +++ b/README.md @@ -45,7 +45,7 @@ pod 'WLEmptyState' #### Carthage -Carthage is a decentralized dependency manager that builds your dependencies and provides you with binary frameworks. To integrate WLEmptyState into your Xcode project using Carthage, specify it in your Cartfile: +[Carthage](https://github.com/Carthage/Carthage) is a decentralized dependency manager that builds your dependencies and provides you with binary frameworks. To integrate WLEmptyState into your Xcode project using Carthage, specify it in your Cartfile: ```ruby github "wizeline/WLEmptyState"