picture_tag 1.0.3 → 2.0.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +3 -0
- data/Gemfile +0 -4
- data/README.md +10 -5
- data/lib/picture_tag.rb +0 -2
- data/lib/picture_tag/version.rb +1 -1
- data/picture_tag.gemspec +0 -1
- metadata +4 -17
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 37db98de1792fd82f83f0986405ca3a4d237e5aa
|
4
|
+
data.tar.gz: 293eb5e2c2703cbdea9fdc364d5cd1a0ff9d5344
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f8c25ff6cb4a6329ef1fb3b88b424f469e9bea3a761c23dc720ac90f1ab9a3fd12b68239a9e21f733188257c59247392e5207f0e6c9b80609cc815f668b6955a
|
7
|
+
data.tar.gz: 931bb36dccd7f1ea038376de1716c24212205d9eeb65be41f8df59320d1eb1b3200eb812b30b7fcb1057136fa91870e1ffed8cd5c55a0ff7eee57b34f36bbdaf
|
data/CHANGELOG.md
ADDED
data/Gemfile
CHANGED
data/README.md
CHANGED
@@ -9,10 +9,7 @@ Rails helper for `<picture>` tag integrated with [Picturefill](http://scottjehl.
|
|
9
9
|
Add this to your application's Gemfile:
|
10
10
|
|
11
11
|
```ruby
|
12
|
-
|
13
|
-
source 'https://rails-assets.org' do
|
14
|
-
gem 'rails-assets-picturefill'
|
15
|
-
end
|
12
|
+
gem 'picture_tag'
|
16
13
|
```
|
17
14
|
|
18
15
|
And then execute:
|
@@ -27,7 +24,15 @@ Or install it yourself as:
|
|
27
24
|
$ gem install picture_tag
|
28
25
|
```
|
29
26
|
|
30
|
-
|
27
|
+
In case you would like to add a picture polyfill:
|
28
|
+
|
29
|
+
```ruby
|
30
|
+
source 'https://rails-assets.org' do
|
31
|
+
gem 'rails-assets-picturefill'
|
32
|
+
end
|
33
|
+
```
|
34
|
+
|
35
|
+
And add to your `application.js`:
|
31
36
|
|
32
37
|
```JS
|
33
38
|
//= require picture_tag
|
data/lib/picture_tag.rb
CHANGED
data/lib/picture_tag/version.rb
CHANGED
data/picture_tag.gemspec
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: picture_tag
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version:
|
4
|
+
version: 2.0.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tomas Celizna
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2018-02-04 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rails
|
@@ -24,20 +24,6 @@ dependencies:
|
|
24
24
|
- - ">="
|
25
25
|
- !ruby/object:Gem::Version
|
26
26
|
version: '3.0'
|
27
|
-
- !ruby/object:Gem::Dependency
|
28
|
-
name: rails-assets-picturefill
|
29
|
-
requirement: !ruby/object:Gem::Requirement
|
30
|
-
requirements:
|
31
|
-
- - ">="
|
32
|
-
- !ruby/object:Gem::Version
|
33
|
-
version: '0'
|
34
|
-
type: :runtime
|
35
|
-
prerelease: false
|
36
|
-
version_requirements: !ruby/object:Gem::Requirement
|
37
|
-
requirements:
|
38
|
-
- - ">="
|
39
|
-
- !ruby/object:Gem::Version
|
40
|
-
version: '0'
|
41
27
|
- !ruby/object:Gem::Dependency
|
42
28
|
name: bundler
|
43
29
|
requirement: !ruby/object:Gem::Requirement
|
@@ -118,6 +104,7 @@ files:
|
|
118
104
|
- ".coveralls.yml"
|
119
105
|
- ".gitignore"
|
120
106
|
- ".travis.yml"
|
107
|
+
- CHANGELOG.md
|
121
108
|
- Gemfile
|
122
109
|
- LICENSE
|
123
110
|
- README.md
|
@@ -152,7 +139,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
152
139
|
version: '0'
|
153
140
|
requirements: []
|
154
141
|
rubyforge_project:
|
155
|
-
rubygems_version: 2.
|
142
|
+
rubygems_version: 2.5.2
|
156
143
|
signing_key:
|
157
144
|
specification_version: 4
|
158
145
|
summary: Rails helper for <picture> tag integrated with Picturefill.
|