-
Notifications
You must be signed in to change notification settings - Fork 31
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Updated podspec with documentation and macos support
- Loading branch information
1 parent
50b08d6
commit 0f4b425
Showing
1 changed file
with
4 additions
and
2 deletions.
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 |
---|---|---|
@@ -1,13 +1,15 @@ | ||
Pod::Spec.new do |s| | ||
s.name = "MultiPeer" | ||
s.version = "0.0.1" | ||
s.version = "0.0.2" | ||
s.summary = "MultiPeer makes it easy to automatically connect to multiple nearby devices and share information using MultipeerConnectivity." | ||
s.description = "MultiPeer is a wrapper for the MultipeerConnectivity framework for offline data transmission between devices. This framework makes it easy to automatically connect to multiple nearby devices and share information using either bluetooth or wifi radios." | ||
s.homepage = "https://github.com/dingwilson/MultiPeer" | ||
s.license = { :type => "MIT", :file => "LICENSE" } | ||
s.author = { "Wilson Ding" => "hello@wilsonding.com", | ||
"Quan Vo" => "qvo1987@gmail.com" } | ||
s.platform = :ios, "8.0" | ||
s.osx.deployment_target = "10.10" | ||
s.ios.deployment_target = "8.0" | ||
s.source = { :git => "https://github.com/dingwilson/MultiPeer.git", :tag => s.version } | ||
s.source_files = "Sources/MultiPeer/*.{h,m,swift}" | ||
s.documentation_url = "http://wilsonding.com/MultiPeer/" | ||
end |