Skip to content

Commit 59d5693

Browse files
authored
Merge pull request #7 from intuit/zaltzy/podspec
Adding Podspec
2 parents dd6f392 + 57e8752 commit 59d5693

File tree

53 files changed

+1871
-392
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

53 files changed

+1871
-392
lines changed

.gitignore

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
# OS X
2+
.DS_Store
3+
4+
# Xcode
5+
build/
6+
*.pbxuser
7+
!default.pbxuser
8+
*.mode1v3
9+
!default.mode1v3
10+
*.mode2v3
11+
!default.mode2v3
12+
*.perspectivev3
13+
!default.perspectivev3
14+
xcuserdata/
15+
*.xccheckout
16+
profile
17+
*.moved-aside
18+
DerivedData
19+
*.hmap
20+
*.ipa
21+
22+
# Bundler
23+
.bundle
24+
25+
# Add this line if you want to avoid checking in source code from Carthage dependencies.
26+
# Carthage/Checkouts
27+
28+
Carthage/Build
29+
30+
# We recommend against adding the Pods directory to your .gitignore. However
31+
# you should judge for yourself, the pros and cons are mentioned at:
32+
# https://guides.cocoapods.org/using/using-cocoapods.html#should-i-ignore-the-pods-directory-in-source-control
33+
#
34+
# Note: if you ignore the Pods directory, make sure to uncomment
35+
# `pod install` in .travis.yml
36+
#
37+
# Pods/

AnimatedFormFieldDemo/AnimatedFormFieldDemo.xcodeproj/xcuserdata/izaltzberg.xcuserdatad/xcschemes/AnimatedFormFieldDemo.xcscheme

Lines changed: 0 additions & 91 deletions
This file was deleted.

AnimatedFormFieldDemo/AnimatedFormFieldDemo.xcodeproj/xcuserdata/izaltzberg.xcuserdatad/xcschemes/xcschememanagement.plist

Lines changed: 0 additions & 22 deletions
This file was deleted.

AnimatedFormFieldDemo/AnimatedFormFieldDemo/AnimatedFormFieldTableViewCell.swift

Lines changed: 0 additions & 97 deletions
This file was deleted.

AnimatedFormFieldDemo/AnimatedFormFieldDemo/AnimatedFormFieldTableViewCell.xib

Lines changed: 0 additions & 56 deletions
This file was deleted.
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
Pod::Spec.new do |s|
2+
s.name = 'AnimatedFormFieldTableViewCell'
3+
s.version = '1.0.0'
4+
s.summary = 'UITextField Implementation with built in placeholder scaling animation'
5+
s.description = <<-DESC
6+
The AnimatedFormFieldTableViewCell allows you to implement a UITableViewCell with an embedded UITextField that automatically scales the textfield's placeholder upon user interaction.
7+
DESC
8+
s.homepage = 'https://github.com/intuit/AnimatedFormFieldTableViewCell'
9+
s.screenshots = 'https://camo.githubusercontent.com/b149a9177c5c4448dcb15dddd7e54b9063f2aa34/687474703a2f2f692e696d6775722e636f6d2f464d6654434d542e676966'
10+
s.license = { :type => 'MIT', :file => 'LICENSE' }
11+
s.author = { 'Ido Zaltzberg' => 'zaltzy@gmail.com' }
12+
s.source = { :git => 'https://github.com/intuit/AnimatedFormFieldTableViewCell.git', :tag => s.version.to_s }
13+
s.ios.deployment_target = '8.0'
14+
s.source_files = 'AnimatedFormFieldTableViewCell/*'
15+
s.swift_version = '5.0'
16+
end

0 commit comments

Comments
 (0)