local-fastimage 3.0.0 → 3.0.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +4 -0
- data/README.md +2 -2
- data/lib/fastimage/version.rb +1 -1
- data/local-fastimage.gemspec +5 -5
- metadata +9 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: dd9284c076b0188defe52e6b096895b4ee269777
|
4
|
+
data.tar.gz: 19aa7d5f249704b46e1dede9ba4de56b74c51882
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d2d58e6c9668204823820a86d52797b99ed5e1a661cce1e2a4e54a95f8c25354f6b448213093d3cfe252f30e3355e9ec0745c6cd2ca033b2a5f0ffa2ececb16a
|
7
|
+
data.tar.gz: 62b2aa3589ed8b0bd931063f74886c3ad52394d3b6391457364a65bb56abe6ebd8b1997de4170dd269585aecacc13bab334aee227c46b9cd29864f73f9b4afef
|
data/CHANGELOG.md
CHANGED
data/README.md
CHANGED
@@ -20,7 +20,7 @@ And then execute:
|
|
20
20
|
$ bundle
|
21
21
|
|
22
22
|
|
23
|
-
If you are using Bundler's autorequire,
|
23
|
+
If you are using Bundler's autorequire, you're good to go. Otherwise make sure to
|
24
24
|
`require "fastimage"`.
|
25
25
|
|
26
26
|
Or install it yourself as:
|
@@ -34,7 +34,7 @@ Again, make sure to `require "fastimage"`.
|
|
34
34
|
## Usage
|
35
35
|
|
36
36
|
See [README.textile](README.textile) for more documentation. Everything should
|
37
|
-
work as advertised,
|
37
|
+
work as advertised, except for remote images of course.
|
38
38
|
|
39
39
|
|
40
40
|
|
data/lib/fastimage/version.rb
CHANGED
data/local-fastimage.gemspec
CHANGED
@@ -6,12 +6,12 @@ require "fastimage/version"
|
|
6
6
|
Gem::Specification.new do |s|
|
7
7
|
s.name = %q{local-fastimage}
|
8
8
|
s.version = FastImage::VERSION
|
9
|
-
s.
|
10
|
-
s.
|
9
|
+
s.authors = ["Stephen Sykes", "Gregor Schmidt (Planio)"]
|
10
|
+
s.email = ["sdsykes@gmail.com", "gregor@plan.io", "support@plan.io"]
|
11
11
|
|
12
|
-
s.
|
13
|
-
s.
|
14
|
-
s.homepage =
|
12
|
+
s.summary = "Local FastImage - Image info fast"
|
13
|
+
s.description = "Local FastImage finds the size or type of an image given its uri by fetching as little as needed."
|
14
|
+
s.homepage = "https://github.com/planio-gmbh/local-fastimage"
|
15
15
|
|
16
16
|
s.license = "MIT"
|
17
17
|
|
metadata
CHANGED
@@ -1,10 +1,11 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: local-fastimage
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.0.
|
4
|
+
version: 3.0.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Stephen Sykes
|
8
|
+
- Gregor Schmidt (Planio)
|
8
9
|
autorequire:
|
9
10
|
bindir: bin
|
10
11
|
cert_chain: []
|
@@ -52,9 +53,12 @@ dependencies:
|
|
52
53
|
- - "~>"
|
53
54
|
- !ruby/object:Gem::Version
|
54
55
|
version: '5.0'
|
55
|
-
description: FastImage finds the size or type of an image given its uri by fetching
|
56
|
+
description: Local FastImage finds the size or type of an image given its uri by fetching
|
56
57
|
as little as needed.
|
57
|
-
email:
|
58
|
+
email:
|
59
|
+
- sdsykes@gmail.com
|
60
|
+
- gregor@plan.io
|
61
|
+
- support@plan.io
|
58
62
|
executables: []
|
59
63
|
extensions: []
|
60
64
|
extra_rdoc_files: []
|
@@ -70,7 +74,7 @@ files:
|
|
70
74
|
- lib/fastimage.rb
|
71
75
|
- lib/fastimage/version.rb
|
72
76
|
- local-fastimage.gemspec
|
73
|
-
homepage:
|
77
|
+
homepage: https://github.com/planio-gmbh/local-fastimage
|
74
78
|
licenses:
|
75
79
|
- MIT
|
76
80
|
metadata: {}
|
@@ -93,5 +97,5 @@ rubyforge_project:
|
|
93
97
|
rubygems_version: 2.4.8
|
94
98
|
signing_key:
|
95
99
|
specification_version: 4
|
96
|
-
summary: FastImage - Image info fast
|
100
|
+
summary: Local FastImage - Image info fast
|
97
101
|
test_files: []
|