Skip to content

Commit

Permalink
first commit
Browse files Browse the repository at this point in the history
  • Loading branch information
bsideup committed Dec 11, 2012
1 parent dd38826 commit f7a7c2f
Show file tree
Hide file tree
Showing 10 changed files with 669 additions and 0 deletions.
11 changes: 11 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
Thumbs.db
.DS_Store

xcuserdata

*.xcworkspace

Podfile.lock
Pods/

.idea/
13 changes: 13 additions & 0 deletions TLSignals.podspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
Pod::Spec.new do |s|
s.name = 'TLSignals'
s.version = '0.0.1'
s.platform = :ios
s.license = {:type => 'Custom', :text => 'Copyright (C) 2012 Sergey Egorov' }
s.summary = 'Observer pattern with compile-time type checking for Objective-C'
s.homepage = 'https://github.com/bsideup/TLSignals'
s.author = { 'Sergey Egorov' => 'bsideup@gmail.com' }
s.source = { :git => 'https://github.com/bsideup/TLSignals.git',
:commit => 'HEAD' }

s.source_files = 'TLSignals/*.{h,m, mm}'
end
Loading

0 comments on commit f7a7c2f

Please sign in to comment.