xmppify 0.0.15 → 0.0.16
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.
- checksums.yaml +4 -4
- data/app/views/layouts/_footer.html.erb +13 -0
- data/app/views/layouts/_header.html.erb +28 -0
- data/app/views/layouts/application.html.erb +26 -0
- data/lib/xmppify/version.rb +1 -1
- metadata +4 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: d5272433e565030e8071d90c3d8793075e9fe27b
|
|
4
|
+
data.tar.gz: aef2e3f305dea21e554e83f054cb1b4c29e8fa45
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 4df4c17df01b7266932c2eaac7de0c6111fbeb9cbf919b0979ba3f88d237633c99e09e8000875a17a71ae0680588b19b4b4282428dd7b82e99f929a888fce1f1
|
|
7
|
+
data.tar.gz: 08a43276fdffa91ec1d8b46ab90a715c500904a23ee77804ec251558796b3d4bbb4d029de5ac98b569fd38b987fb9faa43a91a586a99048873db0472954fa98f
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
<footer class="footer">
|
|
2
|
+
<small>
|
|
3
|
+
<a href="http://railstutorial.org/">Rails Tutorial</a>
|
|
4
|
+
by Michael Hartl
|
|
5
|
+
</small>
|
|
6
|
+
<nav>
|
|
7
|
+
<ul>
|
|
8
|
+
<li><%= link_to "About", about_path %></li>
|
|
9
|
+
<li><%= link_to "Contact", contact_path %></li>
|
|
10
|
+
<li><a href="http://news.railstutorial.org/">News</a></li>
|
|
11
|
+
</ul>
|
|
12
|
+
</nav>
|
|
13
|
+
</footer>
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
<header class="section">
|
|
2
|
+
<div class="w-container">
|
|
3
|
+
<div class="w-row">
|
|
4
|
+
<div class="w-col w-col-1 subfooter-left" style="
|
|
5
|
+
position: relative;
|
|
6
|
+
margin-top: -36px;
|
|
7
|
+
">
|
|
8
|
+
<a href='/'> <%= image_tag "",:width => "50px" %></a>
|
|
9
|
+
</div>
|
|
10
|
+
<div class="w-col w-col-5 subfooter-left" style="
|
|
11
|
+
left: -26px;
|
|
12
|
+
margin-top: 0px;
|
|
13
|
+
">
|
|
14
|
+
<div class="app-name">Developer Portal</div>
|
|
15
|
+
</div>
|
|
16
|
+
<div class="w-col w-col-6 nav-column" data-role='nav-links'>
|
|
17
|
+
<% if signed_in? -%>
|
|
18
|
+
<div class="welcome">Welcome, <%= current_user.email %></div>
|
|
19
|
+
<%= link_to t('.sign_out'), destroy_user_session_path, :method => :delete, class: "nav-link" %>
|
|
20
|
+
<% else -%>
|
|
21
|
+
<%= link_to "Sign in with IdleCampus", user_omniauth_authorize_path(:doorkeeper) %>
|
|
22
|
+
|
|
23
|
+
</span>
|
|
24
|
+
|
|
25
|
+
<% end -%>
|
|
26
|
+
</div>
|
|
27
|
+
</div>
|
|
28
|
+
</header>
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
<!DOCTYPE html>
|
|
2
|
+
<html>
|
|
3
|
+
<head>
|
|
4
|
+
<title>developer</title>
|
|
5
|
+
<%= stylesheet_link_tag "application", media: "all" %>
|
|
6
|
+
<%= javascript_include_tag "application" %>
|
|
7
|
+
<%= csrf_meta_tags %>
|
|
8
|
+
<!--[if lt IE 9]>
|
|
9
|
+
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
|
|
10
|
+
<![endif]-->
|
|
11
|
+
</head>
|
|
12
|
+
<body>
|
|
13
|
+
<div id='header' data-role='nav-links'>
|
|
14
|
+
<%= render 'layouts/header' %>
|
|
15
|
+
</div>
|
|
16
|
+
|
|
17
|
+
<div id='flash'>
|
|
18
|
+
<% flash.each do |key, value| -%>
|
|
19
|
+
<div id='flash_<%= key %>'><%=h value %></div>
|
|
20
|
+
<% end %>
|
|
21
|
+
</div>
|
|
22
|
+
|
|
23
|
+
<%= yield %>
|
|
24
|
+
</body>
|
|
25
|
+
</body>
|
|
26
|
+
</html>
|
data/lib/xmppify/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: xmppify
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.16
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Charlie
|
|
@@ -163,6 +163,9 @@ files:
|
|
|
163
163
|
- app/controllers/ruby_bosh.rb
|
|
164
164
|
- app/models/identity.rb
|
|
165
165
|
- app/models/user.rb
|
|
166
|
+
- app/views/layouts/_footer.html.erb
|
|
167
|
+
- app/views/layouts/_header.html.erb
|
|
168
|
+
- app/views/layouts/application.html.erb
|
|
166
169
|
- app/views/xmppify/layouts/_footer.html.erb
|
|
167
170
|
- app/views/xmppify/layouts/_header.html.erb
|
|
168
171
|
- app/views/xmppify/layouts/application.html.erb
|