8
8
9
9
Pod ::Spec . new do |s |
10
10
s . name = 'HyperioniOS'
11
- s . version = '1.0.1 '
11
+ s . version = '1.0.2 '
12
12
s . summary = 'Hyperion is an app design review tool that allows you to inspect views and perform measurements live within your app.'
13
13
14
14
# This description is used to generate tags and improve search results.
@@ -31,26 +31,30 @@ Hyperion is an app design review tool that allows you to inspect views and perfo
31
31
s . frameworks = [ "UIKit" ]
32
32
33
33
s . subspec 'Core' do |core |
34
- core . source_files = 'Core/**/*'
34
+ core . source_files = 'Core/**/*.{h,m} '
35
35
core . exclude_files = 'Core/**/*.md'
36
+ core . resources = [ 'Core/**/*.png' , 'Core/**/*.xib' , 'Core/**/*.plist' ]
36
37
end
37
38
38
39
s . subspec 'AttributesInspector' do |attributes |
39
40
attributes . dependency 'HyperioniOS/Core'
40
- attributes . source_files = 'AttributesInspector/**/*'
41
+ attributes . source_files = 'AttributesInspector/**/*.{h,m} '
41
42
attributes . exclude_files = 'AttributesInspector/**/*.md'
43
+ attributes . resources = [ 'AttributesInspector/**/*.png' , 'AttributesInspector/**/*.xib' , 'AttributesInspector/**/*.plist' ]
42
44
end
43
45
44
46
s . subspec 'SlowAnimations' do |slowanimations |
45
47
slowanimations . dependency 'HyperioniOS/Core'
46
- slowanimations . source_files = 'SlowAnimations/**/*'
48
+ slowanimations . source_files = 'SlowAnimations/**/*.{h,m} '
47
49
slowanimations . exclude_files = 'SlowAnimations/**/*.md'
50
+ slowanimations . resources = [ 'SlowAnimations/**/*.png' , 'SlowAnimations/**/*.xib' , 'SlowAnimations/**/*.plist' ]
48
51
end
49
52
50
53
s . subspec 'Measurements' do |measurements |
51
54
measurements . dependency 'HyperioniOS/Core'
52
- measurements . source_files = 'Measurements/**/*'
55
+ measurements . source_files = 'Measurements/**/*.{h,m} '
53
56
measurements . exclude_files = 'Measurements/**/*.md'
57
+ measurements . resources = [ 'Measurements/**/*.png' , 'Measurements/**/*.xib' , 'Measurements/**/*.plist' ]
54
58
end
55
59
56
60
end
0 commit comments