Skip to content

Commit

Permalink
Merge pull request #10 from lukeredpath/podspec
Browse files Browse the repository at this point in the history
Added Podspec for project (see #4)

Fixes #4
  • Loading branch information
mikelikespie committed Feb 19, 2012
2 parents 0573003 + 53e4592 commit e938692
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions SocketRocket.podspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
Pod::Spec.new do |s|
s.name = "SocketRocket"
s.version = '0.1'
s.summary = 'A conforming WebSocket (RFC 6455) client library.'
s.homepage = 'https://github.com/square/SocketRocket'
s.authors = { 'Square' => 'lewis@squareup.com' }
s.source = { :git => 'git://github.com/square/SocketRocket.git' }
s.source_files = 'SocketRocket/*.{h,m,c}'
s.clean_paths = %w{SRWebSocketTests SocketRocket.xcodeproj TestChat TestChatServer TestSupport extern}
s.requires_arc = true
s.frameworks = %w{CFNetwork Security}
s.libraries = "icucore"
end

0 comments on commit e938692

Please sign in to comment.