forked from AlexDenisov/FrameAccessor
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFrameAccessor.podspec
More file actions
24 lines (24 loc) · 858 Bytes
/
FrameAccessor.podspec
File metadata and controls
24 lines (24 loc) · 858 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
Pod::Spec.new do |s|
s.name = 'FrameAccessor'
s.version = '1.3.2'
s.license = 'MIT'
s.summary = 'Easy access to view\'s frame.'
s.homepage = 'https://github.com/sameer-bsb/FrameAccessor'
s.description = %{
You can access x, y, width, height, origin or size like properties.
Like this:
view.x = 15;
view.width = 167;
}
s.author = {
}
s.source = { :git => 'https://github.com/sameer-bsb/FrameAccessor.git', :tag => s.version.to_s}
s.ios.deployment_target = '4.3'
s.osx.deployment_target = '10.6'
s.ios.source_files = 'FrameAccessor/*.{h,m}'
s.osx.source_files = 'FrameAccessor/FrameAccessor.h', 'FrameAccessor/ViewFrameAccessor.{h,m}'
end