phcmembers 7.0.3 → 8.0.0

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: 9d21f44a4e7e65048a4de8a9803a74ee94992826
4
- data.tar.gz: b3c1e9c9c2f691b900bb85561e5f05ab7a90aa8f
3
+ metadata.gz: de6289f7267a147b55a6ee8b1b750f291bb867fb
4
+ data.tar.gz: 8f8ff6a8c0ad69be1a3abb7f023745a9468e086c
5
5
  SHA512:
6
- metadata.gz: 66003655c2035cbb8741500951ad630a083c1adc0a45e1a1df06553dc5ee0ed2f43cd1f5e8f7a9dc55615f029842cb25ba241f1dfec4234f1f688ae7e9640af1
7
- data.tar.gz: 38298f0bbb4a9270fe1403cf163c78bec35e8051e0381abd48aa1e6d3c81d42d0a7c0ae847e0046a1593673ef50255d85c169d553a7f9d6d468d98601e104e22
6
+ metadata.gz: b1acc638fc1409dd9caf14e0eb27167fb744e051e0183b02e41ceed5e5c3821b33b34efa80ae169a5d287108f870070c1e0ed78c4ca035c0bcbb0f9117417b78
7
+ data.tar.gz: 6492d8b84a47e57f2d7eaa49ef113600c6fc2ec8f0b66ac34a3eadf413254c00120f33002a2b7df2a65d0e49fa9d756dcba135b0d1762fbf0cb19950b77db958
data/README.md CHANGED
@@ -4,8 +4,8 @@
4
4
  [![Gem Version](https://badge.fury.io/rb/phcmembers.svg)](https://badge.fury.io/rb/phcmembers)
5
5
  [![License: MIT](https://img.shields.io/badge/License-MIT-blue.svg)](https://github.com/PHCNetworks/phc-members/blob/master/MIT-LICENSE)
6
6
 
7
- ### PHCMembers(7) (Membership & Directory Engine) Documentation
8
- PHCMembers(7) rails engine to manage membership information and directory listings.
7
+ ### PHCMembers(8) (Membership & Directory Engine) Documentation
8
+ PHCMembers(8) rails engine to manage membership information and directory listings.
9
9
 
10
10
  * Fast setup of membership and web directory modules.
11
11
  * Directory and listings manager with a web directory API.
@@ -15,7 +15,7 @@ PHCMembers(7) rails engine to manage membership information and directory listin
15
15
 
16
16
  #### Step 1 - Add PHCMembers to your gemfile and run command
17
17
 
18
- gem 'phcmembers', '~> 7.0'
18
+ gem 'phcmembers', '~> 8.0'
19
19
  bundle install
20
20
 
21
21
  #### Step 2 - Add PHCMembers Database Tables
@@ -1,4 +1,4 @@
1
1
  <div class="pull-right hidden-xs">
2
- <b>Version</b> 7.0.2 - 03-09-<%= Date.today.year %>
2
+ <b>Version</b> 7.0.0 - 03-17-<%= Date.today.year %>
3
3
  </div>
4
4
  <strong>&copy; 2012-<%= Time.now.year %> <%= link_to "https://phcnetworks.net", target: "_blank", rel: "nofollow" do %>PHCNetworks<% end %></strong>
@@ -2,44 +2,43 @@
2
2
 
3
3
  <!-- PHC-Notifi Render Validation -->
4
4
  <%= render 'phcnotifi/validations', :object => @member_address %>
5
-
5
+ <!-- PHC-Notifi Render Validation -->
6
+
7
+ <!-- Form Fields -->
6
8
  <div class="form-group field_with_errors">
7
9
  <label><%= f.label :mcaddressl1, "Address Line1" %></label>
8
10
  <%= f.text_field :mcaddressl1, class: "form-control", placeholder: "Address Line 1 - Street Address" %>
9
11
  </div>
10
-
11
12
  <div class="form-group field_with_errors">
12
13
  <label><%= f.label :mcaddressl2, "Address Line2" %></label>
13
14
  <%= f.text_field :mcaddressl2, class: "form-control", placeholder: "Address Line 2 - Box - Suite - Floor" %>
14
15
  </div>
15
-
16
16
  <div class="form-group field_with_errors">
17
17
  <label><%= f.label :mccity, "City" %></label>
18
18
  <%= f.text_field :mccity, class: "form-control", placeholder: "City" %>
19
19
  </div>
20
-
21
20
  <div class="form-group field_with_errors">
22
21
  <label><%= f.label :mcprovince, "Province/State" %></label>
23
22
  <%= f.text_field :mcprovince, class: "form-control", placeholder: "Province/State" %>
24
23
  </div>
25
-
26
24
  <div class="form-group field_with_errors">
27
25
  <label><%= f.label :mccountry, "Country" %></label>
28
26
  <%= country_select("member_address", "mccountry", { priority_countries: ["CA", "GB", "FR", "US"], selected: "CA" }, { class: 'form-control', data: { attribute: "value" } }) %>
29
27
  </div>
30
-
31
28
  <div class="form-group field_with_errors">
32
29
  <label><%= f.label :mcpostalcode, "PostalCode" %></label>
33
30
  <%= f.text_field :mcpostalcode, class: "form-control", placeholder: "PostalCode" %>
34
31
  </div>
35
-
36
- <div class="form-group">
32
+ <div class="form-group field_with_errors">
37
33
  <label><%= f.label :mctype, "Address Type" %></label>
38
34
  <%= f.select :mctype, [['Billing Address','Billing'],['Street Address','Street'],['Mailing Address','Mailing'],['Home Address','Home'],['Business Address','Business']], {}, class: "form-control" %>
39
35
  </div>
40
-
36
+ <!-- Form Fields -->
37
+
38
+ <!-- Form Button -->
41
39
  <div class="actions">
42
40
  <%= f.submit class: "btn btn-primary" %>
43
41
  </div>
42
+ <!-- Form Button -->
44
43
 
45
- <% end %>
44
+ <% end %>
@@ -28,7 +28,9 @@
28
28
  </div>
29
29
  <div class="box-body">
30
30
 
31
+ <!-- Page Form (Edit) -->
31
32
  <%= render 'form', { form_url: member_profile_address_path } %>
33
+ <!-- Page Form (Edit) -->
32
34
 
33
35
  </div>
34
36
  </div>
@@ -27,41 +27,48 @@
27
27
  </div>
28
28
  <div class="box-body">
29
29
 
30
- <table class="table table-striped table-bordered table-advance table-hover">
31
- <thead>
32
- <tr>
33
- <th>Address Line 1</th>
34
- <th>Address Line 2</th>
35
- <th>City</th>
36
- <th>Province</th>
37
- <th>Country</th>
38
- <th>PostalCode</th>
39
- <th>Type</th>
40
- </tr>
41
- </thead>
42
- <tbody>
43
- <% @member_addresses.each do |member_address| %>
30
+ <!-- Index Table -->
31
+ <div class="table-responsive">
32
+ <table class="table table-bordered table-striped table-hover">
33
+ <thead>
44
34
  <tr>
45
- <td class="highlight"><%= link_to member_address.mcaddressl1, member_profile_address_path(member_address.profile, member_address) %></td>
46
- <td class="highlight"><%= link_to member_address.mcaddressl2, member_profile_address_path(member_address.profile, member_address) %></td>
47
- <td class="highlight"><%= link_to member_address.mccity, member_profile_address_path(member_address.profile, member_address) %></td>
48
- <td class="highlight"><%= link_to member_address.mcprovince, member_profile_address_path(member_address.profile, member_address) %></td>
49
- <td class="highlight"><%= link_to member_address.mccountry, member_profile_address_path(member_address.profile, member_address) %></td>
50
- <td class="highlight"><%= link_to member_address.mcpostalcode, member_profile_address_path(member_address.profile, member_address) %></td>
51
- <td class="highlight"><%= link_to member_address.mctype, member_profile_address_path(member_address.profile, member_address) %></td>
35
+ <th>Address Line 1</th>
36
+ <th>Address Line 2</th>
37
+ <th>City</th>
38
+ <th>Province</th>
39
+ <th>Country</th>
40
+ <th>PostalCode</th>
41
+ <th>Type</th>
52
42
  </tr>
53
- <% end %>
54
- </tbody>
55
- </table>
56
- </div>
57
- <div class="box-footer clearfix">
58
- <%= link_to new_member_profile_address_path, class: "btn btn-primary" do %>
59
- <i class="fa fa-plus"></i> <%= "Add a New Address for " + @members_profile_info.mfirstname + " " + @members_profile_info.mlastname %>
60
- <% end %>
61
- </div>
43
+ </thead>
44
+ <tbody>
45
+ <% @member_addresses.each do |member_address| %>
46
+ <tr>
47
+ <td class="highlight"><%= link_to member_address.mcaddressl1, member_profile_address_path(member_address.profile, member_address) %></td>
48
+ <td class="highlight"><%= link_to member_address.mcaddressl2, member_profile_address_path(member_address.profile, member_address) %></td>
49
+ <td class="highlight"><%= link_to member_address.mccity, member_profile_address_path(member_address.profile, member_address) %></td>
50
+ <td class="highlight"><%= link_to member_address.mcprovince, member_profile_address_path(member_address.profile, member_address) %></td>
51
+ <td class="highlight"><%= link_to member_address.mccountry, member_profile_address_path(member_address.profile, member_address) %></td>
52
+ <td class="highlight"><%= link_to member_address.mcpostalcode, member_profile_address_path(member_address.profile, member_address) %></td>
53
+ <td class="highlight"><%= link_to member_address.mctype, member_profile_address_path(member_address.profile, member_address) %></td>
54
+ </tr>
55
+ <% end %>
56
+ </tbody>
57
+ </table>
58
+ </div>
59
+ <!-- Index Table -->
60
+
61
+ <!-- Panel Footer -->
62
+ <div class="box-footer clearfix">
63
+ <%= link_to new_member_profile_address_path, class: "btn btn-primary" do %>
64
+ <i class="fa fa-plus"></i> <%= "Add a New Address for " + @members_profile_info.mfirstname + " " + @members_profile_info.mlastname %>
65
+ <% end %>
66
+ </div>
67
+ <!-- Panel Footer -->
62
68
 
69
+ </div>
63
70
  </div>
64
71
  </div>
65
72
  </div>
66
73
  </section>
67
- <!-- Main Content -->
74
+ <!-- Main Content -->
@@ -28,7 +28,9 @@
28
28
  </div>
29
29
  <div class="box-body">
30
30
 
31
+ <!-- Page Form (New) -->
31
32
  <%= render 'form', { form_url: member_profile_addresses_path } %>
33
+ <!-- Page Form (New) -->
32
34
 
33
35
  </div>
34
36
  </div>
@@ -2,42 +2,37 @@
2
2
 
3
3
  <!-- PHC-Notifi Render Validation -->
4
4
  <%= render 'phcnotifi/validations', :object => @member_listing %>
5
-
5
+ <!-- PHC-Notifi Render Validation -->
6
+
7
+ <!-- Form Fields -->
6
8
  <div class="form-group field_with_errors">
7
9
  <%= f.label :mbcompanyname, "Company Name" %>
8
10
  <%= f.text_field :mbcompanyname, class: "form-control", placeholder: "Business/Organization: Name" %>
9
11
  </div>
10
-
11
12
  <div class="form-group field_with_errors">
12
13
  <%= f.label :mbcontactname, "Contact Name" %>
13
14
  <%= f.text_field :mbcontactname, class: "form-control", placeholder: "Business/Organization: Contact Person" %>
14
15
  </div>
15
-
16
16
  <div class="form-group field_with_errors">
17
17
  <%= f.label :mbaddressl1, "Address Line 1" %>
18
18
  <%= f.text_field :mbaddressl1, class: "form-control", placeholder: "Location: Street Address" %>
19
19
  </div>
20
-
21
20
  <div class="form-group field_with_errors">
22
21
  <%= f.label :mbaddressl2, "Address Line 2" %>
23
22
  <%= f.text_field :mbaddressl2, class: "form-control", placeholder: "Location: Box - Suite - Floor" %>
24
23
  </div>
25
-
26
24
  <div class="form-group field_with_errors">
27
25
  <%= f.label :mbcity, "City" %>
28
26
  <%= f.text_field :mbcity, class: "form-control", placeholder: "Location: City" %>
29
27
  </div>
30
-
31
28
  <div class="form-group field_with_errors">
32
29
  <%= f.label :mbprovince, "Province/State" %>
33
30
  <%= f.text_field :mbprovince, class: "form-control", placeholder: "Location: Province/State" %>
34
31
  </div>
35
-
36
32
  <div class="form-group field_with_errors">
37
33
  <%= f.label :mbcountry, "Country" %>
38
34
  <%= country_select("member_listing", "mbcountry", { priority_countries: ["CA", "GB", "FR", "US"], selected: "CA" }, { class: 'form-control', data: { attribute: "value" } }) %>
39
35
  </div>
40
-
41
36
  <div class="form-group field_with_errors">
42
37
  <%= f.label :mbpostalcode, "Postal Code" %><br>
43
38
  <%= f.text_field :mbpostalcode, class: "form-control", placeholder: "Location: PostalCode" %>
@@ -52,21 +47,22 @@
52
47
  <%= f.label :mbcontactemail, "Business General Email" %>
53
48
  <%= f.text_field :mbcontactemail, class: "form-control", placeholder: "Business/Organization: Email Address (Public)" %>
54
49
  </div>
55
-
56
50
  <div class="form-group field_with_errors">
57
51
  <%= f.label :mbwebsite, "Business Website" %>
58
52
  <%= f.text_field :mbwebsite, class: "form-control", placeholder: "Business/Organization: Website (Public)" %>
59
53
  </div>
60
-
61
54
  <div class="form-group">
62
55
  <%= f.collection_check_boxes :category_ids, Phcmembers::Directory::Category.all, :id, :catname do |listing_category| %>
63
56
  <%= listing_category.check_box %>
64
57
  <%= listing_category.label %></br>
65
58
  <% end %>
66
59
  </div>
67
-
60
+ <!-- Form Fields -->
61
+
62
+ <!-- Form Button -->
68
63
  <div class="actions">
69
64
  <%= f.submit class: "btn btn-primary" %>
70
65
  </div>
66
+ <!-- Form Button -->
71
67
 
72
- <% end %>
68
+ <% end %>
@@ -28,7 +28,9 @@
28
28
  </div>
29
29
  <div class="box-body">
30
30
 
31
+ <!-- Page Form (Edit) -->
31
32
  <%= render 'form', { form_url: member_profile_listing_path } %>
33
+ <!-- Page Form (Edit) -->
32
34
 
33
35
  </div>
34
36
  </div>
@@ -27,41 +27,48 @@
27
27
  </div>
28
28
  <div class="box-body">
29
29
 
30
- <table class="table table-striped table-bordered table-hover dataTables-example">
31
- <thead class="thead-inverse">
32
- <tr>
33
- <th>Company Name</th>
34
- <th>Conact Name</th>
35
- <th>City</th>
36
- <th>Country</th>
37
- <th>Listing Phone</th>
38
- <th>Listing Email</th>
39
- <th>Listing Website</th>
40
- <th></th>
41
- </tr>
42
- </thead>
43
- <tbody>
44
- <% @member_listings.each do |member_listing| %>
30
+ <!-- Index Table -->
31
+ <div class="table-responsive">
32
+ <table class="table table-bordered table-striped table-hover">
33
+ <thead>
45
34
  <tr>
46
- <td class="highlight"><%= link_to member_listing.mbcompanyname, member_profile_listing_path(member_listing.profile, member_listing) %></td>
47
- <td class="highlight"><%= link_to member_listing.mbcontactname, member_profile_listing_path(member_listing.profile, member_listing) %></td>
48
- <td class="highlight"><%= link_to member_listing.mbcity, member_profile_listing_path(member_listing.profile, member_listing) %></td>
49
- <td class="highlight"><%= link_to member_listing.mbcountry, member_profile_listing_path(member_listing.profile, member_listing) %></td>
50
- <td class="highlight"><%= link_to member_listing.mbphone, member_profile_listing_path(member_listing.profile, member_listing) %></td>
51
- <td class="highlight"><%= link_to member_listing.mbcontactemail, member_profile_listing_path(member_listing.profile, member_listing) %></td>
52
- <td class="highlight"><%= link_to member_listing.mbwebsite, member_profile_listing_path(member_listing.profile, member_listing) %></td>
53
- <td><%= link_to 'Remove', member_profile_listing_path(member_listing.profile, member_listing), class: "btn btn-danger btn-xs", method: :delete, data: { confirm: 'Are you sure? This will remove address information and cannot be reversed.' } %></td>
35
+ <th>Company Name</th>
36
+ <th>Conact Name</th>
37
+ <th>City</th>
38
+ <th>Country</th>
39
+ <th>Listing Phone</th>
40
+ <th>Listing Email</th>
41
+ <th>Listing Website</th>
42
+ <th></th>
54
43
  </tr>
55
- <% end %>
56
- </tbody>
57
- </table>
58
- </div>
59
- <div class="box-footer clearfix">
60
- <%= link_to new_member_profile_listing_path, class: "btn btn-primary" do %>
61
- <i class="fa fa-plus"></i> Create a New Listing for <%= @members_profile_info.mfirstname + ' ' + @members_profile_info.mlastname %>
62
- <% end %>
63
- </div>
44
+ </thead>
45
+ <tbody>
46
+ <% @member_listings.each do |member_listing| %>
47
+ <tr>
48
+ <td class="highlight"><%= link_to member_listing.mbcompanyname, member_profile_listing_path(member_listing.profile, member_listing) %></td>
49
+ <td class="highlight"><%= link_to member_listing.mbcontactname, member_profile_listing_path(member_listing.profile, member_listing) %></td>
50
+ <td class="highlight"><%= link_to member_listing.mbcity, member_profile_listing_path(member_listing.profile, member_listing) %></td>
51
+ <td class="highlight"><%= link_to member_listing.mbcountry, member_profile_listing_path(member_listing.profile, member_listing) %></td>
52
+ <td class="highlight"><%= link_to member_listing.mbphone, member_profile_listing_path(member_listing.profile, member_listing) %></td>
53
+ <td class="highlight"><%= link_to member_listing.mbcontactemail, member_profile_listing_path(member_listing.profile, member_listing) %></td>
54
+ <td class="highlight"><%= link_to member_listing.mbwebsite, member_profile_listing_path(member_listing.profile, member_listing) %></td>
55
+ <td><%= link_to 'Remove', member_profile_listing_path(member_listing.profile, member_listing), class: "btn btn-danger btn-xs", method: :delete, data: { confirm: 'Are you sure? This will remove address information and cannot be reversed.' } %></td>
56
+ </tr>
57
+ <% end %>
58
+ </tbody>
59
+ </table>
60
+ </div>
61
+ <!-- Index Table -->
64
62
 
63
+ <!-- Panel Footer -->
64
+ <div class="box-footer clearfix">
65
+ <%= link_to new_member_profile_listing_path, class: "btn btn-primary" do %>
66
+ <i class="fa fa-plus"></i> Create a New Listing for <%= @members_profile_info.mfirstname + ' ' + @members_profile_info.mlastname %>
67
+ <% end %>
68
+ </div>
69
+ <!-- Panel Footer -->
70
+
71
+ </div>
65
72
  </div>
66
73
  </div>
67
74
  </div>
@@ -28,7 +28,9 @@
28
28
  </div>
29
29
  <div class="box-body">
30
30
 
31
+ <!-- Page Form (New) -->
31
32
  <%= render 'form', { form_url: member_profile_listings_path } %>
33
+ <!-- Page Form (New) -->
32
34
 
33
35
  </div>
34
36
  </div>
@@ -2,7 +2,9 @@
2
2
 
3
3
  <!-- PHC-Notifi Render Validation -->
4
4
  <%= render 'phcnotifi/validations', :object => @member_profile %>
5
-
5
+ <!-- PHC-Notifi Render Validation -->
6
+
7
+ <!-- Form Fields -->
6
8
  <div class="form-group field_with_errors">
7
9
  <%= f.label :mfirstname, "First Name*" %>
8
10
  <%= f.text_field :mfirstname, class: 'form-control', placeholder: 'First Name' %>
@@ -23,9 +25,12 @@
23
25
  <%= f.label :mphone, "Contact Phone Number*" %>
24
26
  <%= f.text_field :mphone, class: 'form-control masked', placeholder: 'Contact Phone Number (Will Remain Private)', data: {format: '(999) 999-9999', placeholder: 'x'} %>
25
27
  </div>
26
-
28
+ <!-- Form Fields -->
29
+
30
+ <!-- Form Button -->
27
31
  <div class="actions">
28
32
  <%= f.submit class: "btn btn-primary" %>
29
33
  </div>
34
+ <!-- Form Button -->
30
35
 
31
- <% end %>
36
+ <% end %>
@@ -27,7 +27,9 @@
27
27
  </div>
28
28
  <div class="box-body">
29
29
 
30
+ <!-- Page Form (Edit) -->
30
31
  <%= render 'form', member_profile: @member_profile %>
32
+ <!-- Page Form (Edit) -->
31
33
 
32
34
  </div>
33
35
  </div>
@@ -27,33 +27,40 @@
27
27
  </div>
28
28
  <div class="box-body">
29
29
 
30
- <table class="table table-striped table-bordered table-advance table-hover">
31
- <thead>
32
- <tr>
33
- <th>First Name</th>
34
- <th>Last Name</th>
35
- <th>Email</th>
36
- <th>Phone</th>
37
- </tr>
38
- </thead>
39
- <tbody>
40
- <% @member_profiles.each do |member_profile| %>
30
+ <!-- Index Table -->
31
+ <div class="table-responsive">
32
+ <table class="table table-bordered table-striped table-hover">
33
+ <thead>
41
34
  <tr>
42
- <td class="highlight"><%= link_to member_profile.mfirstname, member_profile %></td>
43
- <td class="highlight"><%= link_to member_profile.mlastname, member_profile %></td>
44
- <td class="highlight"><%= link_to member_profile.memail, member_profile %></td>
45
- <td class="highlight"><%= link_to member_profile.mphone, member_profile %></td>
35
+ <th>First Name</th>
36
+ <th>Last Name</th>
37
+ <th>Email</th>
38
+ <th>Phone</th>
46
39
  </tr>
47
- <% end %>
48
- </tbody>
49
- </table>
50
- </div>
51
- <div class="box-footer clearfix">
52
- <%= link_to new_member_profile_path, class: "btn btn-primary" do %>
53
- <i class="fa fa-plus"></i> Create a New Member
54
- <% end %>
55
- </div>
40
+ </thead>
41
+ <tbody>
42
+ <% @member_profiles.each do |member_profile| %>
43
+ <tr>
44
+ <td class="highlight"><%= link_to member_profile.mfirstname, member_profile %></td>
45
+ <td class="highlight"><%= link_to member_profile.mlastname, member_profile %></td>
46
+ <td class="highlight"><%= link_to member_profile.memail, member_profile %></td>
47
+ <td class="highlight"><%= link_to member_profile.mphone, member_profile %></td>
48
+ </tr>
49
+ <% end %>
50
+ </tbody>
51
+ </table>
52
+ </div>
53
+ <!-- Index Table -->
56
54
 
55
+ <!-- Panel Footer -->
56
+ <div class="box-footer clearfix">
57
+ <%= link_to new_member_profile_path, class: "btn btn-primary" do %>
58
+ <i class="fa fa-plus"></i> Create a New Member
59
+ <% end %>
60
+ </div>
61
+ <!-- Panel Footer -->
62
+
63
+ </div>
57
64
  </div>
58
65
  </div>
59
66
  </div>
@@ -27,7 +27,9 @@
27
27
  </div>
28
28
  <div class="box-body">
29
29
 
30
+ <!-- Page Form (New) -->
30
31
  <%= render 'form', member_profile: @member_profile %>
32
+ <!-- Page Form (New) -->
31
33
 
32
34
  </div>
33
35
  </div>
@@ -1,3 +1,3 @@
1
1
  module Phcmembers
2
- VERSION = "7.0.3"
2
+ VERSION = "8.0.0"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: phcmembers
3
3
  version: !ruby/object:Gem::Version
4
- version: 7.0.3
4
+ version: 8.0.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - BradPotts
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2017-03-10 00:00:00.000000000 Z
11
+ date: 2017-03-15 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails
@@ -36,14 +36,14 @@ dependencies:
36
36
  requirements:
37
37
  - - "~>"
38
38
  - !ruby/object:Gem::Version
39
- version: 0.19.0
39
+ version: 0.20.0
40
40
  type: :runtime
41
41
  prerelease: false
42
42
  version_requirements: !ruby/object:Gem::Requirement
43
43
  requirements:
44
44
  - - "~>"
45
45
  - !ruby/object:Gem::Version
46
- version: 0.19.0
46
+ version: 0.20.0
47
47
  - !ruby/object:Gem::Dependency
48
48
  name: paper_trail
49
49
  requirement: !ruby/object:Gem::Requirement
@@ -70,60 +70,42 @@ dependencies:
70
70
  requirements:
71
71
  - - "~>"
72
72
  - !ruby/object:Gem::Version
73
- version: '1.7'
74
- - - ">="
75
- - !ruby/object:Gem::Version
76
- version: 1.7.2
73
+ version: '2.0'
77
74
  type: :runtime
78
75
  prerelease: false
79
76
  version_requirements: !ruby/object:Gem::Requirement
80
77
  requirements:
81
78
  - - "~>"
82
79
  - !ruby/object:Gem::Version
83
- version: '1.7'
84
- - - ">="
85
- - !ruby/object:Gem::Version
86
- version: 1.7.2
80
+ version: '2.0'
87
81
  - !ruby/object:Gem::Dependency
88
82
  name: phctitleseo
89
83
  requirement: !ruby/object:Gem::Requirement
90
84
  requirements:
91
85
  - - "~>"
92
86
  - !ruby/object:Gem::Version
93
- version: '4.3'
94
- - - ">="
95
- - !ruby/object:Gem::Version
96
- version: 4.3.1
87
+ version: '5.0'
97
88
  type: :runtime
98
89
  prerelease: false
99
90
  version_requirements: !ruby/object:Gem::Requirement
100
91
  requirements:
101
92
  - - "~>"
102
93
  - !ruby/object:Gem::Version
103
- version: '4.3'
104
- - - ">="
105
- - !ruby/object:Gem::Version
106
- version: 4.3.1
94
+ version: '5.0'
107
95
  - !ruby/object:Gem::Dependency
108
96
  name: phcnotifi
109
97
  requirement: !ruby/object:Gem::Requirement
110
98
  requirements:
111
99
  - - "~>"
112
100
  - !ruby/object:Gem::Version
113
- version: '3.9'
114
- - - ">="
115
- - !ruby/object:Gem::Version
116
- version: 3.9.1
101
+ version: '4.0'
117
102
  type: :runtime
118
103
  prerelease: false
119
104
  version_requirements: !ruby/object:Gem::Requirement
120
105
  requirements:
121
106
  - - "~>"
122
107
  - !ruby/object:Gem::Version
123
- version: '3.9'
124
- - - ">="
125
- - !ruby/object:Gem::Version
126
- version: 3.9.1
108
+ version: '4.0'
127
109
  - !ruby/object:Gem::Dependency
128
110
  name: jquery-rails
129
111
  requirement: !ruby/object:Gem::Requirement
@@ -267,7 +249,7 @@ dependencies:
267
249
  version: '2.18'
268
250
  - - ">="
269
251
  - !ruby/object:Gem::Version
270
- version: 2.18.2
252
+ version: 2.18.3
271
253
  type: :runtime
272
254
  prerelease: false
273
255
  version_requirements: !ruby/object:Gem::Requirement
@@ -277,7 +259,7 @@ dependencies:
277
259
  version: '2.18'
278
260
  - - ">="
279
261
  - !ruby/object:Gem::Version
280
- version: 2.18.2
262
+ version: 2.18.3
281
263
  - !ruby/object:Gem::Dependency
282
264
  name: rabl
283
265
  requirement: !ruby/object:Gem::Requirement
@@ -542,7 +524,7 @@ dependencies:
542
524
  - - "~>"
543
525
  - !ruby/object:Gem::Version
544
526
  version: '3.3'
545
- description: PHCMembers(7) rails engine to manage membership information and directory
527
+ description: PHCMembers(8) rails engine to manage membership information and directory
546
528
  listings.
547
529
  email:
548
530
  - info@phcnetworks.net
@@ -651,5 +633,5 @@ rubyforge_project:
651
633
  rubygems_version: 2.6.8
652
634
  signing_key:
653
635
  specification_version: 4
654
- summary: PHCMembers(7) - Rails Membership Management Engine
636
+ summary: PHCMembers(8) - Rails Membership Management Engine
655
637
  test_files: []