This repository has been archived by the owner on Oct 17, 2024. It is now read-only.
forked from anton-matosov/pixate-freestyle-ios
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPixateFreestyle.podspec
44 lines (38 loc) · 2.12 KB
/
PixateFreestyle.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
Pod::Spec.new do |s|
s.name = "PixateFreestyle"
s.version = "2.2.0"
s.summary = "Style your iOS app with CSS, using 100% native code and no webviews."
s.description = <<-DESC
Pixate is an iOS framework that allows you to style your application using stylesheets and a CSS-like syntax. Pixate lets you build beautiful applications with less code and more flexibility by using familiar CSS markup to style native controls and components. Free up your team to focus on creating amazing user experiences throughout the design and development cycle.
DESC
s.homepage = "http://www.pixate.com"
s.license = {
:type => 'Apache 2.0',
:text => <<-LICENSE
Copyright © 2012-2014 Pixate, Inc.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
LICENSE
}
s.author = { "Pixate" => "[email protected]" }
s.platform = :ios, '7.0'
s.source = {
:git => "https://github.com/smartapps-fr/pixate-freestyle-ios.git",
:tag => s.version.to_s
}
s.compiler_flags = '-DOBJC_OLD_DISPATCH_PROTOTYPES', '-Xclang', '-fcompatibility-qualified-id-block-type-checking'
s.default_subspec = 'All'
s.subspec 'All' do |ss|
ss.prefix_header_file = "src/pixate-freestyle-Prefix.pch"
ss.source_files = 'src/*.{h,m}', 'src/Core/**/*.{h,m}', 'src/Modules/**/*.{h,m}', 'src/Kernel/Categories/*.{h,m}', 'src/Kernel/Utils/*.{h,c}'
ss.requires_arc = true
end
s.frameworks = 'CoreText', 'QuartzCore', 'UIKit', 'Foundation', 'CoreGraphics'
end