image_placeholder 0.1.0 → 0.1.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +10 -1
- data/image_placeholder.gemspec +5 -0
- data/lib/image_placeholder/version.rb +1 -1
- metadata +5 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 0ae0a1352b41c78852dfded3e196675f048db770be2bf6800a5415b625fc00df
|
4
|
+
data.tar.gz: e90f5124bcc00759fa8b3904a5c28df327486f0bddf8d1613060051433367c92
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6a2e1d62b1a8c2433f25e3f3fbd5a3396e917668992b260b282ba9ff5af42db805a64317187fc7f981d8022952d3b8dee657b2e3d9a70f7d4e66a8b45dfe18f3
|
7
|
+
data.tar.gz: 032e11c36fa0b5decb57db9e7f4770bdb821a52baadcd136287350de95f947b9ac7872a58a303ca80009b3bb3e267ca5807af92ac3d85788fdca6133d133e633
|
data/README.md
CHANGED
@@ -1,6 +1,9 @@
|
|
1
1
|
# ImagePlaceholder
|
2
2
|
|
3
|
-
Rack middleware that intercepts not found image requests and replaces them with [placeholders](https://
|
3
|
+
Rack middleware that intercepts not found image requests and replaces them with [placeholders](https://www.hanselman.com/blog/TheInternetsBestPlaceholderImageSitesForWebDevelopment.aspx). Useful for your development data references uploaded images but static files are no longer where they're supposed to be 😅.
|
4
|
+
|
5
|
+
[![Build Status](https://travis-ci.org/arkency/image_placeholder.svg?branch=master)](https://travis-ci.org/arkency/image_placeholder)
|
6
|
+
[![Gem Version](https://badge.fury.io/rb/image_placeholder.svg)](https://badge.fury.io/rb/image_placeholder)
|
4
7
|
|
5
8
|
## Installation
|
6
9
|
|
@@ -84,3 +87,9 @@ Bug reports and pull requests are welcome on GitHub at https://github.com/arkenc
|
|
84
87
|
## License
|
85
88
|
|
86
89
|
The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
|
90
|
+
|
91
|
+
## About
|
92
|
+
|
93
|
+
<img src="http://arkency.com/images/arkency.png" alt="Arkency" width="14%" align="left" />
|
94
|
+
|
95
|
+
This gem is funded and maintained by [Arkency](http://blog.arkency.com). Check out our other [open-source projects](https://github.com/arkency).
|
data/image_placeholder.gemspec
CHANGED
@@ -11,6 +11,11 @@ Gem::Specification.new do |spec|
|
|
11
11
|
|
12
12
|
spec.summary = %q{Image placeholder middleware for any Rack application.}
|
13
13
|
spec.license = "MIT"
|
14
|
+
spec.metadata = {
|
15
|
+
"changelog_uri" => "https://github.com/arkency/image_placeholder/releases",
|
16
|
+
"source_code_uri" => "https://github.com/arkency/image_placeholder",
|
17
|
+
"bug_tracker_uri" => "https://github.com/arkency/image_placeholder/issues",
|
18
|
+
}
|
14
19
|
|
15
20
|
# Specify which files should be added to the gem when it is released.
|
16
21
|
# The `git ls-files -z` loads the files in the RubyGem that have been added into git.
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: image_placeholder
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Arkency
|
@@ -96,7 +96,10 @@ files:
|
|
96
96
|
homepage:
|
97
97
|
licenses:
|
98
98
|
- MIT
|
99
|
-
metadata:
|
99
|
+
metadata:
|
100
|
+
changelog_uri: https://github.com/arkency/image_placeholder/releases
|
101
|
+
source_code_uri: https://github.com/arkency/image_placeholder
|
102
|
+
bug_tracker_uri: https://github.com/arkency/image_placeholder/issues
|
100
103
|
post_install_message:
|
101
104
|
rdoc_options: []
|
102
105
|
require_paths:
|