imagery 1.0.0 → 1.0.1

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 617d676eaacd1c4f9d90ef5f091c133be23b7046
4
- data.tar.gz: 73c33e7af9d03b6c049d8821e01630bc788a694d
3
+ metadata.gz: 74d56b54e649880c8dfec31a85a8c2290e42f9ad
4
+ data.tar.gz: eb3ea769f1b1ff987e7ea68212ef789d7af0becb
5
5
  SHA512:
6
- metadata.gz: 8803b9dab1271092fdcc1a559488796f7e5eaaafd6becb14aad8f72dd6be0e42e19283c00e7831dfd83cbceefac91dc94e2b86590fa6eb34b003205da1663188
7
- data.tar.gz: d31402d450fed4979743ede359de64195a68a9be0f5c21a4f6152fdda61b7d6252b08839a2759707f10667fbf462e325b345f90ae41cc02bffda8eb6022e134b
6
+ metadata.gz: 3ac0b36206541ee9af7b107082bb254f692992848ea5b4740db0e5f273d2e3d883fc014de093ce34a403c0e943db3fffd785c10cbd1d2a5760f0b164d285ed1f
7
+ data.tar.gz: 61f2de16f568c469e1216c9b182a0502bb25d8ef3b2154a73eacfb02e9a82d7efa9eb17c9d0ba87e515d5e6257a763d83f1215594639e40fb23bb6492630dd73
@@ -1,6 +1,6 @@
1
1
  Gem::Specification.new do |s|
2
2
  s.name = "imagery"
3
- s.version = "1.0.0"
3
+ s.version = "1.0.1"
4
4
  s.summary = "Simple image resizing"
5
5
  s.description = "Clean & light interface around GraphicsMagick."
6
6
  s.authors = ["Cyril David"]
@@ -2,10 +2,6 @@ require "fileutils"
2
2
  require "tempfile"
3
3
 
4
4
  class Imagery
5
- autoload :S3, "imagery/s3"
6
- autoload :Faking, "imagery/faking"
7
- autoload :Test, "imagery/test"
8
-
9
5
  # Raised during Imagery#save if the image can't be recognized.
10
6
  InvalidImage = Class.new(StandardError)
11
7
 
@@ -2,6 +2,7 @@ $:.unshift(File.expand_path("../lib", File.dirname(__FILE__)))
2
2
 
3
3
  require "cutest"
4
4
  require "imagery"
5
+ require "imagery/s3"
5
6
 
6
7
  def fixture(filename)
7
8
  File.expand_path("fixtures/#{filename}", File.dirname(__FILE__))
@@ -1,17 +1,5 @@
1
1
  require File.expand_path("helper", File.dirname(__FILE__))
2
2
 
3
- test "autloads" do
4
- e = nil
5
-
6
- begin
7
- Imagery::S3
8
- rescue Exception => ex
9
- e = ex
10
- end
11
-
12
- assert e.nil?
13
- end
14
-
15
3
  class Imagery
16
4
  include S3
17
5
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: imagery
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0
4
+ version: 1.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Cyril David