From 3686cbe0bad7d770489d268d6bef2ba065ee4942 Mon Sep 17 00:00:00 2001 From: Ruslan Skorb Date: Thu, 11 Jun 2015 22:24:37 +0300 Subject: [PATCH 1/9] [RSKImageCropViewController+Protected] Fix the file name in the comments. #55 --- RSKImageCropper/RSKImageCropViewController+Protected.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/RSKImageCropper/RSKImageCropViewController+Protected.h b/RSKImageCropper/RSKImageCropViewController+Protected.h index b2814f3..b7ee031 100644 --- a/RSKImageCropper/RSKImageCropViewController+Protected.h +++ b/RSKImageCropper/RSKImageCropViewController+Protected.h @@ -1,5 +1,5 @@ // -// RSKTouchView.h +// RSKImageCropViewController+Protected.h // // Copyright (c) 2014 Ruslan Skorb, http://ruslanskorb.com/ // From 2681388b1393692e66876ca46430099789228a7b Mon Sep 17 00:00:00 2001 From: Ruslan Skorb Date: Thu, 11 Jun 2015 22:25:26 +0300 Subject: [PATCH 2/9] [RSKImageCropViewController+Protected] Update comments for methods. #55 --- RSKImageCropper/RSKImageCropViewController+Protected.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/RSKImageCropper/RSKImageCropViewController+Protected.h b/RSKImageCropper/RSKImageCropViewController+Protected.h index b7ee031..c23d787 100644 --- a/RSKImageCropper/RSKImageCropViewController+Protected.h +++ b/RSKImageCropper/RSKImageCropViewController+Protected.h @@ -25,19 +25,19 @@ @interface RSKImageCropViewController (Protected) /** - * Asynchronously crops the original image in accordance with the current settings + Asynchronously crops the original image in accordance with the current settings and tells the delegate that the original image will be / has been cropped. */ - (void)cropImage; /** - * Method that invokes the protocol method imageCropViewControllerDidCancelCrop: + Tells the delegate that the crop has been canceled. */ - (void)cancelCrop; /** - * Method that resets the image to its original position in the scroll view. - * - * @param animated BOOL + Resets the rotation angle, the position and the zoom scale of the original image to the default values. + + @param animated Set this value to YES to animate the reset. */ - (void)reset:(BOOL)animated; From 16b7b5ea8f8ae3668e79f39a6d6410e2c4f1baa2 Mon Sep 17 00:00:00 2001 From: Ruslan Skorb Date: Thu, 11 Jun 2015 22:26:59 +0300 Subject: [PATCH 3/9] [Example] Rearrange files in the vendor. --- Example/RSKImageCropperExample.xcodeproj/project.pbxproj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Example/RSKImageCropperExample.xcodeproj/project.pbxproj b/Example/RSKImageCropperExample.xcodeproj/project.pbxproj index 80a1ed7..6b0688b 100755 --- a/Example/RSKImageCropperExample.xcodeproj/project.pbxproj +++ b/Example/RSKImageCropperExample.xcodeproj/project.pbxproj @@ -211,6 +211,7 @@ B87A9A2519A4D39800D12CD4 /* RSKImageCropper.h */, B87A9A2619A4D39800D12CD4 /* RSKImageCropViewController.h */, B87A9A2719A4D39800D12CD4 /* RSKImageCropViewController.m */, + 46AAEE5D1B29155700E10C42 /* RSKImageCropViewController+Protected.h */, B87A9A2319A4D39800D12CD4 /* RSKImageScrollView.h */, B87A9A2419A4D39800D12CD4 /* RSKImageScrollView.m */, B87A9A2819A4D39800D12CD4 /* RSKTouchView.h */, @@ -219,7 +220,6 @@ B8B3824B1AC721A7004C55F0 /* UIApplication+RSKImageCropper.m */, B87A9A2A19A4D39800D12CD4 /* UIImage+RSKImageCropper.h */, B87A9A2B19A4D39800D12CD4 /* UIImage+RSKImageCropper.m */, - 46AAEE5D1B29155700E10C42 /* RSKImageCropViewController+Protected.h */, ); name = RSKImageCropper; path = ../RSKImageCropper; From 83e96def198202c766e1b74d6c390cf1e9c17289 Mon Sep 17 00:00:00 2001 From: Ruslan Skorb Date: Thu, 11 Jun 2015 22:29:31 +0300 Subject: [PATCH 4/9] [Copyright] Update the duration of copyright. --- Example/RSKImageCropperExample/RSKAppDelegate.h | 2 +- Example/RSKImageCropperExample/RSKAppDelegate.m | 2 +- Example/RSKImageCropperExample/RSKExampleViewController.h | 2 +- Example/RSKImageCropperExample/RSKExampleViewController.m | 2 +- Example/RSKImageCropperExample/main.m | 2 +- RSKImageCropper/RSKImageCropViewController+Protected.h | 2 +- RSKImageCropper/RSKImageCropViewController.h | 2 +- RSKImageCropper/RSKImageCropViewController.m | 2 +- RSKImageCropper/RSKImageCropper.h | 2 +- RSKImageCropper/RSKTouchView.h | 2 +- RSKImageCropper/RSKTouchView.m | 2 +- RSKImageCropper/UIImage+RSKImageCropper.h | 2 +- RSKImageCropper/UIImage+RSKImageCropper.m | 2 +- 13 files changed, 13 insertions(+), 13 deletions(-) diff --git a/Example/RSKImageCropperExample/RSKAppDelegate.h b/Example/RSKImageCropperExample/RSKAppDelegate.h index e0ace92..9b5f64b 100755 --- a/Example/RSKImageCropperExample/RSKAppDelegate.h +++ b/Example/RSKImageCropperExample/RSKAppDelegate.h @@ -1,7 +1,7 @@ // // RSKAppDelegate.h // -// Copyright (c) 2014 Ruslan Skorb, http://ruslanskorb.com/ +// Copyright (c) 2014-present Ruslan Skorb, http://ruslanskorb.com/ // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/Example/RSKImageCropperExample/RSKAppDelegate.m b/Example/RSKImageCropperExample/RSKAppDelegate.m index cc45047..9738c1b 100755 --- a/Example/RSKImageCropperExample/RSKAppDelegate.m +++ b/Example/RSKImageCropperExample/RSKAppDelegate.m @@ -1,7 +1,7 @@ // // RSKAppDelegate.m // -// Copyright (c) 2014 Ruslan Skorb, http://ruslanskorb.com/ +// Copyright (c) 2014-present Ruslan Skorb, http://ruslanskorb.com/ // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/Example/RSKImageCropperExample/RSKExampleViewController.h b/Example/RSKImageCropperExample/RSKExampleViewController.h index ce7ccc6..4daca6e 100755 --- a/Example/RSKImageCropperExample/RSKExampleViewController.h +++ b/Example/RSKImageCropperExample/RSKExampleViewController.h @@ -1,7 +1,7 @@ // // RSKExampleViewController.h // -// Copyright (c) 2014 Ruslan Skorb, http://ruslanskorb.com/ +// Copyright (c) 2014-present Ruslan Skorb, http://ruslanskorb.com/ // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/Example/RSKImageCropperExample/RSKExampleViewController.m b/Example/RSKImageCropperExample/RSKExampleViewController.m index 328c4a8..338ec48 100755 --- a/Example/RSKImageCropperExample/RSKExampleViewController.m +++ b/Example/RSKImageCropperExample/RSKExampleViewController.m @@ -1,7 +1,7 @@ // // RSKExampleViewController.m // -// Copyright (c) 2014 Ruslan Skorb, http://ruslanskorb.com/ +// Copyright (c) 2014-present Ruslan Skorb, http://ruslanskorb.com/ // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/Example/RSKImageCropperExample/main.m b/Example/RSKImageCropperExample/main.m index 95ce870..e3c5acc 100755 --- a/Example/RSKImageCropperExample/main.m +++ b/Example/RSKImageCropperExample/main.m @@ -1,7 +1,7 @@ // // main.m // -// Copyright (c) 2014 Ruslan Skorb, http://ruslanskorb.com/ +// Copyright (c) 2014-present Ruslan Skorb, http://ruslanskorb.com/ // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/RSKImageCropper/RSKImageCropViewController+Protected.h b/RSKImageCropper/RSKImageCropViewController+Protected.h index c23d787..28d1194 100644 --- a/RSKImageCropper/RSKImageCropViewController+Protected.h +++ b/RSKImageCropper/RSKImageCropViewController+Protected.h @@ -1,7 +1,7 @@ // // RSKImageCropViewController+Protected.h // -// Copyright (c) 2014 Ruslan Skorb, http://ruslanskorb.com/ +// Copyright (c) 2014-present Ruslan Skorb, http://ruslanskorb.com/ // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/RSKImageCropper/RSKImageCropViewController.h b/RSKImageCropper/RSKImageCropViewController.h index 43a430f..1eb2907 100755 --- a/RSKImageCropper/RSKImageCropViewController.h +++ b/RSKImageCropper/RSKImageCropViewController.h @@ -1,7 +1,7 @@ // // RSKImageCropViewController.h // -// Copyright (c) 2014 Ruslan Skorb, http://ruslanskorb.com/ +// Copyright (c) 2014-present Ruslan Skorb, http://ruslanskorb.com/ // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/RSKImageCropper/RSKImageCropViewController.m b/RSKImageCropper/RSKImageCropViewController.m index e4b8e67..520023e 100644 --- a/RSKImageCropper/RSKImageCropViewController.m +++ b/RSKImageCropper/RSKImageCropViewController.m @@ -1,7 +1,7 @@ // // RSKImageCropViewController.m // -// Copyright (c) 2014 Ruslan Skorb, http://ruslanskorb.com/ +// Copyright (c) 2014-present Ruslan Skorb, http://ruslanskorb.com/ // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/RSKImageCropper/RSKImageCropper.h b/RSKImageCropper/RSKImageCropper.h index a6bf9e9..5846be8 100755 --- a/RSKImageCropper/RSKImageCropper.h +++ b/RSKImageCropper/RSKImageCropper.h @@ -1,7 +1,7 @@ // // RSKImageCropper.h // -// Copyright (c) 2014 Ruslan Skorb, http://ruslanskorb.com/ +// Copyright (c) 2014-present Ruslan Skorb, http://ruslanskorb.com/ // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/RSKImageCropper/RSKTouchView.h b/RSKImageCropper/RSKTouchView.h index 05aa49e..6659511 100755 --- a/RSKImageCropper/RSKTouchView.h +++ b/RSKImageCropper/RSKTouchView.h @@ -1,7 +1,7 @@ // // RSKTouchView.h // -// Copyright (c) 2014 Ruslan Skorb, http://ruslanskorb.com/ +// Copyright (c) 2014-present Ruslan Skorb, http://ruslanskorb.com/ // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/RSKImageCropper/RSKTouchView.m b/RSKImageCropper/RSKTouchView.m index e0e91cc..c12ca26 100755 --- a/RSKImageCropper/RSKTouchView.m +++ b/RSKImageCropper/RSKTouchView.m @@ -1,7 +1,7 @@ // // RSKTouchView.m // -// Copyright (c) 2014 Ruslan Skorb, http://ruslanskorb.com/ +// Copyright (c) 2014-present Ruslan Skorb, http://ruslanskorb.com/ // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/RSKImageCropper/UIImage+RSKImageCropper.h b/RSKImageCropper/UIImage+RSKImageCropper.h index d9c889f..6079dab 100755 --- a/RSKImageCropper/UIImage+RSKImageCropper.h +++ b/RSKImageCropper/UIImage+RSKImageCropper.h @@ -1,7 +1,7 @@ // // UIImage+RSKImageCropper.h // -// Copyright (c) 2014 Ruslan Skorb, http://ruslanskorb.com/ +// Copyright (c) 2014-present Ruslan Skorb, http://ruslanskorb.com/ // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/RSKImageCropper/UIImage+RSKImageCropper.m b/RSKImageCropper/UIImage+RSKImageCropper.m index 0df069c..4f295c1 100755 --- a/RSKImageCropper/UIImage+RSKImageCropper.m +++ b/RSKImageCropper/UIImage+RSKImageCropper.m @@ -1,7 +1,7 @@ // // UIImage+RSKImageCropper.m // -// Copyright (c) 2014 Ruslan Skorb, http://ruslanskorb.com/ +// Copyright (c) 2014-present Ruslan Skorb, http://ruslanskorb.com/ // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal From e554de241c5b14bc691d88160497251ff2bbb40e Mon Sep 17 00:00:00 2001 From: Ruslan Skorb Date: Thu, 11 Jun 2015 22:52:00 +0300 Subject: [PATCH 5/9] [Gemfile] Update bundle. --- Gemfile.lock | 81 ++++++++++++++++++++++++++++------------------------ 1 file changed, 43 insertions(+), 38 deletions(-) diff --git a/Gemfile.lock b/Gemfile.lock index 95c12a6..a4f96de 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,99 +1,104 @@ GIT remote: https://github.com/CocoaPods/CocoaPods.git - revision: 70fc758ad6db8bbefda5205b11f701145260083e + revision: d4dc2702cc0af69c92a72380c5ed1890f5a9c5ce specs: - cocoapods (0.36.0) + cocoapods (0.37.2) activesupport (>= 3.2.15) claide (~> 0.8.1) - cocoapods-core (= 0.36.0) - cocoapods-downloader (~> 0.8.1) - cocoapods-plugins (~> 0.4.1) - cocoapods-trunk (~> 0.6.0) - cocoapods-try (~> 0.4.3) + cocoapods-core (= 0.37.2) + cocoapods-downloader (~> 0.9.0) + cocoapods-plugins (~> 0.4.2) + cocoapods-trunk (~> 0.6.1) + cocoapods-try (~> 0.4.5) colored (~> 1.2) escape (~> 0.0.4) - molinillo (~> 0.2.1) + molinillo (~> 0.2.3) nap (~> 0.8) - open4 (~> 1.3) - xcodeproj (~> 0.23.0) + xcodeproj (~> 0.24.2) GEM remote: https://rubygems.org/ specs: - activesupport (4.2.0) + activesupport (4.2.1) i18n (~> 0.7) json (~> 1.7, >= 1.7.7) minitest (~> 5.1) thread_safe (~> 0.3, >= 0.3.4) tzinfo (~> 1.1) - aws-sdk-v1 (1.63.0) + aws-sdk-v1 (1.64.0) json (~> 1.4) nokogiri (>= 1.4.4) claide (0.8.1) - clamp (0.6.4) - cocoapods-core (0.36.0) + clamp (0.6.5) + cocoapods-core (0.37.2) activesupport (>= 3.2.15) fuzzy_match (~> 2.0.4) nap (~> 0.8.0) - cocoapods-downloader (0.8.1) - cocoapods-plugins (0.4.1) + cocoapods-downloader (0.9.0) + cocoapods-plugins (0.4.2) nap - cocoapods-trunk (0.6.0) + cocoapods-trunk (0.6.1) nap (>= 0.8) netrc (= 0.7.8) - cocoapods-try (0.4.3) + cocoapods-try (0.4.5) colored (1.2) - coveralls (0.7.11) - multi_json (~> 1.10) + coveralls (0.8.1) + json (~> 1.8) rest-client (>= 1.6.8, < 2) - simplecov (~> 0.9.1) + simplecov (~> 0.10.0) term-ansicolor (~> 1.3) thor (~> 0.19.1) docile (1.1.5) + domain_name (0.5.24) + unf (>= 0.0.5, < 1.0.0) escape (0.0.4) fui (0.3.0) gli fuzzy_match (2.0.4) - gli (2.13.0) + gli (2.13.1) + http-cookie (1.0.2) + domain_name (~> 0.5) i18n (0.7.0) - json (1.8.2) - mime-types (2.4.3) + json (1.8.3) + mime-types (2.6.1) mini_portile (0.6.2) - minitest (5.5.1) - molinillo (0.2.1) - multi_json (1.11.0) + minitest (5.7.0) + molinillo (0.2.3) mustache (0.99.8) nap (0.8.0) netrc (0.7.8) nokogiri (1.6.6.2) mini_portile (~> 0.6.0) - open4 (1.3.4) - rest-client (1.7.3) + rest-client (1.8.0) + http-cookie (>= 1.0.2, < 2.0) mime-types (>= 1.16, < 3.0) netrc (~> 0.7) second_curtain (0.2.4) aws-sdk-v1 (~> 1.52) mustache (~> 0.99) - simplecov (0.9.2) + simplecov (0.10.0) docile (~> 1.1.0) - multi_json (~> 1.0) - simplecov-html (~> 0.9.0) - simplecov-html (0.9.0) - slather (1.7.0) + json (~> 1.8) + simplecov-html (~> 0.10.0) + simplecov-html (0.10.0) + slather (1.7.1) clamp (~> 0.6) nokogiri (~> 1.6.3) - xcodeproj (~> 0.23.0) + xcodeproj (~> 0.24.1) term-ansicolor (1.3.0) tins (~> 1.0) thor (0.19.1) thread_safe (0.3.5) - tins (1.3.5) + tins (1.5.2) tzinfo (1.2.2) thread_safe (~> 0.1) - xcodeproj (0.23.0) + unf (0.1.4) + unf_ext + unf_ext (0.0.7.1) + xcodeproj (0.24.2) activesupport (>= 3) colored (~> 1.2) - xcpretty (0.1.8) + xcpretty (0.1.10) PLATFORMS ruby From 99ab6ccf5066f4e8cc371e3d403f7a9857d09862 Mon Sep 17 00:00:00 2001 From: Ruslan Skorb Date: Thu, 11 Jun 2015 22:52:23 +0300 Subject: [PATCH 6/9] [Podfile.lock] Update COCOAPODS. --- Example/Podfile.lock | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Example/Podfile.lock b/Example/Podfile.lock index 7f6853f..4446241 100644 --- a/Example/Podfile.lock +++ b/Example/Podfile.lock @@ -21,4 +21,4 @@ SPEC CHECKSUMS: OCMock: a6a7dc0e3997fb9f35d99f72528698ebf60d64f2 Specta: a353759f073ffcc0a365b782fe4aaeac064c03c6 -COCOAPODS: 0.36.3 +COCOAPODS: 0.37.2 From 605f56be6061879985f43b4b106e2d2455a9fb2c Mon Sep 17 00:00:00 2001 From: Ruslan Skorb Date: Thu, 11 Jun 2015 22:55:47 +0300 Subject: [PATCH 7/9] [Podfile] Inhibit all warnings from pods. --- Example/Podfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Example/Podfile b/Example/Podfile index ebf25e9..7dbce2b 100644 --- a/Example/Podfile +++ b/Example/Podfile @@ -1,5 +1,7 @@ platform :ios, '6.0' +inhibit_all_warnings! + target 'RSKImageCropperExampleTests', :exclusive => true do pod 'FBSnapshotTestCase', '1.5' pod 'Expecta+Snapshots', '~> 1.3' From 62ed42815f234023c222603fca3da5cc8ad6c0c2 Mon Sep 17 00:00:00 2001 From: Ruslan Skorb Date: Fri, 12 Jun 2015 23:37:34 +0300 Subject: [PATCH 8/9] [Cocoapods] Explicitly specify the version of the 'cocoapods'. We need to use the version 0.36.3 to support pod 'Expecta+Snapshots' with the version 1.3.1. --- Example/Podfile.lock | 2 +- Gemfile | 2 +- Gemfile.lock | 43 ++++++++++++++++++++----------------------- 3 files changed, 22 insertions(+), 25 deletions(-) diff --git a/Example/Podfile.lock b/Example/Podfile.lock index 4446241..7f6853f 100644 --- a/Example/Podfile.lock +++ b/Example/Podfile.lock @@ -21,4 +21,4 @@ SPEC CHECKSUMS: OCMock: a6a7dc0e3997fb9f35d99f72528698ebf60d64f2 Specta: a353759f073ffcc0a365b782fe4aaeac064c03c6 -COCOAPODS: 0.37.2 +COCOAPODS: 0.36.3 diff --git a/Gemfile b/Gemfile index c7f0615..716b802 100644 --- a/Gemfile +++ b/Gemfile @@ -1,6 +1,6 @@ source 'https://rubygems.org' -gem 'cocoapods', :git => 'https://github.com/CocoaPods/CocoaPods.git' +gem 'cocoapods', '0.36.3' gem 'coveralls', require: false gem 'fui', '~> 0.3.0' diff --git a/Gemfile.lock b/Gemfile.lock index a4f96de..5038af6 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,21 +1,3 @@ -GIT - remote: https://github.com/CocoaPods/CocoaPods.git - revision: d4dc2702cc0af69c92a72380c5ed1890f5a9c5ce - specs: - cocoapods (0.37.2) - activesupport (>= 3.2.15) - claide (~> 0.8.1) - cocoapods-core (= 0.37.2) - cocoapods-downloader (~> 0.9.0) - cocoapods-plugins (~> 0.4.2) - cocoapods-trunk (~> 0.6.1) - cocoapods-try (~> 0.4.5) - colored (~> 1.2) - escape (~> 0.0.4) - molinillo (~> 0.2.3) - nap (~> 0.8) - xcodeproj (~> 0.24.2) - GEM remote: https://rubygems.org/ specs: @@ -30,7 +12,21 @@ GEM nokogiri (>= 1.4.4) claide (0.8.1) clamp (0.6.5) - cocoapods-core (0.37.2) + cocoapods (0.36.3) + activesupport (>= 3.2.15) + claide (~> 0.8.1) + cocoapods-core (= 0.36.3) + cocoapods-downloader (~> 0.9.0) + cocoapods-plugins (~> 0.4.1) + cocoapods-trunk (~> 0.6.0) + cocoapods-try (~> 0.4.3) + colored (~> 1.2) + escape (~> 0.0.4) + molinillo (~> 0.2.1) + nap (~> 0.8) + open4 (~> 1.3) + xcodeproj (~> 0.23.1) + cocoapods-core (0.36.3) activesupport (>= 3.2.15) fuzzy_match (~> 2.0.4) nap (~> 0.8.0) @@ -69,6 +65,7 @@ GEM netrc (0.7.8) nokogiri (1.6.6.2) mini_portile (~> 0.6.0) + open4 (1.3.4) rest-client (1.8.0) http-cookie (>= 1.0.2, < 2.0) mime-types (>= 1.16, < 3.0) @@ -81,10 +78,10 @@ GEM json (~> 1.8) simplecov-html (~> 0.10.0) simplecov-html (0.10.0) - slather (1.7.1) + slather (1.7.0) clamp (~> 0.6) nokogiri (~> 1.6.3) - xcodeproj (~> 0.24.1) + xcodeproj (~> 0.23.0) term-ansicolor (1.3.0) tins (~> 1.0) thor (0.19.1) @@ -95,7 +92,7 @@ GEM unf (0.1.4) unf_ext unf_ext (0.0.7.1) - xcodeproj (0.24.2) + xcodeproj (0.23.1) activesupport (>= 3) colored (~> 1.2) xcpretty (0.1.10) @@ -104,7 +101,7 @@ PLATFORMS ruby DEPENDENCIES - cocoapods! + cocoapods (= 0.36.3) coveralls fui (~> 0.3.0) second_curtain (~> 0.2.3) From 86c5f309e8cefc9eb0dd180f3310d996ce57ac09 Mon Sep 17 00:00:00 2001 From: Ruslan Skorb Date: Fri, 12 Jun 2015 23:46:24 +0300 Subject: [PATCH 9/9] Version bump (1.2.0) --- .../RSKImageCropperExample/RSKImageCropperExample-Info.plist | 2 +- RSKImageCropper.podspec | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Example/RSKImageCropperExample/RSKImageCropperExample-Info.plist b/Example/RSKImageCropperExample/RSKImageCropperExample-Info.plist index f35f913..f31df5d 100755 --- a/Example/RSKImageCropperExample/RSKImageCropperExample-Info.plist +++ b/Example/RSKImageCropperExample/RSKImageCropperExample-Info.plist @@ -17,7 +17,7 @@ CFBundlePackageType APPL CFBundleShortVersionString - 1.1.5 + 1.2.0 CFBundleSignature ???? CFBundleVersion diff --git a/RSKImageCropper.podspec b/RSKImageCropper.podspec index 7ed87a8..97e4e8c 100644 --- a/RSKImageCropper.podspec +++ b/RSKImageCropper.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = 'RSKImageCropper' - s.version = '1.1.5' + s.version = '1.2.0' s.summary = 'An image cropper for iOS like in the Contacts app with support for landscape orientation.' s.homepage = 'https://github.com/ruslanskorb/RSKImageCropper' s.license = { :type => 'MIT', :file => 'LICENSE' }