retina_image_tag 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/.DS_Store +0 -0
- data/.gitignore +17 -0
- data/.rvmrc +6 -0
- data/Gemfile +4 -0
- data/LICENSE +22 -0
- data/README.md +43 -0
- data/Rakefile +2 -0
- data/lib/retina_image_tag.rb +1 -0
- data/lib/retina_image_tag/railtie.rb +9 -0
- data/lib/retina_image_tag/version.rb +3 -0
- data/lib/retina_image_tag/view_helpers.rb +21 -0
- data/retina_image_tag.gemspec +19 -0
- data/vendor/assets/javascripts/retina_image_tag.js +1 -0
- metadata +77 -0
data/.DS_Store
ADDED
Binary file
|
data/.gitignore
ADDED
data/.rvmrc
ADDED
data/Gemfile
ADDED
data/LICENSE
ADDED
@@ -0,0 +1,22 @@
|
|
1
|
+
Copyright (c) 2012 Felix Faerber
|
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,43 @@
|
|
1
|
+
# retina_image_tag
|
2
|
+
|
3
|
+
A high-resolution image is loaded when the retina_image_tag is called from a retina display
|
4
|
+
|
5
|
+
more info about the problem: http://theindustry.cc/2012/03/30/2x-the-retina-dilemma/
|
6
|
+
|
7
|
+
## Installation
|
8
|
+
|
9
|
+
Add this line to your application's Gemfile:
|
10
|
+
|
11
|
+
gem 'retina_image_tag'
|
12
|
+
|
13
|
+
add this line to application.js:
|
14
|
+
|
15
|
+
$ //= require retina_image_tag
|
16
|
+
|
17
|
+
And then execute:
|
18
|
+
|
19
|
+
$ bundle
|
20
|
+
|
21
|
+
|
22
|
+
|
23
|
+
|
24
|
+
## Usage
|
25
|
+
|
26
|
+
create a normal image: foo.jpg (400x400px)
|
27
|
+
|
28
|
+
and a @2x Retina Images: foo@2x.jpg (800x800px)
|
29
|
+
|
30
|
+
and use it like normal
|
31
|
+
|
32
|
+
<%= retina_image_tag 'foo.jpg' %>
|
33
|
+
|
34
|
+
|
35
|
+
|
36
|
+
|
37
|
+
## Contributing
|
38
|
+
|
39
|
+
1. Fork it
|
40
|
+
2. Create your feature branch (`git checkout -b my-new-feature`)
|
41
|
+
3. Commit your changes (`git commit -am 'Added some feature'`)
|
42
|
+
4. Push to the branch (`git push origin my-new-feature`)
|
43
|
+
5. Create new Pull Request
|
data/Rakefile
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
require 'retina_image_tag/railtie' if defined? Rails
|
@@ -0,0 +1,21 @@
|
|
1
|
+
module RetinaImageTag
|
2
|
+
module ViewHelpers
|
3
|
+
def retina_image_tag(image)
|
4
|
+
@file_path = asset_path(image)
|
5
|
+
@file_ext = File.extname(@file_path)
|
6
|
+
@file_name = File.basename(@file_path, @file_ext)
|
7
|
+
@file_dirname = File.dirname(@file_path)
|
8
|
+
|
9
|
+
@devicePixelRatio = cookies[:devicePixelRatio]
|
10
|
+
|
11
|
+
@normal_image_tag = image_tag(@file_path)
|
12
|
+
@retina_image_path = @file_dirname+"/"+@file_name+"@2x"+@file_ext
|
13
|
+
|
14
|
+
if @devicePixelRatio != '1'
|
15
|
+
image_tag(@retina_image_path)
|
16
|
+
else
|
17
|
+
@normal_image_tag
|
18
|
+
end
|
19
|
+
end
|
20
|
+
end
|
21
|
+
end
|
@@ -0,0 +1,19 @@
|
|
1
|
+
# -*- encoding: utf-8 -*-
|
2
|
+
require File.expand_path('../lib/retina_image_tag/version', __FILE__)
|
3
|
+
|
4
|
+
Gem::Specification.new do |gem|
|
5
|
+
gem.authors = ["Felix Faerber"]
|
6
|
+
gem.email = ["mail@ffaerber.com"]
|
7
|
+
gem.description = %q{A high-resolution image is loaded when the retina_image_tag is called from a retina display }
|
8
|
+
gem.summary = %q{A high-resolution image is loaded when the retina_image_tag is called from a retina display }
|
9
|
+
gem.homepage = "https://github.com/ffaerber/retina_image_tag"
|
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 = "retina_image_tag"
|
15
|
+
gem.require_paths = ["lib","vendor"]
|
16
|
+
gem.version = RetinaImageTag::VERSION
|
17
|
+
gem.add_dependency "railties", "~> 3.1"
|
18
|
+
|
19
|
+
end
|
@@ -0,0 +1 @@
|
|
1
|
+
if(window.devicePixelRatio !== undefined) document.cookie = 'devicePixelRatio = ' + window.devicePixelRatio;
|
metadata
ADDED
@@ -0,0 +1,77 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: retina_image_tag
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.1
|
5
|
+
prerelease:
|
6
|
+
platform: ruby
|
7
|
+
authors:
|
8
|
+
- Felix Faerber
|
9
|
+
autorequire:
|
10
|
+
bindir: bin
|
11
|
+
cert_chain: []
|
12
|
+
date: 2012-05-21 00:00:00.000000000 Z
|
13
|
+
dependencies:
|
14
|
+
- !ruby/object:Gem::Dependency
|
15
|
+
name: railties
|
16
|
+
requirement: !ruby/object:Gem::Requirement
|
17
|
+
none: false
|
18
|
+
requirements:
|
19
|
+
- - ~>
|
20
|
+
- !ruby/object:Gem::Version
|
21
|
+
version: '3.1'
|
22
|
+
type: :runtime
|
23
|
+
prerelease: false
|
24
|
+
version_requirements: !ruby/object:Gem::Requirement
|
25
|
+
none: false
|
26
|
+
requirements:
|
27
|
+
- - ~>
|
28
|
+
- !ruby/object:Gem::Version
|
29
|
+
version: '3.1'
|
30
|
+
description: ! 'A high-resolution image is loaded when the retina_image_tag is called
|
31
|
+
from a retina display '
|
32
|
+
email:
|
33
|
+
- mail@ffaerber.com
|
34
|
+
executables: []
|
35
|
+
extensions: []
|
36
|
+
extra_rdoc_files: []
|
37
|
+
files:
|
38
|
+
- .DS_Store
|
39
|
+
- .gitignore
|
40
|
+
- .rvmrc
|
41
|
+
- Gemfile
|
42
|
+
- LICENSE
|
43
|
+
- README.md
|
44
|
+
- Rakefile
|
45
|
+
- lib/retina_image_tag.rb
|
46
|
+
- lib/retina_image_tag/railtie.rb
|
47
|
+
- lib/retina_image_tag/version.rb
|
48
|
+
- lib/retina_image_tag/view_helpers.rb
|
49
|
+
- retina_image_tag.gemspec
|
50
|
+
- vendor/assets/javascripts/retina_image_tag.js
|
51
|
+
homepage: https://github.com/ffaerber/retina_image_tag
|
52
|
+
licenses: []
|
53
|
+
post_install_message:
|
54
|
+
rdoc_options: []
|
55
|
+
require_paths:
|
56
|
+
- lib
|
57
|
+
- vendor
|
58
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
59
|
+
none: false
|
60
|
+
requirements:
|
61
|
+
- - ! '>='
|
62
|
+
- !ruby/object:Gem::Version
|
63
|
+
version: '0'
|
64
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
65
|
+
none: false
|
66
|
+
requirements:
|
67
|
+
- - ! '>='
|
68
|
+
- !ruby/object:Gem::Version
|
69
|
+
version: '0'
|
70
|
+
requirements: []
|
71
|
+
rubyforge_project:
|
72
|
+
rubygems_version: 1.8.19
|
73
|
+
signing_key:
|
74
|
+
specification_version: 3
|
75
|
+
summary: A high-resolution image is loaded when the retina_image_tag is called from
|
76
|
+
a retina display
|
77
|
+
test_files: []
|