diff --git a/STUtils.podspec b/STUtils.podspec new file mode 100644 index 0000000..394e2e0 --- /dev/null +++ b/STUtils.podspec @@ -0,0 +1,20 @@ +Pod::Spec.new do |s| + s.name = "STUtils" + s.version = "0.0.1" + s.summary = "Various useful Objective-C code." + s.homepage = "https://github.com/ldandersen/STUtils.git" + s.license = "MIT" + s.authors = { 'Buzz Andersen' => 'buzz@scifihifi.com' } + + s.source = { :git => "https://github.com/ldandersen/STUtils.git", :branch => "independentKeychain" } + s.requires_arc = false + + s.subspec 'Additions' do |ios| + ios.source_files = "iOS/**/*" + end + + s.subspec 'Security' do |security| + security.source_files = "Security" + security.frameworks = "Security" + end +end diff --git a/Security/STKeychain.m b/Security/STKeychain.m index 72a3868..e0109eb 100644 --- a/Security/STKeychain.m +++ b/Security/STKeychain.m @@ -27,8 +27,7 @@ // OTHER DEALINGS IN THE SOFTWARE. // -#import "STUtils.h" - +#import "STKeychain.h" #define USE_MAC_KEYCHAIN_API !TARGET_OS_IPHONE || (TARGET_IPHONE_SIMULATOR && __IPHONE_OS_VERSION_MIN_REQUIRED < __IPHONE_3_0)