Bump nokogiri
This commit is contained in:
parent
f46a30d132
commit
636cb9d2ba
2 changed files with 10 additions and 9 deletions
|
|
@ -99,12 +99,13 @@ GEM
|
||||||
mime-types (3.3.1)
|
mime-types (3.3.1)
|
||||||
mime-types-data (~> 3.2015)
|
mime-types-data (~> 3.2015)
|
||||||
mime-types-data (3.2021.0225)
|
mime-types-data (3.2021.0225)
|
||||||
mini_portile2 (2.4.0)
|
mini_portile2 (2.5.3)
|
||||||
minitest (5.12.2)
|
minitest (5.12.2)
|
||||||
multi_xml (0.6.0)
|
multi_xml (0.6.0)
|
||||||
multipart-post (2.1.1)
|
multipart-post (2.1.1)
|
||||||
nokogiri (1.10.4)
|
nokogiri (1.11.7)
|
||||||
mini_portile2 (~> 2.4.0)
|
mini_portile2 (~> 2.5.0)
|
||||||
|
racc (~> 1.4)
|
||||||
nyan-cat-formatter (0.12.0)
|
nyan-cat-formatter (0.12.0)
|
||||||
rspec (>= 2.99, >= 2.14.2, < 4)
|
rspec (>= 2.99, >= 2.14.2, < 4)
|
||||||
octokit (4.21.0)
|
octokit (4.21.0)
|
||||||
|
|
@ -131,6 +132,7 @@ GEM
|
||||||
byebug (~> 11.0)
|
byebug (~> 11.0)
|
||||||
pry (~> 0.13.0)
|
pry (~> 0.13.0)
|
||||||
public_suffix (4.0.6)
|
public_suffix (4.0.6)
|
||||||
|
racc (1.5.2)
|
||||||
rack (2.2.3)
|
rack (2.2.3)
|
||||||
rack-test (1.1.0)
|
rack-test (1.1.0)
|
||||||
rack (>= 1.0, < 3)
|
rack (>= 1.0, < 3)
|
||||||
|
|
|
||||||
|
|
@ -25,10 +25,9 @@ module DiasporaFederation
|
||||||
|
|
||||||
let(:html) { <<~HTML }
|
let(:html) { <<~HTML }
|
||||||
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd">
|
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd">
|
||||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
<html>
|
||||||
<head>
|
<head>
|
||||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
|
<meta charset="UTF-8"></meta>
|
||||||
<meta charset="UTF-8" />
|
|
||||||
<title>#{person.full_name}</title>
|
<title>#{person.full_name}</title>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
|
|
@ -87,19 +86,19 @@ module DiasporaFederation
|
||||||
<dl class="entity_photo">
|
<dl class="entity_photo">
|
||||||
<dt>Photo</dt>
|
<dt>Photo</dt>
|
||||||
<dd>
|
<dd>
|
||||||
<img class="photo avatar" width="300" height="300" src="#{photo_large_url}" />
|
<img class="photo avatar" width="300" height="300" src="#{photo_large_url}"></img>
|
||||||
</dd>
|
</dd>
|
||||||
</dl>
|
</dl>
|
||||||
<dl class="entity_photo_medium">
|
<dl class="entity_photo_medium">
|
||||||
<dt>Photo_medium</dt>
|
<dt>Photo_medium</dt>
|
||||||
<dd>
|
<dd>
|
||||||
<img class="photo avatar" width="100" height="100" src="#{photo_medium_url}" />
|
<img class="photo avatar" width="100" height="100" src="#{photo_medium_url}"></img>
|
||||||
</dd>
|
</dd>
|
||||||
</dl>
|
</dl>
|
||||||
<dl class="entity_photo_small">
|
<dl class="entity_photo_small">
|
||||||
<dt>Photo_small</dt>
|
<dt>Photo_small</dt>
|
||||||
<dd>
|
<dd>
|
||||||
<img class="photo avatar" width="50" height="50" src="#{photo_small_url}" />
|
<img class="photo avatar" width="50" height="50" src="#{photo_small_url}"></img>
|
||||||
</dd>
|
</dd>
|
||||||
</dl>
|
</dl>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue