-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathQUnit.m.podspec
23 lines (19 loc) · 1.19 KB
/
QUnit.m.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
Pod::Spec.new do |s|
s.name = "QUnit.m"
s.version = "0.1.2"
s.summary = "QUnit.m brings syntax to SenTestingKit for testing Objective-C projects"
s.description = <<-DESC
QUnit.m brings [QUnit.js](http://qunitjs.com/) syntax to SenTestingKit for testing Objective-C projects. The is useful if you are trying to port JavaScript libraries to Objective-C or want a more familiar testing syntax.
I wrote this to help me port Underscore.js to Objective-C in [_.m](https://github.com/kmalakoff/_.m) and to make Objective-C a little more script in [Subjective-Script](https://github.com/kmalakoff/SubjectiveScript.m) so you will find some good examples in those project's tests.
DESC
s.homepage = "https://github.com/kmalakoff/QUnit.m"
s.license = 'MIT'
s.author = { "Kevin Malakoff" => "[email protected]" }
s.source = { :git => "https://github.com/kmalakoff/QUnit.m.git", :tag => s.version.to_s }
s.ios.deployment_target = '5.0'
s.osx.deployment_target = '10.7'
s.requires_arc = true
s.source_files = 'Classes'
s.frameworks = 'SenTestingKit'
s.public_header_files = 'Classes/**/*.h'
end