From f26632f9e68119b4a0e68569eaa0b97b614f7ef8 Mon Sep 17 00:00:00 2001 From: Oleksii Dykan Date: Fri, 29 Dec 2017 14:26:15 +0100 Subject: [PATCH 1/3] Add podspec --- SweetRouter.podspec | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 SweetRouter.podspec diff --git a/SweetRouter.podspec b/SweetRouter.podspec new file mode 100644 index 0000000..a20e2f4 --- /dev/null +++ b/SweetRouter.podspec @@ -0,0 +1,19 @@ +Pod::Spec.new do |s| + s.name = "SweetRouter" + s.version = "1.0.0" + s.summary = "Declarative URL routing in swift for Alamofire and not only :)" + s.homepage = "https://github.com/alickbass/SweetRouter" + s.license = { :type => "MIT", :file => "LICENSE" } + s.author = { "Oleksii Dykan" => "alick_bass@mail.ru" } + + s.ios.deployment_target = "8.0" + s.osx.deployment_target = "10.11" + s.watchos.deployment_target = "2.0" + s.tvos.deployment_target = "9.0" + s.requires_arc = true + + s.source = { :git => "https://github.com/alickbass/SweetRouter.git", :tag => s.version, :branch => 'master'} + s.source_files = "SweetRouter/*.swift" + s.pod_target_xcconfig = { 'SWIFT_VERSION' => '4' } + +end From 76f4d1bb20e1ee3d9de3aa94f1abb1b5d0a11eca Mon Sep 17 00:00:00 2001 From: Oleksii Dykan Date: Fri, 29 Dec 2017 14:26:23 +0100 Subject: [PATCH 2/3] Bump version number --- SweetRouter/Info.plist | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SweetRouter/Info.plist b/SweetRouter/Info.plist index df80ae9..20b05ec 100644 --- a/SweetRouter/Info.plist +++ b/SweetRouter/Info.plist @@ -15,7 +15,7 @@ CFBundlePackageType FMWK CFBundleShortVersionString - 0.6.0 + 1.0.0 CFBundleVersion $(CURRENT_PROJECT_VERSION) NSPrincipalClass From 3a12192395038d19502211fedafa5699d75c60c5 Mon Sep 17 00:00:00 2001 From: Oleksii Dykan Date: Fri, 29 Dec 2017 14:26:59 +0100 Subject: [PATCH 3/3] Update travis yaml --- .travis.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index bf9d0d9..cc71c16 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,11 +1,11 @@ language: objective-c -osx_image: xcode9 +osx_image: xcode9.2 env: - ACTION=test PLATFORM=Mac DESTINATION='platform=OS X' - ACTION=test PLATFORM=iOS DESTINATION='platform=iOS Simulator,name=iPhone 8' - ACTION=build PLATFORM=watchOS DESTINATION='platform=watchOS Simulator,name=Apple Watch - 38mm' - - ACTION=test PLATFORM=tvOS DESTINATION='platform=tvOS Simulator,name=Apple TV 1080p' + - ACTION=test PLATFORM=tvOS DESTINATION='platform=tvOS Simulator,name=Apple TV' script: - xcodebuild clean $ACTION -project SweetRouter.xcodeproj -scheme SweetRouter -destination "$DESTINATION"