fingerprintless 0.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.
- data/.gitignore +17 -0
- data/Gemfile +4 -0
- data/LICENSE +22 -0
- data/README.md +21 -0
- data/Rakefile +2 -0
- data/config/initializers/fingerprintless.rb +20 -0
- data/fingerprintless.gemspec +17 -0
- data/lib/fingerprintless.rb +6 -0
- data/lib/fingerprintless/version.rb +3 -0
- metadata +55 -0
data/.gitignore
ADDED
data/Gemfile
ADDED
data/LICENSE
ADDED
@@ -0,0 +1,22 @@
|
|
1
|
+
Copyright (c) 2012 Joost Diepenmaat
|
2
|
+
|
3
|
+
MIT License
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
6
|
+
a copy of this software and associated documentation files (the
|
7
|
+
"Software"), to deal in the Software without restriction, including
|
8
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
9
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
10
|
+
permit persons to whom the Software is furnished to do so, subject to
|
11
|
+
the following conditions:
|
12
|
+
|
13
|
+
The above copyright notice and this permission notice shall be
|
14
|
+
included in all copies or substantial portions of the Software.
|
15
|
+
|
16
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
17
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
18
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
19
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
20
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
21
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
22
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/README.md
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
# Fingerprintless
|
2
|
+
|
3
|
+
Don't want to use fingerprinted filenames when you use `<%= image_tag %>` on your rails website in production mode? Fingerprintless allows you to remove the fingerprint from an url generated by `<%= image_tag %>` in the Rails asset pipeline. This can be extremely helpful for SEO purposes or when you write a newsletter that needs a static link.
|
4
|
+
|
5
|
+
## Installation
|
6
|
+
|
7
|
+
Add this line to your application's Gemfile:
|
8
|
+
|
9
|
+
gem 'fingerprintless'
|
10
|
+
|
11
|
+
And then execute:
|
12
|
+
|
13
|
+
$ bundle
|
14
|
+
|
15
|
+
## Usage
|
16
|
+
|
17
|
+
To disable fingerprinting for a specific image in your view, use:
|
18
|
+
|
19
|
+
<%= image_tag "foobar.png", :fingerprinting => false %>
|
20
|
+
|
21
|
+
Now `<img src="/assets/foobar-c9c1735bd1858a6c3163a46059408bc2.png">` becomes `<img src="/assets/foobar.png">`.
|
data/Rakefile
ADDED
@@ -0,0 +1,20 @@
|
|
1
|
+
module ActionView
|
2
|
+
module Helpers
|
3
|
+
module AssetTagHelper
|
4
|
+
|
5
|
+
def image_tag_with_fingerprinting(source, options={})
|
6
|
+
fingerprinting = options.delete(:fingerprinting)
|
7
|
+
fingerprinting = true if fingerprinting.nil?
|
8
|
+
|
9
|
+
unless fingerprinting
|
10
|
+
source = image_tag_without_fingerprinting(source, options)
|
11
|
+
source.sub(/(\-[a-f0-9]+)\.(png|gif|jpg)"/, '.\2"').html_safe
|
12
|
+
else
|
13
|
+
image_tag_without_fingerprinting(source, options)
|
14
|
+
end
|
15
|
+
end
|
16
|
+
alias_method_chain :image_tag, :fingerprinting
|
17
|
+
|
18
|
+
end
|
19
|
+
end
|
20
|
+
end
|
@@ -0,0 +1,17 @@
|
|
1
|
+
# -*- encoding: utf-8 -*-
|
2
|
+
require File.expand_path('../lib/fingerprintless/version', __FILE__)
|
3
|
+
|
4
|
+
Gem::Specification.new do |gem|
|
5
|
+
gem.authors = ["Joost Diepenmaat"]
|
6
|
+
gem.email = ["j.diepenmaat@bluetools.nl"]
|
7
|
+
gem.description = "Use the rails image_tag without fingerprinting."
|
8
|
+
gem.summary = "Don't want to use fingerprinted filenames when you use <%= image_tag => on your rails website in production mode? Use fingerprintless."
|
9
|
+
gem.homepage = "https://github.com/bluetools/fingerprintless"
|
10
|
+
|
11
|
+
gem.files = `git ls-files`.split($\)
|
12
|
+
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
|
13
|
+
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
|
14
|
+
gem.name = "fingerprintless"
|
15
|
+
gem.require_paths = ["lib"]
|
16
|
+
gem.version = Fingerprintless::VERSION
|
17
|
+
end
|
metadata
ADDED
@@ -0,0 +1,55 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: fingerprintless
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.1
|
5
|
+
prerelease:
|
6
|
+
platform: ruby
|
7
|
+
authors:
|
8
|
+
- Joost Diepenmaat
|
9
|
+
autorequire:
|
10
|
+
bindir: bin
|
11
|
+
cert_chain: []
|
12
|
+
date: 2012-05-01 00:00:00.000000000 Z
|
13
|
+
dependencies: []
|
14
|
+
description: Use the rails image_tag without fingerprinting.
|
15
|
+
email:
|
16
|
+
- j.diepenmaat@bluetools.nl
|
17
|
+
executables: []
|
18
|
+
extensions: []
|
19
|
+
extra_rdoc_files: []
|
20
|
+
files:
|
21
|
+
- .gitignore
|
22
|
+
- Gemfile
|
23
|
+
- LICENSE
|
24
|
+
- README.md
|
25
|
+
- Rakefile
|
26
|
+
- config/initializers/fingerprintless.rb
|
27
|
+
- fingerprintless.gemspec
|
28
|
+
- lib/fingerprintless.rb
|
29
|
+
- lib/fingerprintless/version.rb
|
30
|
+
homepage: https://github.com/bluetools/fingerprintless
|
31
|
+
licenses: []
|
32
|
+
post_install_message:
|
33
|
+
rdoc_options: []
|
34
|
+
require_paths:
|
35
|
+
- lib
|
36
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
37
|
+
none: false
|
38
|
+
requirements:
|
39
|
+
- - ! '>='
|
40
|
+
- !ruby/object:Gem::Version
|
41
|
+
version: '0'
|
42
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
43
|
+
none: false
|
44
|
+
requirements:
|
45
|
+
- - ! '>='
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: '0'
|
48
|
+
requirements: []
|
49
|
+
rubyforge_project:
|
50
|
+
rubygems_version: 1.8.17
|
51
|
+
signing_key:
|
52
|
+
specification_version: 3
|
53
|
+
summary: Don't want to use fingerprinted filenames when you use <%= image_tag => on
|
54
|
+
your rails website in production mode? Use fingerprintless.
|
55
|
+
test_files: []
|