This repository has been archived by the owner on Mar 10, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #24 from nodes-ios/feature/CocoaPods
Feature/cocoa pods
- Loading branch information
Showing
2 changed files
with
25 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
|
||
Pod::Spec.new do |spec| | ||
spec.name = "QRIO" | ||
spec.version = "3.0.1" | ||
|
||
spec.summary = "Lightweight framework for QR scanning and generation." | ||
spec.homepage = "https://github.com/nodes-ios/QRIO" | ||
spec.license = { :type => "MIT", :file => "LICENSE" } | ||
spec.author = { "Nodes Agency - iOS" => "[email protected]" } | ||
|
||
spec.platform = :ios, "9.0" | ||
spec.swift_version = '5.0' | ||
spec.source = { :git => "https://github.com/nodes-ios/QRIO.git", :tag => "#{spec.version}" } | ||
|
||
spec.subspec 'QRIO' do |subspec| | ||
subspec.ios.source_files = 'QRIO/**/*.swift' | ||
end | ||
|
||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters