-
Notifications
You must be signed in to change notification settings - Fork 195
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
1 parent
7c086be
commit 9121129
Showing
19 changed files
with
2,139 additions
and
481 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 |
---|---|---|
@@ -1,7 +1,11 @@ | ||
# Uncomment this line to define a global platform for your project | ||
# platform :ios, "6.0" | ||
platform :ios, "7.0" | ||
|
||
target "VENTokenField" do | ||
pod 'FrameAccessor', '~> 1.1.0' | ||
end | ||
|
||
target "VENTokenFieldSample" do | ||
pod 'VENTokenField', :path => '.' | ||
end | ||
|
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 |
---|---|---|
@@ -1,10 +1,18 @@ | ||
PODS: | ||
- FrameAccessor (1.1.0) | ||
- VENTokenField (1.0.0): | ||
- FrameAccessor (~> 2.0) | ||
|
||
DEPENDENCIES: | ||
- FrameAccessor (~> 1.1.0) | ||
- VENTokenField (from `.`) | ||
|
||
EXTERNAL SOURCES: | ||
VENTokenField: | ||
:path: . | ||
|
||
SPEC CHECKSUMS: | ||
FrameAccessor: 1900268ec0c4872ce0948baaf71f995ea6d0f28c | ||
VENTokenField: f972fe8c6452a78dcfd669444653c52adf706f17 | ||
|
||
COCOAPODS: 0.33.1 |
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,17 @@ | ||
Pod::Spec.new do |s| | ||
s.name = 'VENTokenField' | ||
s.version = '1.0.0' | ||
s.summary = 'Token field used in the Venmo app.' | ||
s.description = <<-DESC | ||
An easy to use token field that in used in the Venmo app. | ||
DESC | ||
s.homepage = 'https://github.com/venmo/VENTokenField' | ||
s.license = { :type => 'MIT', :file => 'LICENSE' } | ||
s.author = { 'Venmo' => '[email protected]'} | ||
s.source = { :git => '[email protected]:venmo/VENTokenField.git', :tag => "v#{s.version}" } | ||
s.source_files = 'VENTokenField/**/*.{h,m}' | ||
s.resources = ["VENTokenField/**/*.{xib,png}"] | ||
s.dependency 'FrameAccessor', '~> 2.0' | ||
s.platform = :ios, '7.0' | ||
s.requires_arc = true | ||
end |
Oops, something went wrong.