Skip to content

Commit

Permalink
Bumped version to 0.1.0
Browse files Browse the repository at this point in the history
Set min version to iOS 8.
Added IOKit as dependency
  • Loading branch information
jeffh committed May 16, 2015
1 parent 4aaefcb commit f3318d3
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 11 deletions.
7 changes: 4 additions & 3 deletions Robot.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = "Robot"
s.version = "0.0.2"
s.version = "0.1.0"
s.summary = "An experimental reliable, fast UIKit test driver"

s.description = <<-DESC
Expand All @@ -23,9 +23,10 @@ Pod::Spec.new do |s|
s.license = { :type => 'Apache 2.0', :file => 'LICENSE' }
s.author = { "Jeff Hui" => "jeff@jeffhui.net" }
s.platform = :ios
s.ios.deployment_target = "7.1"
s.source = { :git => "https://github.com/jeffh/robot.git", :tag => "v0.0.2" }
s.ios.deployment_target = "8.0"
s.source = { :git => "https://github.com/jeffh/robot.git", :tag => "v#{s.version}" }
s.source_files = "Robot", "Robot/**/*.{h,m}"
s.public_header_files = 'Robot/Public/**/*.h'
s.requires_arc = true
s.frameworks = 'IOKit'
end
18 changes: 10 additions & 8 deletions Robot.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -958,7 +958,7 @@
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
GCC_WARN_UNUSED_FUNCTION = YES;
GCC_WARN_UNUSED_VARIABLE = YES;
IPHONEOS_DEPLOYMENT_TARGET = 7.1;
IPHONEOS_DEPLOYMENT_TARGET = 8.0;
ONLY_ACTIVE_ARCH = YES;
SDKROOT = iphoneos;
};
Expand Down Expand Up @@ -989,7 +989,7 @@
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
GCC_WARN_UNUSED_FUNCTION = YES;
GCC_WARN_UNUSED_VARIABLE = YES;
IPHONEOS_DEPLOYMENT_TARGET = 7.1;
IPHONEOS_DEPLOYMENT_TARGET = 8.0;
SDKROOT = iphoneos;
VALIDATE_PRODUCT = YES;
};
Expand Down Expand Up @@ -1037,7 +1037,6 @@
"$(inherited)",
);
INFOPLIST_FILE = "Robot Sample/Info.plist";
IPHONEOS_DEPLOYMENT_TARGET = 7.1;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
MTL_ENABLE_DEBUG_INFO = YES;
PRODUCT_NAME = "$(TARGET_NAME)";
Expand All @@ -1053,7 +1052,6 @@
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
ENABLE_STRICT_OBJC_MSGSEND = YES;
INFOPLIST_FILE = "Robot Sample/Info.plist";
IPHONEOS_DEPLOYMENT_TARGET = 7.1;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
MTL_ENABLE_DEBUG_INFO = NO;
PRODUCT_NAME = "$(TARGET_NAME)";
Expand Down Expand Up @@ -1083,7 +1081,6 @@
"$(SRCROOT)/Externals/Cedar/Source/Headers/**",
);
INFOPLIST_FILE = "Robot Tests/Robot Tests-Info.plist";
IPHONEOS_DEPLOYMENT_TARGET = 7.0;
OTHER_LDFLAGS = (
"-ObjC",
"-lc++",
Expand Down Expand Up @@ -1113,7 +1110,6 @@
"$(SRCROOT)/Externals/Cedar/Source/Headers/**",
);
INFOPLIST_FILE = "Robot Tests/Robot Tests-Info.plist";
IPHONEOS_DEPLOYMENT_TARGET = 7.0;
OTHER_CFLAGS = "-DNS_BLOCK_ASSERTIONS=1";
OTHER_LDFLAGS = (
"-ObjC",
Expand Down Expand Up @@ -1145,9 +1141,12 @@
);
INFOPLIST_FILE = "Robot Framework/Info.plist";
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
IPHONEOS_DEPLOYMENT_TARGET = 8.3;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
MTL_ENABLE_DEBUG_INFO = YES;
OTHER_LDFLAGS = (
"-framework",
IOKit,
);
PRODUCT_NAME = Robot;
SKIP_INSTALL = YES;
TARGETED_DEVICE_FAMILY = "1,2";
Expand All @@ -1172,9 +1171,12 @@
GCC_NO_COMMON_BLOCKS = YES;
INFOPLIST_FILE = "Robot Framework/Info.plist";
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
IPHONEOS_DEPLOYMENT_TARGET = 8.3;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
MTL_ENABLE_DEBUG_INFO = NO;
OTHER_LDFLAGS = (
"-framework",
IOKit,
);
PRODUCT_NAME = Robot;
SKIP_INSTALL = YES;
TARGETED_DEVICE_FAMILY = "1,2";
Expand Down

0 comments on commit f3318d3

Please sign in to comment.