Skip to content

Commit

Permalink
Swift 2.3
Browse files Browse the repository at this point in the history
  • Loading branch information
KennethTsang committed Sep 17, 2016
1 parent 46b55ee commit 3a332b7
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 10 deletions.
10 changes: 2 additions & 8 deletions Example/GrowingTextView.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -525,10 +525,7 @@
buildSettings = {
ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES;
BUNDLE_LOADER = "$(TEST_HOST)";
FRAMEWORK_SEARCH_PATHS = (
"$(SDKROOT)/Developer/Library/Frameworks",
"$(inherited)",
);
FRAMEWORK_SEARCH_PATHS = "$(inherited)";
GCC_PREPROCESSOR_DEFINITIONS = (
"DEBUG=1",
"$(inherited)",
Expand All @@ -547,10 +544,7 @@
buildSettings = {
ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES;
BUNDLE_LOADER = "$(TEST_HOST)";
FRAMEWORK_SEARCH_PATHS = (
"$(SDKROOT)/Developer/Library/Frameworks",
"$(inherited)",
);
FRAMEWORK_SEARCH_PATHS = "$(inherited)";
INFOPLIST_FILE = Tests/Info.plist;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.$(PRODUCT_NAME:rfc1034identifier)";
Expand Down
4 changes: 2 additions & 2 deletions GrowingTextView.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

Pod::Spec.new do |s|
s.name = "GrowingTextView"
s.version = "0.1.7"
s.version = "0.1.8"
s.summary = "UITextView with support of auto growing, placeholder and length limit."

# This description is used to generate tags and improve search results.
Expand All @@ -24,7 +24,7 @@ This cocoapods provide a subclass of UITextView which support auto growing, plac
s.screenshots = "https://raw.githubusercontent.com/KennethTsang/GrowingTextView/master/DEMO.gif"
s.license = 'MIT'
s.author = { "Kenneth Tsang" => "kenneth.tsang@me.com" }
s.source = { :git => "https://github.com/KennethTsang/GrowingTextView.git", :tag => s.version.to_s }
s.source = { :git => "https://github.com/KennethTsang/GrowingTextView.git", :tag => s.version.to_s, :branch => "swift2" }
# s.social_media_url = 'https://twitter.com/<TWITTER_USERNAME>'

s.platform = :ios, '8.0'
Expand Down
1 change: 1 addition & 0 deletions Pod/Classes/GrowingTextView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
// Created by Kenneth Tsang on 17/2/2016.
// Copyright (c) 2016 Kenneth Tsang. All rights reserved.
//
// Swift2 Branch (For Swift 2.3)

import Foundation
import UIKit
Expand Down

0 comments on commit 3a332b7

Please sign in to comment.