xmppify 0.0.13 → 0.0.14

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: 78335a6fdf9cd2e350b3616431e30d6590532424
4
- data.tar.gz: c094c45779ef8fc7d9fb95d9457d9206272ce217
3
+ metadata.gz: 9c5e0a60d313da75717e280e692a954370eb0a5c
4
+ data.tar.gz: 9a98163c4eff049cb12830961542ad1d0db66cc3
5
5
  SHA512:
6
- metadata.gz: 80c5deeb5f8b52047032b09460d5341f637f604c014d92c8879d046af14b35a5d2fedce6357f8034f1eaf31362f709cb05f162bfeed8fc6dd77497fb3dbe53f7
7
- data.tar.gz: 047b4c3d15495640c92eadb7543984f32c1c01c700ddc578f90a77da754bf8c18279a674b62dd0bde18cd9ff049b7e2a44a3d28755fb1c63edecdd952616a44f
6
+ metadata.gz: 7c0fcdd49054258ebe01d3ab53c5ee4c3edc3d54543c6b0bbfb8bec6cc0735fd08409bf8ad9e2bf034a9d955c45a1939c2915a85547317111c29019c8ebf2356
7
+ data.tar.gz: eb3162857cb91b6305026c988d23f01d44d63c599739fa41cd15b34baabf65694c5a3afaa6bba34a4df6abe5a6331e69cd025afecb64b65cd8df752c4773ce59
@@ -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.13"
2
+ VERSION = "0.0.14"
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.13
4
+ version: 0.0.14
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
  - bin/rails
167
170
  - db/migrate/20140329065635_create_users.rb
168
171
  - db/migrate/20140329070238_create_identities.rb