image_processing 0.10.1 → 0.10.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of image_processing might be problematic. Click here for more details.

checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: cb09d25ebc4b5049ed8ac5d25d491095fc51a3b2
4
- data.tar.gz: dc827eaabab6bbfe3074288526a7bf9129f6dae1
3
+ metadata.gz: b318b1d1a03a11e3c4e79e117874148e2348468c
4
+ data.tar.gz: b015ee2ad70f6618f16a07bb9c40e52c379f4361
5
5
  SHA512:
6
- metadata.gz: '058badcebebe89772a6cf5b3c7dddb36477262d4620227d9111beac986a1c94a976f6adbcd0b6cc4619bfe0553ae4694a451c5cee89a6403a1e923a74f9efcbc'
7
- data.tar.gz: 873fb08dec6990afb60331e3a61e7c090c64a544ee6c6baa7c62febe6889966401903ff4d9a16f78be6b0092f98b5b9eaf07aab3f4650119e1d0033119c8bb81
6
+ metadata.gz: 42a2a52ec004d534c2e0dcb4d22be500eae19dc26b996aa30695e592cd9adcfeffa40bc5d797f26de7315bba00a7be69692f0c7753abc0d892490caa939c90ba
7
+ data.tar.gz: d077e30fbe20ac7437a17cb4aefd5137d984ac515a254ec2c28ba3b409ec1c8ec57e1a3002087327bed43d2d36411d583dad789db800491f4cdddf4e4a6bbd95
data/CHANGELOG.md CHANGED
@@ -1,3 +1,7 @@
1
+ ## 0.10.2 (2018-03-22)
2
+
3
+ * [minimagick] Add back default offset arguments to deprecated `#crop` (@janko-m)
4
+
1
5
  ## 0.10.1 (2018-03-22)
2
6
 
3
7
  * [minimagick] Don't print deprecation warning for old API twice when IO objects are used (@janko-m)
@@ -87,7 +87,7 @@ module ImageProcessing
87
87
  .resample!("#{width}x#{height}")
88
88
  end
89
89
 
90
- deprecated_processing_method :crop do |file, width, height, x_offset, y_offset, block|
90
+ deprecated_processing_method :crop do |file, width, height, x_offset = 0, y_offset = 0, block|
91
91
  source(file)
92
92
  .custom(&block)
93
93
  .crop!("#{width}x#{height}+#{x_offset}+#{y_offset}")
@@ -1,3 +1,3 @@
1
1
  module ImageProcessing
2
- VERSION = "0.10.1"
2
+ VERSION = "0.10.2"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: image_processing
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.10.1
4
+ version: 0.10.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Janko Marohnić