This is the manual that help you use git/github
We can make this file beautiful and searchable if this error is corrected: No commas found in this CSV file in line 0.
This file contains 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
Абрамчук Геннадій Віталійович; 07.**.***4; ПОЛК ШВИДКОГО РЕАГУВАННЯ ГУ МВС УКРАЇНИ «БЕРКУТ» | |
Абрамянц Сергій Вікторович; 27.**.***4; ПМОП «БЕРКУТ» ПРИ ГУМВС УКРАЇНИ В АР КРИМ | |
Авдейчик Микола Петрович; 09.**.***0; БМОП «БЕРКУТ» УМВС УКРАІНИ В ДНІПРОПЕТРОВСЬКІЙ ОБЛ. | |
Авраменко Олег Григорович; 04.**.***8; ОРМОП «БЕРКУТ» УМВС УКРАІНИ В ЗАПОРІЗЬКІЙ ОБЛ. | |
Аврамов Микола Петрович; 27.**.***1; ПОЛК ШВИДКОГО РЕАГУВАННЯ ГУ МВС УКРАЇНИ «БЕРКУТ» | |
Агєєв Олексій Борисович; 01.**.***8; БМОП «БЕРКУТ» УМВС УКРАІНИ В ДОНЕЦЬКІЙ ОБЛ. | |
Адамович Роман Ігорович; 30.**.***6; ОРМОП «БЕРКУТ» УМВС УКРАІНИ В ЗАПОРІЗЬКІЙ ОБЛ. | |
Адамчук Сергій Степанович; 08.**.***6; ПОЛК ШВИДКОГО РЕАГУВАННЯ ГУ МВС УКРАЇНИ «БЕРКУТ» | |
Аксьонов Владислав Олександрович; 03.**.***3; ОРМОП «БЕРКУТ» УМВС УКРАІНИ В ЗАПОРІЗЬКІЙ ОБЛ. | |
Аксьонов Олександр Іванович; 05.**.***6; БМОП «БЕРКУТ» УМВС УКРАІНИ В ДОНЕЦЬКІЙ ОБЛ. |
This file contains 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
#import <Foundation/Foundation.h> | |
@interface Node : NSObject | |
@property (nonatomic) NSInteger identifier; | |
@property (nonatomic, copy) NSString *value; | |
+ (Node *)nodeWithIdentifier:(NSInteger)identifier value:(NSString *)value; | |
@end | |
@implementation Node | |
+ (Node *)nodeWithIdentifier:(NSInteger)identifier value:(NSString *)value { |
This file contains 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
#!/bin/sh | |
# Launch application using ios-sim and set up environment to inject test bundle into application | |
# Source: http://stackoverflow.com/a/12682617/504494 | |
if [ "$RUN_APPLICATION_TESTS_WITH_IOS_SIM" = "YES" ]; then | |
test_bundle_path="$BUILT_PRODUCTS_DIR/$PRODUCT_NAME.$WRAPPER_EXTENSION" | |
environment_args="--setenv DYLD_INSERT_LIBRARIES=/../../Library/PrivateFrameworks/IDEBundleInjection.framework/IDEBundleInjection --setenv XCInjectBundle=$test_bundle_path --setenv XCInjectBundleInto=$TEST_HOST" | |
ios-sim launch $(dirname $TEST_HOST) $environment_args --args -SenTest All $test_bundle_path | |
echo "Finished running tests with ios-sim" |
This file contains 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
// | |
// UIDeviceHardware.h | |
// | |
// Used to determine EXACT version of device software is running on. | |
#import <Foundation/Foundation.h> | |
@interface UIDeviceHardware : NSObject | |
- (NSString *) platform; |
This file contains 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 = "AccountTunehogiOS" | |
s.version = "0.1.0" | |
s.summary = "a Pod for usage Accounts Tunehog.com authorisation mechanism." | |
s.homepage = "http://tunhog.com/AccountTunehogiOS" | |
s.license = 'GPL' | |
s.authors = { "Sergei Merenkov" => "[email protected]", "Eugene Koval" => "[email protected]" } | |
s.source = { :git => "[email protected]:wetunein/accounts-ios.git", :tag => "0.1.0"} |
This file contains 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
/** | |
* Request OAuth access token | |
* | |
* @param string $code OAuth code we got from service | |
* @return string Token, or null if we didn't obtain a proper token | |
*/ | |
protected function _requestToken($code) | |
{ | |
$config = $this->_config->oauth; |