diff --git a/GCPlaceholderTextView.podspec b/GCPlaceholderTextView.podspec new file mode 100644 index 0000000..1c4ef77 --- /dev/null +++ b/GCPlaceholderTextView.podspec @@ -0,0 +1,12 @@ +Pod::Spec.new do |s| + s.name = "GCPlaceholderTextView" + s.version = "1.0.1" + s.summary = "A subclass of UITextView that allow a placeholder." + s.homepage = "http://gcamp.ca/" + s.license = { :type => 'MIT', :file => 'LICENSE.txt' } + s.author = { "Guillaume Campagna" => "http://gcamp.ca/" } + s.source = { :git => "git@github.com:gcamp/GCPlaceholderTextView.git", :tag => s.version.to_s } + s.platform = :ios, '6.0' + s.source_files = 'GCPlaceholderTextView/*.{h,m}' + s.requires_arc = false +end