This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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' } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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]; |
NewerOlder