Skip to content
This repository was archived by the owner on Jan 5, 2023. It is now read-only.

Commit 209ade2

Browse files
committed
Create pod
1 parent f26e1f5 commit 209ade2

Some content is hidden

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

49 files changed

+1890
-436
lines changed

.swift-version

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
3.0

.travis.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
# references:
2+
# * http://www.objc.io/issue-6/travis-ci.html
3+
# * https://github.com/supermarin/xcpretty#usage
4+
5+
osx_image: xcode7.3
6+
language: objective-c
7+
# cache: cocoapods
8+
# podfile: Example/Podfile
9+
# before_install:
10+
# - gem install cocoapods # Since Travis is not always on latest version
11+
# - pod install --project-directory=Example
12+
script:
13+
- set -o pipefail && xcodebuild test -workspace Example/DIImageView.xcworkspace -scheme DIImageView-Example -sdk iphonesimulator9.3 ONLY_ACTIVE_ARCH=NO | xcpretty
14+
- pod lib lint

DIImageView.podspec

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
#
2+
# Be sure to run `pod lib lint DIImageView.podspec' to ensure this is a
3+
# valid spec before submitting.
4+
#
5+
# Any lines starting with a # are optional, but their use is encouraged
6+
# To learn more about a Podspec see http://guides.cocoapods.org/syntax/podspec.html
7+
#
8+
9+
Pod::Spec.new do |s|
10+
s.name = 'DIImageView'
11+
s.version = '1.0.0'
12+
s.summary = 'A Snapchat-inspired caption integrated within a regular UIImageView'
13+
14+
s.homepage = 'https://github.com/danielinoa/DIImageView'
15+
# s.screenshots = 'https://github.com/danielinoa/DIImageView/blob/master/Screenshots/ss1.png', 'https://github.com/danielinoa/DIImageView/blob/master/Screenshots/ss2.png'
16+
s.license = { :type => 'MIT', :file => 'LICENSE' }
17+
s.author = { 'danielinoa' => '[email protected]' }
18+
s.source = { :git => 'https://github.com/danielinoa/DIImageView.git', :tag => s.version.to_s }
19+
s.social_media_url = 'https://twitter.com/danielinoa_'
20+
21+
s.ios.deployment_target = '8.0'
22+
23+
s.source_files = 'DIImageView/Classes/**/*'
24+
25+
# s.resource_bundles = {
26+
# 'DIImageView' => ['DIImageView/Assets/*.png']
27+
# }
28+
29+
# s.public_header_files = 'Pod/Classes/**/*.h'
30+
end

DIImageView.xcodeproj/project.pbxproj

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

DIImageView.xcodeproj/xcuserdata/danielinoa.xcuserdatad/xcschemes/xcschememanagement.plist

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

DIImageView/AppDelegate.swift

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

DIImageView/Assets/.gitkeep

Whitespace-only changes.

DIImageView/Classes/.gitkeep

Whitespace-only changes.

0 commit comments

Comments
 (0)