Ifd_Mobile 0.1.1 → 0.1.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/Ifd_Mobile/lib_web.rb +70 -69
- data/lib/Ifd_Mobile/methods/IFD_Assertion.rb +44 -44
- data/lib/Ifd_Mobile/methods/core.rb +136 -136
- data/lib/Ifd_Mobile/methods/lib_var.rb +53 -53
- data/lib/Ifd_Mobile/version.rb +1 -1
- data/lib/LICENSE +3 -0
- data/project/Gemfile +7 -7
- data/project/apps/TestApp/Test App 2/GestureTestViewController.h +18 -18
- data/project/apps/TestApp/Test App 2/GestureTestViewController.m +48 -48
- data/project/apps/TestApp/Test App 2/GestureTestViewController.xib +46 -46
- data/project/apps/TestApp/Test App 2/MyViewControllerViewController.h +42 -42
- data/project/apps/TestApp/Test App 2/MyViewControllerViewController.m +193 -193
- data/project/apps/TestApp/Test App 2/TA2AppDelegate.h +28 -28
- data/project/apps/TestApp/Test App 2/TA2AppDelegate.m +85 -85
- data/project/apps/TestApp/Test App 2/TestApp-Info.plist +40 -40
- data/project/apps/TestApp/Test App 2/TestApp-Prefix.pch +29 -29
- data/project/apps/TestApp/Test App 2/en.lproj/InfoPlist.strings +21 -21
- data/project/apps/TestApp/Test App 2/en.lproj/MyViewControllerViewController.xib +175 -175
- data/project/apps/TestApp/Test App 2/main.m +31 -31
- data/project/apps/TestApp/TestApp.xcodeproj/project.pbxproj +336 -336
- data/project/apps/TestApp/TestApp.xcodeproj/project.xcworkspace/contents.xcworkspacedata +7 -7
- data/project/apps/TestApp/TestApp.xcodeproj/xcuserdata/anhpham.xcuserdatad/xcschemes/TestApp.xcscheme +88 -88
- data/project/apps/TestApp/TestApp.xcodeproj/xcuserdata/anhpham.xcuserdatad/xcschemes/xcschememanagement.plist +22 -22
- data/project/apps/TestApp/build/release-iphonesimulator/TestApp.app/Info.plist +0 -0
- data/project/features/android/Android_test1.feature +14 -14
- data/project/features/android/Android_test2.feature +14 -14
- data/project/features/iOS/iOS_test.feature +15 -15
- data/project/features/step_definitions/lib_steps/PolyClaim_homepage.rb +2 -2
- data/project/features/step_definitions/lib_steps/PolyClaim_loginpage.rb +3 -3
- data/project/features/step_definitions/repositories/android_ob_test.rb +9 -9
- data/project/features/step_definitions/repositories/ios_ob_test.rb +6 -6
- data/project/features/support/env.rb +72 -5
- data/project/features/support/hooks.rb +24 -24
- data/project/features/support/project_env.rb +41 -41
- metadata +45 -44
@@ -1,31 +1,31 @@
|
|
1
|
-
/**
|
2
|
-
* Copyright 2012 Appium Committers
|
3
|
-
*
|
4
|
-
* Licensed to the Apache Software Foundation (ASF) under one
|
5
|
-
* or more contributor license agreements. See the NOTICE file
|
6
|
-
* distributed with this work for additional information
|
7
|
-
* regarding copyright ownership. The ASF licenses this file
|
8
|
-
* to you under the Apache License, Version 2.0 (the
|
9
|
-
* "License"); you may not use this file except in compliance
|
10
|
-
* with the License. You may obtain a copy of the License at
|
11
|
-
*
|
12
|
-
* http://www.apache.org/licenses/LICENSE-2.0
|
13
|
-
*
|
14
|
-
* Unless required by applicable law or agreed to in writing,
|
15
|
-
* software distributed under the License is distributed on an
|
16
|
-
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
17
|
-
* KIND, either express or implied. See the License for the
|
18
|
-
* specific language governing permissions and limitations
|
19
|
-
* under the License.
|
20
|
-
*/
|
21
|
-
|
22
|
-
#import <UIKit/UIKit.h>
|
23
|
-
|
24
|
-
#import "TA2AppDelegate.h"
|
25
|
-
|
26
|
-
int main(int argc, char *argv[])
|
27
|
-
{
|
28
|
-
@autoreleasepool {
|
29
|
-
return UIApplicationMain(argc, argv, nil, NSStringFromClass([TA2AppDelegate class]));
|
30
|
-
}
|
31
|
-
}
|
1
|
+
/**
|
2
|
+
* Copyright 2012 Appium Committers
|
3
|
+
*
|
4
|
+
* Licensed to the Apache Software Foundation (ASF) under one
|
5
|
+
* or more contributor license agreements. See the NOTICE file
|
6
|
+
* distributed with this work for additional information
|
7
|
+
* regarding copyright ownership. The ASF licenses this file
|
8
|
+
* to you under the Apache License, Version 2.0 (the
|
9
|
+
* "License"); you may not use this file except in compliance
|
10
|
+
* with the License. You may obtain a copy of the License at
|
11
|
+
*
|
12
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
13
|
+
*
|
14
|
+
* Unless required by applicable law or agreed to in writing,
|
15
|
+
* software distributed under the License is distributed on an
|
16
|
+
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
17
|
+
* KIND, either express or implied. See the License for the
|
18
|
+
* specific language governing permissions and limitations
|
19
|
+
* under the License.
|
20
|
+
*/
|
21
|
+
|
22
|
+
#import <UIKit/UIKit.h>
|
23
|
+
|
24
|
+
#import "TA2AppDelegate.h"
|
25
|
+
|
26
|
+
int main(int argc, char *argv[])
|
27
|
+
{
|
28
|
+
@autoreleasepool {
|
29
|
+
return UIApplicationMain(argc, argv, nil, NSStringFromClass([TA2AppDelegate class]));
|
30
|
+
}
|
31
|
+
}
|