forked from CosmicMind/Material
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMaterial.podspec
More file actions
executable file
·19 lines (19 loc) · 808 Bytes
/
Material.podspec
File metadata and controls
executable file
·19 lines (19 loc) · 808 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
Pod::Spec.new do |s|
s.name = 'Material'
s.version = '2.1.2'
s.license = 'BSD-3-Clause'
s.summary = 'Material is an animation and graphics framework that is used to create beautiful applications.'
s.homepage = 'http://cosmicmind.io'
s.social_media_url = 'https://www.facebook.com/cosmicmindio'
s.authors = { 'CosmicMind, Inc.' => 'support@cosmicmind.io' }
s.source = { :git => 'https://github.com/CosmicMind/Material.git', :tag => s.version }
s.ios.deployment_target = '8.0'
s.ios.source_files = 'Sources/iOS/**/*.swift'
s.osx.deployment_target = '10.9'
s.osx.source_files = 'Sources/macOS/**/*.swift'
s.requires_arc = true
s.resource_bundles = {
'io.cosmicmind.material.icons' => ['Sources/**/*.xcassets'],
'io.cosmicmind.material.fonts' => ['Sources/**/*.ttf']
}
end