tkh_mailing_list 0.10.6 → 0.10.7

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: 675bbe61155c7e97a8f10f6ba42964b69c97ea10
4
- data.tar.gz: 6961847bef0703b4924dafe4008f1b734071d84b
3
+ metadata.gz: 17b1eafe1402fbae92b889ac767032e5a0ab8cfa
4
+ data.tar.gz: 81c2b693c68577d316994b5f94ac7ec080d9b661
5
5
  SHA512:
6
- metadata.gz: 14209e8397472e37dcbefa6fc0c9e6d88de93b32bdefb29ae3c69be88b36e57418d783353a8f86cd0e16ac15c39ac4c04533952f1be476e0687245847777fc7c
7
- data.tar.gz: 4bb37bb809d18dc640f9203db63a05a4beaf4493566ab3466c03f84fc044795c825eb3ca9b9cc95f00675166054089677c1d3f2c436922a6d1973a4c939b66ec
6
+ metadata.gz: aa06691192267016881a349849864bd1a47aa2014eece1cc593d044c341add50054759e75ab0e117d13e150955eae097802930677db47d05329704749a0783cd
7
+ data.tar.gz: f69d003e19f4f8260def795efec2ea74a4477cf027f225f6826a8ea5221392e417bfa1692c1106d1d0f7289a1928a3a62877d45479e31a155278837f237777cb
data/CHANGELOG.md CHANGED
@@ -2,6 +2,12 @@
2
2
 
3
3
 
4
4
 
5
+ ## 0.10.7
6
+
7
+ * Added navigation around show and edit views.
8
+ * Debugged public profile.
9
+
10
+
5
11
  ## 0.10.6
6
12
 
7
13
  * Added a deprecation notice to the details recource views. Details has been deprecated in favor of the members resource.
@@ -26,3 +26,5 @@
26
26
  </table>
27
27
 
28
28
  <%= render 'admin_context_menu', member: @member %>
29
+ <%# partial in tkh_menus gem or has to be added in host app %>
30
+ <%= render './shared/menus' %>
@@ -25,3 +25,5 @@
25
25
  <% end %>
26
26
 
27
27
  <%= render'admin_context_menu' %>
28
+ <%# partial in tkh_menus gem or has to be added in host app %>
29
+ <%= render './shared/menus' %>
@@ -39,3 +39,5 @@
39
39
  </table>
40
40
 
41
41
  <%= render 'admin_context_menu' %>
42
+ <%# partial in tkh_menus gem or has to be added in host app %>
43
+ <%= render './shared/menus' %>
@@ -35,11 +35,11 @@
35
35
  <tr><td class="key">first name</td><td class="value"><%= @profile.first_name %></td></tr>
36
36
  <tr><td class="key">last name</td><td class="value"><%= @profile.last_name %></td></tr>
37
37
  <tr><td class="key"><%= render 'shared/other_name_label' %></td><td class="value"><%= @profile.other_name %></td></tr>
38
- <tr><td class="key">website</td><td class="value"><%= link_to "#{URI(student.website_url).host}#{URI(student.website_url).path}#{URI(student.website_url).query}#{URI(student.website_url).fragment}", student.website_url, rel: 'nofollow' unless student.website_url.nil? %></td></tr>
39
- <tr><td class="key">facebook</td><td class="value"><%= link_to "#{URI(student.facebook_url).host}#{URI(student.facebook_url).path}#{URI(student.facebook_url).query}#{URI(student.facebook_url).fragment}", student.facebook_url, rel: 'nofollow' unless student.facebook_url.nil? %></td></tr>
40
- <tr><td class="key">twitter</td><td class="value"><%= link_to student.twitter_handle, "https://twitter.com/#{student.twitter_handle}", rel: 'nofollow' unless student.twitter_handle.nil? %></td></tr>
41
- <tr><td class="key">google+</td><td class="value"><%= link_to "#{URI(student.google_plus_url).host}#{URI(student.google_plus_url).path}#{URI(student.google_plus_url).query}#{URI(student.google_plus_url).fragment}", student.google_plus_url, rel: 'nofollow' unless student.google_plus_url.nil? %></td></tr>
42
- <%= render 'custom_public_profile_attributes', member: student %>
38
+ <tr><td class="key">website</td><td class="value"><%= link_to "#{URI(@profile.website_url).host}#{URI(@profile.website_url).path}#{URI(@profile.website_url).query}#{URI(@profile.website_url).fragment}", @profile.website_url, rel: 'nofollow' unless @profile.website_url.nil? %></td></tr>
39
+ <tr><td class="key">facebook</td><td class="value"><%= link_to "#{URI(@profile.facebook_url).host}#{URI(@profile.facebook_url).path}#{URI(@profile.facebook_url).query}#{URI(@profile.facebook_url).fragment}", @profile.facebook_url, rel: 'nofollow' unless @profile.facebook_url.nil? %></td></tr>
40
+ <tr><td class="key">twitter</td><td class="value"><%= link_to @profile.twitter_handle, "https://twitter.com/#{@profile.twitter_handle}", rel: 'nofollow' unless @profile.twitter_handle.nil? %></td></tr>
41
+ <tr><td class="key">google+</td><td class="value"><%= link_to "#{URI(@profile.google_plus_url).host}#{URI(@profile.google_plus_url).path}#{URI(@profile.google_plus_url).query}#{URI(@profile.google_plus_url).fragment}", @profile.google_plus_url, rel: 'nofollow' unless @profile.google_plus_url.nil? %></td></tr>
42
+ <%= render 'custom_public_profile_attributes', member: @profile %>
43
43
 
44
44
  </tbody>
45
45
  </table>
@@ -47,3 +47,5 @@
47
47
  <p class="text-center"><%= link_to "<span class=\"glyphicon glyphicon-pencil\"></span> change your info".html_safe, edit_profile_path, class: 'btn btn-sm btn-default' %></p>
48
48
 
49
49
  <%= render'admin_context_menu' %>
50
+ <%# partial in tkh_menus gem or has to be added in host app %>
51
+ <%= render './shared/menus' %>
@@ -1,3 +1,3 @@
1
1
  module TkhMailingList
2
- VERSION = "0.10.6"
2
+ VERSION = "0.10.7"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tkh_mailing_list
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.10.6
4
+ version: 0.10.7
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-09-10 00:00:00.000000000 Z
11
+ date: 2014-09-22 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler