jekyll-smartcropper 0.0.1 → 0.0.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.
- checksums.yaml +4 -4
- data/Gemfile.lock +1 -1
- data/jekyll-smartcropper.gemspec +1 -1
- data/lib/jekyll-smartcropper.rb +1 -1
- data/lib/jekyll-smartcropper/version.rb +2 -2
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 13c7c7714b732971d37edd33e7a7d5dbe4ce7f10
|
4
|
+
data.tar.gz: ffe20db47f98aadb89065ae767e47ae2413d497b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: eccb2640f19e5a57b30431f1aadfe44dff1654f283dbae07574d3ad1c02b304fbceb194e5e6734a0c12c1f729f8465e5c8571c86e7d909b22e26d5963395ddd6
|
7
|
+
data.tar.gz: fcbd1e3ecedb081153874e8cde9e18faf2c317aba9213cab0a293b8fcad13661fc16c5d6d6ad5e2ea6545703f41374c3c0a8c990ae87a21a32015cfb1e88c001
|
data/Gemfile.lock
CHANGED
data/jekyll-smartcropper.gemspec
CHANGED
@@ -4,7 +4,7 @@ require "jekyll-smartcropper/version"
|
|
4
4
|
|
5
5
|
Gem::Specification.new do |s|
|
6
6
|
s.name = "jekyll-smartcropper"
|
7
|
-
s.version = Jekyll::
|
7
|
+
s.version = Jekyll::SmartCropperGen::VERSION
|
8
8
|
s.platform = Gem::Platform::RUBY
|
9
9
|
s.authors = ["Josh Gerdes"]
|
10
10
|
s.email = ["josh@joshgerdes.com"]
|
data/lib/jekyll-smartcropper.rb
CHANGED
@@ -6,7 +6,7 @@ include Magick
|
|
6
6
|
include FileUtils
|
7
7
|
|
8
8
|
module Jekyll
|
9
|
-
module
|
9
|
+
module SmartCropperGen
|
10
10
|
# This part is copied from https://github.com/kinnetica/jekyll-plugins
|
11
11
|
# Recover from strange exception when starting server without --auto
|
12
12
|
class GeneratedImageFile < StaticFile
|