-
Notifications
You must be signed in to change notification settings - Fork 266
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #141 from shyambhat/dev
v3.6.6
- Loading branch information
Showing
25 changed files
with
1,093 additions
and
471 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,16 +1,9 @@ | ||
|
||
language: objective-c | ||
xcode_workspace: InstagramKit-Example/InstagramKit-Example.xcworkspace | ||
xcode_scheme: InstagramKit-Example | ||
xcode_sdk: iphonesimulator8.1 | ||
podfile: InstagramKit-Example/Podfile | ||
xcode_workspace: InstagramKit.xcworkspace | ||
xcode_scheme: InstagramKit | ||
osx_image: xcode6.4 | ||
xcode_sdk: iphonesimulator8.4 | ||
# before_install: | ||
# - gem install cocoapods --quiet | ||
# - pod --version | ||
# - pod repo remove master | ||
# - pod setup | ||
# - pod install | ||
# - pod repo update --silent | ||
|
||
# script: | ||
#- pod lib lint | ||
# - xctool -xcode_workspace InstagramKit-Example/InstagramKit-Example.xcode_workspace -xcode_scheme 'InstagramKit-Example' -configuration Release -sdk iphonesimulator -arch i386 build |
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
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
27 changes: 0 additions & 27 deletions
27
InstagramKit-Example/InstagramKit-Example/Classes/Constants.h
This file was deleted.
Oops, something went wrong.
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
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
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
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 +1,2 @@ | ||
pod 'InstagramKit', :path => '../' | ||
pod "InstagramKit", :path => '../' | ||
pod "InstagramKit/UICKeyChainStore", :path => '../' |
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 |
---|---|---|
|
@@ -10,11 +10,21 @@ Pod::Spec.new do |s| | |
s.homepage = 'https://github.com/shyambhat/InstagramKit' | ||
s.license = 'MIT' | ||
s.author = { "Shyam Bhat" => "[email protected]" } | ||
s.platform = :ios, '6.0' | ||
s.platform = :ios, '7.0' | ||
s.source = { :git => "https://github.com/shyambhat/InstagramKit.git", :tag => '3.6.5' } | ||
s.source_files = 'InstagramKit', 'InstagramKit/**/*.{h,m}' | ||
s.exclude_files = 'InstagramKitDemo' | ||
s.requires_arc = true | ||
s.dependency 'AFNetworking', '~>2.0' | ||
s.default_subspec = 'Exclude-UICKeyChainStore' | ||
|
||
s.subspec 'Exclude-UICKeyChainStore' do |exclude_uickeychainstore| | ||
# default lean subspec for users who don't need UICKeyChainStore | ||
end | ||
|
||
s.subspec 'UICKeyChainStore' do |uickeychainstore| | ||
uickeychainstore.xcconfig = | ||
{ 'OTHER_CFLAGS' => '$(inherited) -INSTAGRAMKIT_INCLUDE_UICKEYCHAINSTORE' } | ||
uickeychainstore.dependency 'UICKeyChainStore', '~>2.0' | ||
end | ||
end |
Oops, something went wrong.