forked from CocoaPods/Specs
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Scott90
committed
Oct 17, 2013
1 parent
2445e97
commit 5d274fd
Showing
1 changed file
with
12 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,12 @@ | ||
Pod::Spec.new do |s| | ||
s.name = 'SBTextField' | ||
s.version = "1.0.1" | ||
s.summary = "A UITextField drop-in replacement with support for setting a maximum length." | ||
s.homepage = "https://github.com/Scott90/SBTextField" | ||
s.license = { :type => 'MIT', :file => 'LICENSE' } | ||
s.author = { "Scott90" => "my@fake.email" } | ||
s.source = { :git => "https://github.com/Scott90/SBTextField.git", :tag => "v#{s.version}" } | ||
s.source_files = 'SBTextField/SBTextField.*' | ||
s.platform = :ios, '5.0' | ||
s.requires_arc = true | ||
end |