forked from aschuch/QRCode
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathQRCode.podspec
More file actions
14 lines (14 loc) · 758 Bytes
/
QRCode.podspec
File metadata and controls
14 lines (14 loc) · 758 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
Pod::Spec.new do |s|
s.name = "QRCode"
s.version = "0.5"
s.summary = "A QRCode generator written in Swift."
s.description = "Generate QRCodes and customize their appearance."
s.homepage = "https://github.com/aschuch/QRCode"
s.license = { :type => "MIT", :file => "LICENSE" }
s.author = { "Alexander Schuch" => "alexander@schuch.me" }
s.social_media_url = "http://twitter.com/schuchalexander"
s.platform = :ios, "8.0"
s.source = { :git => "https://github.com/aschuch/QRCode.git", :tag => s.version }
s.requires_arc = true
s.source_files = "QRCode/QRCode.swift", "QRCode/UIImageViewExtension.swift", "QRCode/CIColorExtension.swift"
end