hobo 1.3.0.pre24 → 1.3.0.pre25
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 +1 -1
- data/lib/generators/hobo/front_controller/front_controller_generator.rb +1 -1
- data/lib/generators/hobo/user_mailer/templates/activation.erb +2 -2
- data/lib/generators/hobo/user_mailer/templates/forgot_password.erb +2 -2
- data/lib/generators/hobo/user_mailer/templates/invite.erb +2 -2
- data/lib/generators/hobo/user_mailer/templates/mailer.rb.erb +10 -10
- data/lib/hobo/routes.rb +1 -1
- data/test/irt/generators/front_controller.irt +1 -1
- metadata +13 -13
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.3.0.
|
1
|
+
1.3.0.pre25
|
@@ -43,7 +43,7 @@ module Hobo
|
|
43
43
|
|
44
44
|
def add_routes
|
45
45
|
return unless options[:add_routes]
|
46
|
-
route "match 'search' => '#{file_path}#search', :as => '
|
46
|
+
route "match 'search' => '#{file_path}#search', :as => 'site_search'"
|
47
47
|
if class_path.empty?
|
48
48
|
route "root :to => '#{file_path}#index'"
|
49
49
|
else
|
@@ -1,8 +1,8 @@
|
|
1
|
-
<%%=
|
1
|
+
<%%= @<%= name.underscore -%> %>,
|
2
2
|
|
3
3
|
To activate your account for <%%= @app_name %>, click on this link:
|
4
4
|
|
5
|
-
<%%=
|
5
|
+
<%%= <%= name.underscore -%>_activate_url :id => @<%= name.underscore -%>, :key => @key %>
|
6
6
|
|
7
7
|
Thank you,
|
8
8
|
|
@@ -1,9 +1,9 @@
|
|
1
|
-
<%%=
|
1
|
+
<%%= @<%= name.underscore -%> %>,
|
2
2
|
|
3
3
|
If you have forgotten your password for <%%= @app_name %>, you can choose
|
4
4
|
a new one by clicking on this link:
|
5
5
|
|
6
|
-
<%%= <%= name.underscore -%>_reset_password_url :id =>
|
6
|
+
<%%= <%= name.underscore -%>_reset_password_url :id => @<%= name.underscore -%>, :key => @key %>
|
7
7
|
|
8
8
|
Thank you,
|
9
9
|
|
@@ -1,8 +1,8 @@
|
|
1
|
-
<%%=
|
1
|
+
<%%= @<%= name.underscore %> %>,
|
2
2
|
|
3
3
|
You have been invited to join <%%= @app_name %>. If you wish to accept, please click on the following link
|
4
4
|
|
5
|
-
<%%=
|
5
|
+
<%%= <%= name.underscore %>_accept_invitation_url :id => @<%= name.underscore %>, :key => @key %>
|
6
6
|
|
7
7
|
Thank you,
|
8
8
|
|
@@ -1,24 +1,24 @@
|
|
1
1
|
class <%= class_name -%>Mailer < ActionMailer::Base
|
2
2
|
default :from => "no-reply@#{host}"
|
3
3
|
|
4
|
-
def forgot_password(
|
5
|
-
|
4
|
+
def forgot_password(<%= name.underscore %>, key)
|
5
|
+
@<%= name.underscore %>, @key = <%= name.underscore %>, key
|
6
6
|
mail( :subject => "#{app_name} -- forgotten password",
|
7
|
-
:to =>
|
7
|
+
:to => <%= name.underscore %>.email_address )
|
8
8
|
end
|
9
9
|
|
10
10
|
<% if invite_only? -%>
|
11
|
-
def invite(
|
12
|
-
|
11
|
+
def invite(<%= name.underscore %>, key)
|
12
|
+
@<%= name.underscore %>, @key = <%= name.underscore %>, key
|
13
13
|
mail( :subject => "Invitation to #{app_name}",
|
14
|
-
:to =>
|
14
|
+
:to => <%= name.underscore %>.email_address )
|
15
15
|
end
|
16
16
|
|
17
17
|
<% elsif options[:activation_email] %>
|
18
|
-
def activation(
|
19
|
-
|
20
|
-
mail :subject => "#{app_name} -- activate",
|
21
|
-
|
18
|
+
def activation(<%= name.underscore %>, key)
|
19
|
+
@<%= name.underscore %>, @key = <%= name.underscore %>, key
|
20
|
+
mail( :subject => "#{app_name} -- activate",
|
21
|
+
:to => <%= name.underscore %>.email_address )
|
22
22
|
end
|
23
23
|
|
24
24
|
<% end -%>
|
data/lib/hobo/routes.rb
CHANGED
@@ -23,7 +23,7 @@ module Hobo
|
|
23
23
|
def models_with(wanted_action)
|
24
24
|
@linkable_keys.map do |k|
|
25
25
|
subsite, class_name, action, method = k.split('/')
|
26
|
-
(action == wanted_action) ? class_name.constantize : nil
|
26
|
+
(action == wanted_action.to_s) ? class_name.constantize : nil
|
27
27
|
end.compact
|
28
28
|
end
|
29
29
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: hobo
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash: -
|
4
|
+
hash: -1637108445
|
5
5
|
prerelease: true
|
6
6
|
segments:
|
7
7
|
- 1
|
8
8
|
- 3
|
9
9
|
- 0
|
10
|
-
-
|
11
|
-
version: 1.3.0.
|
10
|
+
- pre25
|
11
|
+
version: 1.3.0.pre25
|
12
12
|
platform: ruby
|
13
13
|
authors:
|
14
14
|
- Tom Locke
|
@@ -16,7 +16,7 @@ autorequire:
|
|
16
16
|
bindir: bin
|
17
17
|
cert_chain: []
|
18
18
|
|
19
|
-
date: 2010-12-
|
19
|
+
date: 2010-12-19 00:00:00 -04:00
|
20
20
|
default_executable:
|
21
21
|
dependencies:
|
22
22
|
- !ruby/object:Gem::Dependency
|
@@ -59,13 +59,13 @@ dependencies:
|
|
59
59
|
requirements:
|
60
60
|
- - "="
|
61
61
|
- !ruby/object:Gem::Version
|
62
|
-
hash: -
|
62
|
+
hash: -1637108445
|
63
63
|
segments:
|
64
64
|
- 1
|
65
65
|
- 3
|
66
66
|
- 0
|
67
|
-
-
|
68
|
-
version: 1.3.0.
|
67
|
+
- pre25
|
68
|
+
version: 1.3.0.pre25
|
69
69
|
type: :runtime
|
70
70
|
version_requirements: *id003
|
71
71
|
- !ruby/object:Gem::Dependency
|
@@ -76,13 +76,13 @@ dependencies:
|
|
76
76
|
requirements:
|
77
77
|
- - "="
|
78
78
|
- !ruby/object:Gem::Version
|
79
|
-
hash: -
|
79
|
+
hash: -1637108445
|
80
80
|
segments:
|
81
81
|
- 1
|
82
82
|
- 3
|
83
83
|
- 0
|
84
|
-
-
|
85
|
-
version: 1.3.0.
|
84
|
+
- pre25
|
85
|
+
version: 1.3.0.pre25
|
86
86
|
type: :runtime
|
87
87
|
version_requirements: *id004
|
88
88
|
- !ruby/object:Gem::Dependency
|
@@ -93,13 +93,13 @@ dependencies:
|
|
93
93
|
requirements:
|
94
94
|
- - "="
|
95
95
|
- !ruby/object:Gem::Version
|
96
|
-
hash: -
|
96
|
+
hash: -1637108445
|
97
97
|
segments:
|
98
98
|
- 1
|
99
99
|
- 3
|
100
100
|
- 0
|
101
|
-
-
|
102
|
-
version: 1.3.0.
|
101
|
+
- pre25
|
102
|
+
version: 1.3.0.pre25
|
103
103
|
type: :runtime
|
104
104
|
version_requirements: *id005
|
105
105
|
- !ruby/object:Gem::Dependency
|