I hereby claim:
- I am pkananen on github.
- I am pkananen (https://keybase.io/pkananen) on keybase.
- I have a public key whose fingerprint is 2ACA 250B D977 6209 F226 C629 E023 801D 6FE5 EAC9
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
Pod::Spec.new do |s| | |
s.name = "ShapeKit" | |
s.version = "0.0.1" | |
s.summary = "ShapeKit is a geometry library for iOS that aims to bridge GEOS with Apple's MapKit." | |
s.homepage = "https://github.com/mweisman/ShapeKit" | |
s.license = { :type => 'LGPL' } | |
s.author = { "Michael Weisman" => "[email protected]" } | |
s.source = { :git => "https://github.com/pkananen/ShapeKit.git", :tag => "0.0.1" } |
Pod::Spec.new do |s| | |
s.name = 'AWSiOSSDK' | |
s.version = '1.4.4' | |
s.license = 'Apache 2.0' | |
s.summary = 'Amazon Web Services SDK for iOS.' | |
s.homepage = 'http://aws.amazon.com/sdkforios' | |
s.author = { 'Amazon Web Services' => 'amazonwebservices' } | |
s.source = { :git => 'https://github.com/aws/aws-sdk-ios.git', :tag => '1.4.4' } | |
s.frameworks = 'foundation' | |
s.description = 'The AWS SDK for iOS provides a library, code samples, and documentation for developers to build connected mobile applications using AWS.' |
describe('createIntervalCallback', function() { | |
var sut = $.clockTest; | |
it('calls setInterval with callback() at a delay of 7000 ms', function() { | |
spyOn(sut, 'callback'); | |
jasmine.Clock.useMock(); | |
sut.createIntervalCallback(); | |
jasmine.Clock.tick(7000); |