udongo 5.3.0 → 5.3.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 9d115e3ef3cee04ca698603e4ee45311fd889657
4
- data.tar.gz: 2cd47fc1bb20378bf303eeefd266766118cf300c
3
+ metadata.gz: d86f45348cbaf7e17874b28d0ed6127723114c69
4
+ data.tar.gz: 3720785fb4413c8da1e76fa990405c3c4023edc1
5
5
  SHA512:
6
- metadata.gz: deb6f201c70f981fd121a8cd062b47dd207796db046b0797a50922a1bb39a5856c34ba58fa4fbbbf8ed2a7fc9cb63a2afb91eb3f8b81f5d5a9ad065726266ab7
7
- data.tar.gz: f9046c6519ed43548a5287de8c7ba8e690df115c34ff2635a592d5f96466885f2d4a7f608dc366f6a1353f26477c11be5e5db49225998c7d07e6f14f623a63ff
6
+ metadata.gz: c890e82171a21337cf9fb70840042609383a69f3e2b14b4038b4655949ca41eb52d81fc261e7bb570467d3586b25213dac2661f9d685cb258126500f0aec5bc8
7
+ data.tar.gz: 9e1499743c8b7692e17fe11fc51d7470319eb86a0f251ea12214a4fea855b0b97707c5e5415e3fceb3287b21cbfcf17eeaf4dc2c91268154cb09b8d92bfffebd
data/changelog.md CHANGED
@@ -1,3 +1,9 @@
1
+ 5.3.1 - 2017-03-07
2
+ --
3
+ * Bugfix: there was an issue with loading the base module for the image
4
+ manipulation.
5
+
6
+
1
7
  5.3.0 - 2017-03-07
2
8
  --
3
9
  * Refactor the asset image resizer(s).
@@ -1,9 +1,9 @@
1
- require 'mini_magick'
1
+ require_relative 'base'
2
2
 
3
3
  module Udongo
4
4
  module ImageManipulation
5
5
  class ResizeAndPad
6
- include Base
6
+ include Udongo::ImageManipulation::Base
7
7
 
8
8
  # Resize the image to fit within the specified dimensions while retaining
9
9
  # the original aspect ratio. If necessary, will pad the remaining area
@@ -1,9 +1,9 @@
1
- require 'mini_magick'
1
+ require_relative 'base'
2
2
 
3
3
  module Udongo
4
4
  module ImageManipulation
5
5
  class ResizeToFill
6
- include Base
6
+ include Udongo::ImageManipulation::Base
7
7
 
8
8
  # Resize the image to fit within the specified dimensions while retaining
9
9
  # the aspect ratio of the original image. If necessary, crop the image in the
@@ -1,9 +1,9 @@
1
- require 'mini_magick'
1
+ require_relative 'base'
2
2
 
3
3
  module Udongo
4
4
  module ImageManipulation
5
5
  class ResizeToFit
6
- include Base
6
+ include Udongo::ImageManipulation::Base
7
7
 
8
8
  # Resize the image to fit within the specified dimensions while retaining
9
9
  # the original aspect ratio. The image may be shorter or narrower than
@@ -1,9 +1,9 @@
1
- require 'mini_magick'
1
+ require_relative 'base'
2
2
 
3
3
  module Udongo
4
4
  module ImageManipulation
5
5
  class ResizeToLimit
6
- include Base
6
+ include Udongo::ImageManipulation::Base
7
7
 
8
8
  # Resize the image to fit within the specified dimensions while retaining
9
9
  # the original aspect ratio. Will only resize the image if it is larger than the
@@ -1,3 +1,3 @@
1
1
  module Udongo
2
- VERSION = '5.3.0'
2
+ VERSION = '5.3.1'
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: udongo
3
3
  version: !ruby/object:Gem::Version
4
- version: 5.3.0
4
+ version: 5.3.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Davy Hellemans