diff --git a/README.md b/README.md index 86b9205..f441d51 100644 --- a/README.md +++ b/README.md @@ -21,13 +21,11 @@ The **Performance Tracking** module is a tool that lets you measure the performa ### Installing as CocoaPods pod -At this time the module is not published as a public CocoaPods pod so you will need to clone the repository locally. - To use the module your `Podfile` should contain: source 'https://github.com/CocoaPods/Specs.git' - pod 'RPerformanceTracking', :path => '/path-to-performance-tracking-podspec' + pod 'RPerformanceTracking' Run `pod install` to install the module and its dependencies. diff --git a/RPerformanceTracking.podspec b/RPerformanceTracking.podspec index 28b59b6..c49cb1e 100644 --- a/RPerformanceTracking.podspec +++ b/RPerformanceTracking.podspec @@ -1,13 +1,14 @@ Pod::Spec.new do |s| s.name = "RPerformanceTracking" - s.version = "0.1.1" + s.version = "1.0.0" s.authors = "Rakuten Ecosystem Mobile" s.summary = "Automatic performance tracking for all your applications." s.homepage = "https://github.com/rakutentech/" s.license = { :type => 'MIT', :file => 'LICENSE' } - s.source = { :git => "https://github.com/rakutentech/ios-perftracking.git", :tag => s.version.to_s } + s.source = { :git => "https://github.com/rakutentech/ios-perftracking.git", :tag => s.version.to_s+'-github' } s.platform = :ios, '8.0' s.requires_arc = true + s.documentation_url = "https://github.com/rakutentech/ios-perftracking" s.pod_target_xcconfig = { 'CLANG_ENABLE_MODULES' => 'YES', 'CLANG_MODULES_AUTOLINK' => 'YES', @@ -24,7 +25,6 @@ Pod::Spec.new do |s| ] s.source_files = "RPerformanceTracking/**/*.{h,m}" s.private_header_files = "RPerformanceTracking/Private/**/*.h" -# s.resource_bundles = {'RPerformanceTrackingAssets' => ['RPerformanceTracking/Assets/*']} s.module_map = 'RPerformanceTracking/RPerformanceTracking.modulemap' end # vim:syntax=ruby:et:sts=2:sw=2:ts=2:ff=unix: