Skip to content

Instantly share code, notes, and snippets.

Pod::Spec.new do |s|
s.name = 'moriarty-ht'
s.version = '0.0.1'
s.source = { :git => 'https://github.com/hoteltonight/moriarty.git', :ref => 'master' }
s.source_files = 'UIView+Position.{h,m}'
end
Pod::Spec.new do |s|
s.name = 'EGOTableViewPullRefresh-ht'
s.version = '0.1.0.ht1'
s.source = { :git => 'https://github.com/hoteltonight/EGOTableViewPullRefresh.git', :commit => '204daebaabeee08440e8a023782c32c7f9c6bdd8' }
s.source_files = 'EGOTableViewPullRefresh/Classes/**/*.{h,m}'
end
Pod::Spec.new do |s|
s.name = 'SSToolkit-ht'
s.version = '0.1.2.ht1'
s.platform = :ios
s.summary = 'A collection of well-documented iOS classes for making life easier.'
s.homepage = 'http://sstoolk.it'
s.author = { 'Sam Soffes' => '[email protected]' }
s.license = 'MIT'
s.source = { :git => 'https://github.com/hoteltonight/sstoolkit.git', :ref => 'master' }
NSMutableArray *mobileAppTrackerProperties = [NSMutableArray array];
[mobileAppTrackerProperties addObject:[NSString stringWithFormat:@"Amount charged: %f", self.booking.chargedAmount]];
[mobileAppTrackerProperties addObject:[NSString stringWithFormat:@"Nights booked: %d", self.booking.numberOfNights]];
[[MobileAppTracker sharedManager] trackAction:@"booking" withObjects:mobileAppTrackerProperties];