Skip to content

Commit

Permalink
Add sample project and podspec.
Browse files Browse the repository at this point in the history
  • Loading branch information
ayanonagon committed Jun 20, 2014
1 parent 7c086be commit 9121129
Show file tree
Hide file tree
Showing 19 changed files with 2,139 additions and 481 deletions.
6 changes: 5 additions & 1 deletion Podfile
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

8 changes: 8 additions & 0 deletions Podfile.lock
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
17 changes: 17 additions & 0 deletions VENTokenField.podspec
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
Loading

0 comments on commit 9121129

Please sign in to comment.