Skip to content
This repository was archived by the owner on Feb 22, 2019. It is now read-only.
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,11 @@ Using `@with`, this would be

Download [`VARMacros.h`][file], add to your Xcode project, and `#import`.

A CocoaPod is on the way, or feel free to create one & pull request.
Using **CocoaPods**

```
pod 'libvarobjc', '~> 1.0'
```

# Questions, objections, ...

Expand Down
10 changes: 10 additions & 0 deletions libvarobjc.podspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
Pod::Spec.new do |spec|
spec.name = 'libvarobjc'
spec.version = '1.0.0'
spec.license = { :type => 'MIT' }
spec.homepage = 'https://github.com/claybridges/libvarobjc'
spec.authors = { 'Luca DAlberti' => '[email protected]' }
spec.summary = 'A tiny library of Objective-C macros to aid concision, @morph, @var and @with. In use, code completion and Xcode indentation work sanely.'
spec.source = { :git => 'https://github.com/dalu93/libvarobjc.git', :tag => '1.0.0' }
spec.source_files = 'varobjc/VARMacros.h'
end