From 36948052b889e09ae4feab330edc0fc955124775 Mon Sep 17 00:00:00 2001 From: Bruno Wernimont Date: Tue, 24 Jul 2012 08:17:20 +0200 Subject: [PATCH 1/2] Add BaseKit 0.2.5 --- BaseKit/0.2.5/BaseKit.podspec | 49 +++++++++++++++++++++++++++++++++++ 1 file changed, 49 insertions(+) create mode 100644 BaseKit/0.2.5/BaseKit.podspec diff --git a/BaseKit/0.2.5/BaseKit.podspec b/BaseKit/0.2.5/BaseKit.podspec new file mode 100644 index 00000000000000..e04c0564251d9a --- /dev/null +++ b/BaseKit/0.2.5/BaseKit.podspec @@ -0,0 +1,49 @@ +Pod::Spec.new do |s| + s.name = 'BaseKit' + s.version = '0.2.5' + s.license = 'Apache 2' + s.summary = 'BaseKit is a set of IOS class to make your life easier.' + s.homepage = 'https://github.com/brunow/BaseKit' + s.author = { 'Bruno Wernimont' => 'bruno.wernimont+github@gmail.com' } + s.source = { :git => 'https://github.com/brunow/BaseKit.git', :tag => '0.2.5' } + + s.description = 'BaseKit is a set of IOS class to make your life easier.' + s.platform = :ios + s.clean_paths = 'Examples', 'GHUnitIOS.framework', 'Test', 'Vendor', 'README.md', '.gitignore', 'BaseKit.xcodeproj', 'LICENSE', 'form-mapping.png' + + s.subspec 'Core' do |core| + core.source_files = 'Code/Core/*.{h,m}' + end + + s.subspec 'View' do |view| + view.source_files = 'Code/View/*.{h,m}' + view.dependency 'BaseKit/Core' + end + + s.subspec 'CellMapping' do |cell_mapping| + cell_mapping.source_files = 'Code/CellMapping/*.{h,m}' + cell_mapping.dependency 'BaseKit/Core' + cell_mapping.dependency 'BaseKit/View' + end + + s.subspec 'LocationManager' do |location_manager| + location_manager.source_files = 'Code/LocationManager/*.{h,m}' + location_manager.framework = 'CoreLocation' + location_manager.dependency 'BaseKit/Core' + end + + s.subspec 'FormField' do |form_field| + form_field.source_files = 'Code/FormField/*.{h,m}' + form_field.dependency 'BaseKit/Core' + form_field.dependency 'BaseKit/View' + end + + s.subspec 'FormMapping' do |form_mapping| + form_mapping.source_files = 'Code/FormMapping/*.{h,m}' + form_mapping.dependency 'BaseKit/Core' + form_mapping.dependency 'BaseKit/View' + form_mapping.dependency 'BaseKit/FormField' + form_mapping.dependency 'BWLongTextViewController' + form_mapping.dependency 'ActionSheetPicker2' + end +end \ No newline at end of file From 5455c05abf94f2cc079e90c3c78a6b65a207987b Mon Sep 17 00:00:00 2001 From: Bruno Wernimont Date: Tue, 24 Jul 2012 18:05:49 +0200 Subject: [PATCH 2/2] Fix BaseKit 0.2.5 podspec --- BaseKit/0.2.5/BaseKit.podspec | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/BaseKit/0.2.5/BaseKit.podspec b/BaseKit/0.2.5/BaseKit.podspec index e04c0564251d9a..a04902124f0911 100644 --- a/BaseKit/0.2.5/BaseKit.podspec +++ b/BaseKit/0.2.5/BaseKit.podspec @@ -9,7 +9,8 @@ Pod::Spec.new do |s| s.description = 'BaseKit is a set of IOS class to make your life easier.' s.platform = :ios - s.clean_paths = 'Examples', 'GHUnitIOS.framework', 'Test', 'Vendor', 'README.md', '.gitignore', 'BaseKit.xcodeproj', 'LICENSE', 'form-mapping.png' + s.preserve_paths = 'Examples', 'GHUnitIOS.framework', 'Test', 'Vendor', 'README.md', '.gitignore', 'BaseKit.xcodeproj', 'LICENSE', 'form-mapping.png' + s.compiler_flags = '-Wno-format' s.subspec 'Core' do |core| core.source_files = 'Code/Core/*.{h,m}'