forked from specta/expecta
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathExpecta.podspec
More file actions
23 lines (18 loc) · 808 Bytes
/
Expecta.podspec
File metadata and controls
23 lines (18 loc) · 808 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
Pod::Spec.new do |s|
s.name = 'Expecta'
s.version = '0.2.3'
s.license = 'MIT'
s.summary = 'A matcher framework for Objective-C & Cocoa.'
s.homepage = 'http://github.com/petejkim/expecta'
s.author = { 'Peter Jihoon Kim' => 'raingrove@gmail.com' }
s.source = { :git => 'https://github.com/specta/expecta.git', :tag => 'v0.2.3' }
s.description = %{
Expecta is a matcher framework for Objective-C and Cocoa. The main
advantage of using Expecta over other matcher frameworks is that you do not
have to specify the data types. Also, the syntax of Expecta matchers is
much more readable and does not suffer from parenthesitis. If you have used
Jasmine before, you will feel right at home!
}
s.source_files = 'src/**/*.{h,m}'
s.frameworks = 'Foundation'
end