muck-users 3.1.21 → 3.1.22
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/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
3.1.
|
|
1
|
+
3.1.22
|
|
@@ -22,7 +22,7 @@
|
|
|
22
22
|
</p>
|
|
23
23
|
<% end -%>
|
|
24
24
|
<%= f.text_field :access_code_code, { :label => translate('muck.users.access_code'),
|
|
25
|
-
:extra_html => '<p id="access_code_help">' +
|
|
25
|
+
:extra_html => '<p id="access_code_help" class="attention">' +
|
|
26
26
|
translate('muck.users.access_code_help',
|
|
27
27
|
:access_request_anchor => %Q{<a class="fancy-access-request iframe" href="#{new_access_code_request_path}">},
|
|
28
28
|
:access_request_anchor_end => "</a>") + '<p>'.html_safe } -%>
|
|
@@ -56,7 +56,11 @@
|
|
|
56
56
|
<% end -%>
|
|
57
57
|
|
|
58
58
|
<div class="button form-row">
|
|
59
|
-
|
|
59
|
+
<%if params[:wait]%>
|
|
60
|
+
<%= f.submit t('muck.users.sign_up_now'), :class => 'wait-button' %>
|
|
61
|
+
<% else %>
|
|
62
|
+
<%= f.submit t('muck.users.sign_up_now') %>
|
|
63
|
+
<% end %>
|
|
60
64
|
<div class="waiting" style="display:none;"><%=translate('muck.users.signup_wait') %></div>
|
|
61
65
|
</div>
|
|
62
66
|
|
data/config/locales/en.yml
CHANGED
|
@@ -239,6 +239,7 @@ en:
|
|
|
239
239
|
access_code_edit_problem: Problem editing access code
|
|
240
240
|
access_codes: Access Codes
|
|
241
241
|
click_to_sign_up_now: Click here to sign up now.
|
|
242
|
+
go_here_to_sign_up_now: "Go here to sign up now:"
|
|
242
243
|
access_request_name: Name
|
|
243
244
|
cant_disable_admin: Can't disable an administrator. Please remove the user from the administrator role and try again.
|
|
244
245
|
roles:
|
data/muck-users.gemspec
CHANGED
|
@@ -5,11 +5,11 @@
|
|
|
5
5
|
|
|
6
6
|
Gem::Specification.new do |s|
|
|
7
7
|
s.name = %q{muck-users}
|
|
8
|
-
s.version = "3.1.
|
|
8
|
+
s.version = "3.1.22"
|
|
9
9
|
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
11
11
|
s.authors = ["Justin Ball", "Joel Duffin"]
|
|
12
|
-
s.date = %q{2011-03-
|
|
12
|
+
s.date = %q{2011-03-07}
|
|
13
13
|
s.description = %q{Easily add user signup, login and other features to your application}
|
|
14
14
|
s.email = %q{justin@tatemae.com}
|
|
15
15
|
s.extra_rdoc_files = [
|
metadata
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: muck-users
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
hash:
|
|
4
|
+
hash: 47
|
|
5
5
|
prerelease:
|
|
6
6
|
segments:
|
|
7
7
|
- 3
|
|
8
8
|
- 1
|
|
9
|
-
-
|
|
10
|
-
version: 3.1.
|
|
9
|
+
- 22
|
|
10
|
+
version: 3.1.22
|
|
11
11
|
platform: ruby
|
|
12
12
|
authors:
|
|
13
13
|
- Justin Ball
|
|
@@ -16,7 +16,7 @@ autorequire:
|
|
|
16
16
|
bindir: bin
|
|
17
17
|
cert_chain: []
|
|
18
18
|
|
|
19
|
-
date: 2011-03-
|
|
19
|
+
date: 2011-03-07 00:00:00 -07:00
|
|
20
20
|
default_executable:
|
|
21
21
|
dependencies:
|
|
22
22
|
- !ruby/object:Gem::Dependency
|