Pod::Spec.new do |s| s.name = '${POD_NAME}' s.version = '0.1.0' s.summary = '${POD_NAME} Module' s.homepage = 'https://bitbucket.org/acelera' s.author = { '${USER_NAME}' => '${USER_EMAIL}' } s.source = { :git => 'https://bitbucket.org/acelera/${POD_NAME}', :tag => s.version.to_s } s.platform = :ios, '15.0' s.public_header_files = '${POD_NAME}/Resources/*.h' s.preserve_paths = '${POD_NAME}/Sources/**/*' s.source_files = '${POD_NAME}/Sources/**/*.{swift,h,m}', '${POD_NAME}/Resources/*.{strings,h}' s.resource_bundles = { '${POD_NAME}' => ['${POD_NAME}/Resources/**/*.{strings,xcassets,json}'] } s.subspec 'Generated' do |ss| ss.source_files = '${POD_NAME}/Resources/Strings.swift', '${POD_NAME}/Resources/Assets.swift' end # INTERNAL DEPENDENCY ${FEATURE_INTERNAL} # THIRTY PARTY ${FEATURE_TEST} end