Skip to content

Commit

Permalink
Use Carthage, become Carthage compatible
Browse files Browse the repository at this point in the history
  • Loading branch information
mxcl committed Apr 10, 2015
1 parent 911e9da commit 5c55781
Show file tree
Hide file tree
Showing 23 changed files with 722 additions and 721 deletions.
2 changes: 2 additions & 0 deletions .gitignore
@@ -0,0 +1,2 @@
/Cartfile.resolved
/Carthage
1 change: 1 addition & 0 deletions Cartfile
@@ -0,0 +1 @@
github "mxcl/OMGHTTPURLRQ"
26 changes: 26 additions & 0 deletions Info.plist
@@ -0,0 +1,26 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>CFBundleDevelopmentRegion</key>
<string>en</string>
<key>CFBundleExecutable</key>
<string>$(EXECUTABLE_NAME)</string>
<key>CFBundleIdentifier</key>
<string>com.tweetdeck.$(PRODUCT_NAME:rfc1034identifier)</string>
<key>CFBundleInfoDictionaryVersion</key>
<string>6.0</string>
<key>CFBundleName</key>
<string>$(PRODUCT_NAME)</string>
<key>CFBundlePackageType</key>
<string>FMWK</string>
<key>CFBundleShortVersionString</key>
<string>$(CURRENT_PROJECT_VERSION)</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
<string>$(CURRENT_PROJECT_VERSION)</string>
<key>NSPrincipalClass</key>
<string></string>
</dict>
</plist>
File renamed without changes.
5 changes: 5 additions & 0 deletions TDOAuth.h
Expand Up @@ -29,6 +29,11 @@

#import <Foundation/Foundation.h>


FOUNDATION_EXPORT double TDOAuthVersionNumber;
FOUNDATION_EXPORT const unsigned char TDOAuthVersionString[];


typedef NS_ENUM(NSInteger, TDOAuthSignatureMethod) {
TDOAuthSignatureMethodHmacSha1,
TDOAuthSignatureMethodHmacSha256,
Expand Down
2 changes: 1 addition & 1 deletion TDOAuth.m
Expand Up @@ -31,7 +31,7 @@

#import "TDOAuth.h"
#import <CommonCrypto/CommonHMAC.h>
#import <OMGUserAgent.h>
#import <OMGHTTPURLRQ/OMGUserAgent.h>

#define TDPCEN(s) \
((__bridge_transfer NSString *)CFURLCreateStringByAddingPercentEscapes(NULL, (__bridge CFStringRef)[s description], NULL, CFSTR("!*'();:@&=+$,/?%#[]"), kCFStringEncodingUTF8))
Expand Down
2 changes: 1 addition & 1 deletion TDOAuth.podspec
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'TDOAuth'
s.version = '1.0.4'
s.version = '1.1.0'
s.requires_arc = true
s.source_files = '*.{m,h}'
s.source = { :git => "https://github.com/tweetdeck/#{s.name}.git", :tag => s.version }
Expand Down

0 comments on commit 5c55781

Please sign in to comment.