xmppify 0.0.15 → 0.0.16

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 4fd897293d990dbbfdf6c39a01001c1a9915d8b8
4
- data.tar.gz: 9745db0d40e90d76b25dd2910c0989361015c425
3
+ metadata.gz: d5272433e565030e8071d90c3d8793075e9fe27b
4
+ data.tar.gz: aef2e3f305dea21e554e83f054cb1b4c29e8fa45
5
5
  SHA512:
6
- metadata.gz: 0841cea94609f27a2ac7993ae7b845bc41e17e0fde7caed40e6c5cedeb77670f85536b531497d8b60437d3e26e065f3ea5451ad87db6b3137eaf09967a03b68f
7
- data.tar.gz: 73fd4b6090a42a5f45b944bd4aec9752b47fe7e5234f0e8dba0ebd3315739be1cec37e18f342f4cb88a6ec5edc8a821f402ca8e4ee7497677baebb0414883f73
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>
@@ -1,3 +1,3 @@
1
1
  module Xmppify
2
- VERSION = "0.0.15"
2
+ VERSION = "0.0.16"
3
3
  end
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.15
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