forked from SDOSLabs/SDOSFLEX
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSDOSFLEX.podspec
More file actions
21 lines (18 loc) · 783 Bytes
/
SDOSFLEX.podspec
File metadata and controls
21 lines (18 loc) · 783 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
@version = "1.0.1"
Pod::Spec.new do |spec|
spec.platform = :ios, '8.0'
spec.name = 'SDOSFLEX'
spec.authors = 'SDOS'
spec.version = @version
spec.license = { :type => 'SDOS License' }
spec.homepage = 'https://svrgitpub.sdos.es/iOS/SDOSFLEX'
spec.summary = 'Librería que muestra la barra de herramientas de la librería FLEX al agitar el dispositivo'
spec.source = { :git => "https://svrgitpub.sdos.es/iOS/SDOSFLEX.git", :tag => "v#{spec.version}" }
spec.framework = ['Foundation']
spec.requires_arc = true
spec.subspec 'FLEX' do |s2|
s2.preserve_paths = 'src/Classes/*'
s2.source_files = ['src/Classes/*{*.m,*.h,*.swift}', 'src/Classes/**/*{*.m,*.h,*.swift}']
end
spec.dependency 'FLEX', '~> 2.4'
end