Skip to content

Commit

Permalink
updated versions for NLCoreData and NLKit
Browse files Browse the repository at this point in the history
  • Loading branch information
Jesper Skrufve committed Mar 26, 2012
1 parent d3de692 commit 0c18005
Show file tree
Hide file tree
Showing 2 changed files with 42 additions and 0 deletions.
21 changes: 21 additions & 0 deletions NLCoreData/0.2.1/NLCoreData.podspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
Pod::Spec.new do |s|
s.name = 'NLCoreData'
s.version = '0.2.1'
s.license = 'MIT'
s.summary = 'Library that wraps Core Data for iOS for easier and more readable operations.'
s.homepage = 'https://www.github.com/jksk/NLCoreData'
s.author = { 'Jesper Skrufve' => 'jesper@neolo.gy' }
s.source = { :git => 'https://github.com/jksk/NLCoreData.git', :tag => 'v0.2.1' }
s.platform = :ios
s.source_files = 'NLCoreData'
s.framework = 'CoreData'
s.requires_arc = true
s.clean_paths = 'NLCoreDataExample/', 'NLCoreDataExample.xcodeproj/', 'NLCoreDataExampleTests/'

def s.post_install(target)
prefix_header = config.project_pods_root + target.prefix_header_filename
prefix_header.open('a') do |file|
file.puts(%{#ifdef __OBJC__\n#import "NLCoreData.h"\n#endif})
end
end
end
21 changes: 21 additions & 0 deletions NLKit/0.1.1/NLKit.podspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
Pod::Spec.new do |s|
s.name = 'NLKit'
s.version = '0.1.1'
s.license = 'MIT'
s.summary = ''
s.homepage = 'https://www.github.com/jksk/NLKit'
s.author = { 'Jesper Skrufve' => 'jesper@neolo.gy' }
s.source = { :git => 'https://github.com/jksk/NLKit.git', :tag => 'v0.1.1' }
s.platform = :ios
s.source_files = 'NLKit'
s.framework = 'CoreLocation', 'MessageUI', 'Security', 'QuartzCore'
s.requires_arc = true
s.clean_paths = 'NLKitExample/', 'NLKitExample.xcodeproj/', 'NLKitTests/', 'TODO'

def s.post_install(target)
prefix_header = config.project_pods_root + target.prefix_header_filename
prefix_header.open('a') do |file|
file.puts(%{#ifdef __OBJC__\n#import "NLKit.h"\n#endif})
end
end
end

0 comments on commit 0c18005

Please sign in to comment.