Skip to content
This repository has been archived by the owner on Jan 14, 2021. It is now read-only.

Commit

Permalink
Fix Podspec, bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
bahlo committed Oct 23, 2016
1 parent f902471 commit d263253
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 17 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ platform :ios, '9.0'
use_frameworks!

target '<Your Target Name>' do
pod 'SwiftGifOrigin', '~> 1.6'
pod 'SwiftGifOrigin', '~> 1.6.1'
end
```

Expand All @@ -49,7 +49,7 @@ brew install carthage
Add the following line to your `Cartfile` to add SwiftGif:

```ogdl
github "bahlo/SwiftGif" ~> 1.6
github "bahlo/SwiftGif" ~> 1.6.1
```

Run `carthage update` to build the framework and drag the built
Expand Down
26 changes: 11 additions & 15 deletions SwiftGifOrigin.podspec
Original file line number Diff line number Diff line change
@@ -1,18 +1,14 @@
Pod::Spec.new do |s|
s.name = 'SwiftGifOrigin'
s.version = '1.6'
s.summary = 'A small UIImage extension with gif support'
s.homepage = 'https://github.com/bahlo/SwiftGif'
s.license = 'MIT'
s.author = { 'Arne Bahlo': '[email protected]' }
Pod::Spec.new do |spec|
spec.name = 'SwiftGifOrigin'
spec.version = '1.6.1'
spec.license = { 'type' => 'MIT' }
spec.homepage = 'https://github.com/bahlo/SwiftGif'
spec.authors = { 'Arne Bahlo' => '[email protected]' }
spec.summary = 'A small UIImage extension with gif support'
spec.source = { git: 'https://github.com/bahlo/SwiftGif.git', tag: 'v1.6.1' }

s.ios.deployment_target = '8.0'
s.tvos.deployment_target = '9.0'
spec.ios.deployment_target = '8.0'
spec.tvos.deployment_target = '9.0'

s.source = {
git: 'https://github.com/bahlo/SwiftGif.git',
tag: 'v1.6'
}

s.source_files = 'SwiftGifCommon/*.swift'
spec.source_files = 'SwiftGifCommon/*.swift'
end

0 comments on commit d263253

Please sign in to comment.