Skip to content
This repository has been archived by the owner on Mar 10, 2022. It is now read-only.

Commit

Permalink
Merge pull request #24 from nodes-ios/feature/CocoaPods
Browse files Browse the repository at this point in the history
Feature/cocoa pods
  • Loading branch information
mariusc authored Sep 17, 2020
2 parents 2bc9a02 + 1f913fd commit 9ccae69
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 1 deletion.
19 changes: 19 additions & 0 deletions QRIO.podspec
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
7 changes: 6 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Lightweight framework for QR scanning and generation

## 📝 Requirements

* iOS 8.0+
* iOS 9.0+

## 📦 Installation

Expand All @@ -13,6 +13,11 @@ Lightweight framework for QR scanning and generation
github "nodes-ios/QRIO"
~~~

### Cocoa Pods
~~~
pod "QRIO"
~~~

## 💻 Usage
**Creating a QR Code:**

Expand Down

0 comments on commit 9ccae69

Please sign in to comment.