ums 0.1.0 → 0.1.1

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: 7923f5094754722a2c451d3a951249487bab2668
4
- data.tar.gz: f362e18f75cf1cd6dd74ecd2559fed18a8f8c100
3
+ metadata.gz: 8d9ada20fb4e90a24b5768a8be07a6a34d28ac5f
4
+ data.tar.gz: 9370cf0cbb9766db9067553e7de63a6f14c7567b
5
5
  SHA512:
6
- metadata.gz: 898fdaa99bed7774ce6de88c9cd2930b886f0c5fb3bd8c00aee05cd5fa6d4e56f5bafff02541e0cc5bab982cef293ef6e9906004efe491a1a79336457a1d24ec
7
- data.tar.gz: 4d26b8df5511a8165a1139361ace7bb3f884ecb04ba1c2be450d5311e24438857c8e23680cf1eef3f0a6825c2f0d943c3ac9d90887b7eab8b731754d777a4129
6
+ metadata.gz: 1f3b68ca93f4ced6980cd52f00650d7c7e59471ca1192fade522ecc4fd9c9dd301667a33df5164709be1173861cca84b4a6533bf551c447984b8a1abd258bdd8
7
+ data.tar.gz: 53655b3ddc211f3e326f84a6ca3794b84ee850690d8ed0735ce08eabf0ddbac364d537ae6997f3cd19723574521c0ce66fadef3c320b61abf5d88d6cc5a8c4ff
@@ -10,7 +10,8 @@
10
10
  <table class="table table-striped table-bordered table-condensed">
11
11
  <thead>
12
12
  <tr>
13
- <th>用户名</th>
13
+ <th>账号</th>
14
+ <th>姓名</th>
14
15
  <th>邮箱</th>
15
16
  <th>上次登录时间</th>
16
17
  <th>上次登录IP</th>
@@ -25,7 +26,8 @@
25
26
  <tbody>
26
27
  <% @ums_users.each do |ums_user| %>
27
28
  <tr>
28
- <td><%= ums_user.name %></td>
29
+ <td><%= ums_user.account %></td>
30
+ <td><%= ums_user.name %></td>
29
31
  <td><%= ums_user.email %></td>
30
32
  <td><%= ums_user.last_login_time.strftime('%Y-%m-%d %H:%M:%S') if ums_user.last_login_time %></td>
31
33
  <td><%= ums_user.last_login_ip %></td>
data/lib/ums/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module Ums
2
- VERSION = "0.1.0"
2
+ VERSION = "0.1.1"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ums
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - wangfuhai