tkh_authentication 0.9.12 → 0.9.13

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: a1d6fe23d6f36bc6415b90247c289a1dd34aed5d
4
- data.tar.gz: 1ad0f7650bb332d1eda0714b4ccfd6e10f4ff594
3
+ metadata.gz: 73be025eb2585dfc51527daf1a488c31ee2b306f
4
+ data.tar.gz: 951754083fb2990c88bf3e5800759502658ee695
5
5
  SHA512:
6
- metadata.gz: 4430cd4a7f7a2b717b5f03dbaecfd9a28e8a14d0af6188acfd7a67b2cb9aa0637f2748f489424040244b808f3f0699c399b4485c30347c722c3660101958ebfd
7
- data.tar.gz: f74131abc5b95796c0bfeba24648286f58f792a3831edbe7ec5e931130e8011255fd36098a3c24eed8e3606a5785b246c05469cb04bee4f3bd01efa8a249d6e1
6
+ metadata.gz: d97b07242342d535c55b5fa6b010fcdbaefb31e540a1c8433405710c9df92ffffc5678a031fc3ad4a754ccd337a2fe5e36f865972a3e18f02819e7ef1775a3c9
7
+ data.tar.gz: 60b0fe28943d8fa9fff26e727b3cd1c1409c68f5bda781e6f99f5758c1094a15a381aa8da0eb642167a63f508f84306f290f5381df40cedfcf8aad620e94b406
data/CHANGELOG.md CHANGED
@@ -2,6 +2,11 @@
2
2
 
3
3
 
4
4
 
5
+ ## 0.9.13
6
+
7
+ * Added user glyphicon next to user login info.
8
+
9
+
5
10
  ## 0.9.12
6
11
 
7
12
  * Removed autofocus from email_input_form. When form was at the bottom of a page, the browser would scroll all the way down upon loading.
@@ -1,14 +1,14 @@
1
1
  <% if current_user %>
2
2
  <ul class="nav navbar-nav navbar-right navbar-login-info">
3
3
  <li class='dropdown'>
4
- <a href="#" class="dropdown-toggle" data-toggle="dropdown"><%= current_user.email %> <b class="caret"></b></a>
4
+ <a href="#" class="dropdown-toggle" data-toggle="dropdown"><span class="glyphicon glyphicon-user"></span>&nbsp;&nbsp;<%= current_user.email %> <b class="caret"></b></a>
5
5
  <ul class="dropdown-menu">
6
6
  <%= content_tag :li, link_to(t('logout'), logout_path) %>
7
7
  </ul>
8
8
  </li>
9
9
  </ul>
10
- <% else %>
10
+ <% else # not logged in %>
11
11
  <ul class="nav navbar-nav navbar-right">
12
- <%= content_tag :li, link_to(t('authentication.login_now'), email_input_path) %>
12
+ <li><%= link_to(t('authentication.login_now'), email_input_path) %></li>
13
13
  </ul>
14
14
  <% end %>
@@ -1,3 +1,3 @@
1
1
  module TkhAuthentication
2
- VERSION = "0.9.12"
2
+ VERSION = "0.9.13"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tkh_authentication
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.9.12
4
+ version: 0.9.13
5
5
  platform: ruby
6
6
  authors:
7
7
  - Swami Atma
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-08-20 00:00:00.000000000 Z
11
+ date: 2014-08-24 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails