tkh_authentication 0.9.3 → 0.9.4

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: 6447b44c0f5ec6faf90612f3aa9f2699c0e5d367
4
- data.tar.gz: 5a096e8728434da167fd31c8a0ac1b74e17ab9ce
3
+ metadata.gz: 751298d083e3463f18a86e287b371c555425cfe6
4
+ data.tar.gz: d943ae1c67c91e3866e456bc08a5df22fcf02de4
5
5
  SHA512:
6
- metadata.gz: 9f4bf1b128d359322d248c5a9f4c9038e0b3f86d869f40b357221dc22091d76f78b3f24f5a251290926492a2a9f3266b496168a636c8297e305304c1d8832bf2
7
- data.tar.gz: 1b74b75b06caaab4aa8d81d37cc825fd36ea7808ee9bf6e9a429f9dbbe5f72c959879db090bc89d8d107aa76a630306b1d0e06d713493b31a26c4fc6be64c52d
6
+ metadata.gz: 4fb7d894a8f1d5c39fb5d92b952042b10d8a23a7187e776115ea131548507a5aab31e9a2442b3891c66a0eeafc2e62f262619db6da5e70ea673a2c5257c2576a
7
+ data.tar.gz: 30b58a62346fa497bcba866828a418a83b08f6875bf39c9bdfbeee0644895dabbf27068396162d378bce5ad4d7e1d288e895fc3da23c6ed761fa9cb583432395
data/CHANGELOG.md CHANGED
@@ -2,6 +2,11 @@
2
2
 
3
3
 
4
4
 
5
+ ## 0.9.4
6
+
7
+ * Improved formatting of user index buttons
8
+
9
+
5
10
  ## 0.9.3
6
11
 
7
12
  * Various fixes and tweaks related to the Rails 4 upgrade
@@ -19,12 +19,12 @@
19
19
  <td><%= user.email %></td>
20
20
  <td>
21
21
  <% unless user.admin? %>
22
- <span class="label label-important">X</span> <%= link_to t('authentication.enable_admin'), make_admin_user_path(user), class: 'btn btn-mini', method: :post %>
22
+ <span class="label label-danger">X</span> <%= link_to t('authentication.enable_admin'), make_admin_user_path(user), class: 'btn btn-xs btn-default', method: :post %>
23
23
  <% else %>
24
- <span class="label label-success">✓</span> <%= link_to t('authentication.disable_admin'), remove_admin_user_path(user), class: 'btn btn-mini', method: :post %>
24
+ <span class="label label-success">✓</span> <%= link_to t('authentication.disable_admin'), remove_admin_user_path(user), class: 'btn btn-xs btn-primary', method: :post %>
25
25
  <% end -%>
26
26
  </td>
27
- <td><%= link_to t('edit'), edit_detail_path(user), class: 'btn btn-mini' %><%= link_to t('delete'), Detail.find(user.id), method: :delete, data: { confirm: t('are_you_sure') }, class: 'btn btn-mini btn-danger' %></td>
27
+ <td><%= link_to t('edit'), edit_detail_path(user), class: 'btn btn-xs btn-default' %><%= link_to t('delete'), Detail.find(user.id), method: :delete, data: { confirm: t('are_you_sure') }, class: 'btn btn-xs btn-danger' %></td>
28
28
  </tr>
29
29
  <% end %>
30
30
  </tbody>
@@ -1,3 +1,3 @@
1
1
  module TkhAuthentication
2
- VERSION = "0.9.3"
2
+ VERSION = "0.9.4"
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.3
4
+ version: 0.9.4
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-02-25 00:00:00.000000000 Z
11
+ date: 2014-02-27 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails