-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathBenchmark.podspec
24 lines (22 loc) · 1000 Bytes
/
Benchmark.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
Pod::Spec.new do |s|
s.name = 'Benchmark'
s.version = '2.0'
s.ios.deployment_target = '8.0'
s.osx.deployment_target = '10.11'
s.summary = 'The Benchmark⏲ module provides methods to measure and report the time used to execute Swift code.'
s.description = <<-DESC
The Benchmark⏲ module provides methods to measure and report the time used to execute Swift code. for example:
Benchmark.measure() {
// some processes
}
⏲{
// some processes
}
DESC
s.homepage = 'https://github.com/WorldDownTown/Benchmark'
s.license = { type: 'MIT', file: 'LICENSE' }
s.author = { WorldDownTown: '[email protected]' }
s.social_media_url = 'http://twitter.com/WorldDownTown'
s.source = { git: 'https://github.com/WorldDownTown/Benchmark.git', tag: s.version }
s.source_files = 'Benchmark/Benchmark.swift'
end