From f64f8d002105a1f4fa5518e789145ef9402c47a8 Mon Sep 17 00:00:00 2001 From: Rob Warner Date: Sat, 14 Jul 2012 19:48:33 -0400 Subject: [PATCH 1/2] Add HPGrowingTextView 0.0.1 --- HPGrowingTextView/0.0.1/HPGrowingTextView.podspec | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 HPGrowingTextView/0.0.1/HPGrowingTextView.podspec diff --git a/HPGrowingTextView/0.0.1/HPGrowingTextView.podspec b/HPGrowingTextView/0.0.1/HPGrowingTextView.podspec new file mode 100644 index 00000000..86dd0725 --- /dev/null +++ b/HPGrowingTextView/0.0.1/HPGrowingTextView.podspec @@ -0,0 +1,14 @@ +Pod::Spec.new do |s| + s.name = "HPGrowingTextView" + s.version = "0.0.1" + s.summary = "Multi-line/Autoresizing UITextView similar to SMS-app." + s.description = "An UITextView which grows/shrinks with the text and starts scrolling when the content reaches a certain number of lines." + s.homepage = "https://github.com/HansPinckaers/GrowingTextView" + s.license = { :type => 'MIT', :file => 'LICENSE.txt' } + s.author = { "Hans Pinckaers" => "hans.pinckaers@gmail.com" } + s.source = { :git => "https://github.com/HansPinckaers/GrowingTextView.git", :commit => "43a7f97cfadf20fc427715a3a8e18da443c4d534" } + s.platform = :ios + s.source_files = 'Classes', 'class/**/*.{h,m}' + s.preserve_paths = "example" + s.requires_arc = true +end From 1c75b1f809e4980dd7fd523c7ac80d40f829fcaa Mon Sep 17 00:00:00 2001 From: Rob Warner Date: Tue, 24 Jul 2012 06:19:54 -0400 Subject: [PATCH 2/2] Remove the example from preserve_paths --- HPGrowingTextView/0.0.1/HPGrowingTextView.podspec | 1 - 1 file changed, 1 deletion(-) diff --git a/HPGrowingTextView/0.0.1/HPGrowingTextView.podspec b/HPGrowingTextView/0.0.1/HPGrowingTextView.podspec index 86dd0725..2c1f6c66 100644 --- a/HPGrowingTextView/0.0.1/HPGrowingTextView.podspec +++ b/HPGrowingTextView/0.0.1/HPGrowingTextView.podspec @@ -9,6 +9,5 @@ Pod::Spec.new do |s| s.source = { :git => "https://github.com/HansPinckaers/GrowingTextView.git", :commit => "43a7f97cfadf20fc427715a3a8e18da443c4d534" } s.platform = :ios s.source_files = 'Classes', 'class/**/*.{h,m}' - s.preserve_paths = "example" s.requires_arc = true end