muck-auth 3.2.0 → 3.2.1
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.
- data/README.rdoc +2 -0
- data/VERSION +1 -1
- data/app/helpers/muck_auth_helper.rb +1 -1
- data/app/views/authentications/_current_services.html.erb +3 -3
- data/muck-auth.gemspec +1 -1
- metadata +3 -3
data/README.rdoc
CHANGED
@@ -38,5 +38,7 @@ https://github.com/intridea/omniauth
|
|
38
38
|
Render a full list of all services with links to authorize the service and icons:
|
39
39
|
<%= render :partial => 'authentications/available_services', :locals => { :include_icons => true } %>
|
40
40
|
|
41
|
+
Render a list of all services that the current_user has authorized:
|
42
|
+
<%= render :partial => 'authentications/current_services', :locals => { :include_icons => true, :authentications => current_user.authentications } %>
|
41
43
|
|
42
44
|
Copyright (c) 2009-2011 Tatemae.com. See LICENSE for details.
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.2.
|
1
|
+
3.2.1
|
@@ -4,9 +4,9 @@
|
|
4
4
|
<% else -%>
|
5
5
|
<p><%=translate('muck.oauth.you_are_connected_to_the_following_services') %></p>
|
6
6
|
<ul <%='class="icon-list"' if include_icons%>>
|
7
|
-
<% authentications.each do |
|
8
|
-
<li class="<%=
|
9
|
-
<%=
|
7
|
+
<% authentications.each do |auth| -%>
|
8
|
+
<li class="<%=auth_css_class(auth.provider)%> oauth_service service-link" <%= auth_icon_back(auth.provider, include_icons) %>>
|
9
|
+
<%= auth_name(auth.provider) %>
|
10
10
|
<%= link_to "X", authentication, :confirm => 'Are you sure you want to remove this authentication option?', :method => :delete, :class => "remove" %>
|
11
11
|
</li>
|
12
12
|
<% end -%>
|
data/muck-auth.gemspec
CHANGED
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: muck-auth
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
4
|
+
hash: 13
|
5
5
|
prerelease: false
|
6
6
|
segments:
|
7
7
|
- 3
|
8
8
|
- 2
|
9
|
-
-
|
10
|
-
version: 3.2.
|
9
|
+
- 1
|
10
|
+
version: 3.2.1
|
11
11
|
platform: ruby
|
12
12
|
authors:
|
13
13
|
- Justin Ball
|