phcmembers 68.0.0 → 68.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +30 -15
  3. data/lib/phcmembers/version.rb +1 -1
  4. metadata +7 -4
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: a3e965cdb0283b6c29537cacf5975afca70ceab7bb00d829478008d931f779ab
4
- data.tar.gz: 54c91aa279c4c23cc29671fa646480dc5e9d2b1e7a70575fa35a7ca0ad3c4518
3
+ metadata.gz: c138ddaf87b1aaca94da7282e891fdc8cf4e51a617505a5a7989bb89274720d3
4
+ data.tar.gz: 4cf22cb12d9590caee46b1c510cfa5bce25e64994c5bef068172d6d3bd037d97
5
5
  SHA512:
6
- metadata.gz: 74af9d5da11da0e7e19f6a642b8667d055b583e87d9c737cfd3e8a11b6b40e184aed807394d8c89c596fd276de22961957d86bd2998ce02a29507f4bbbd23ad2
7
- data.tar.gz: e818d4aa6fd0177b48642573e70a8ec6fc3c48a8b71f9b1c02f4273df75c4b10749e89032d96f314d1904d00bab09de5f3d4a533e0112bc8f45fe54965f4b58c
6
+ metadata.gz: e0b2c2c0c3d2d2e4cc92b1575aaab592a346174b29d0dc67ec483fcc10982894c7b0d12d902fe9a0fe8e193dc71575a2df6b6c9be30d8557c8cb0745a85db4c0
7
+ data.tar.gz: fabf8cd0cd6293c2d6a1a460a7e64767a7a9456592b2ef29a49cc5ac3def1b73b8a39a08958135b5de86504ee79b1faee794ca74799c0fb690afcc2a5fe9e0f3
data/README.md CHANGED
@@ -1,36 +1,51 @@
1
- ### PHCMembers(2019) (Membership & Directory Engine) Documentation
2
- PHCMembers(2019) rails engine to manage membership information and directory listings.
1
+ #### PHCMembers (Membership & Directory Engine) Documentation
2
+ PHCMembers rails engine to manage membership information and directory listings.
3
3
 
4
- * Fast setup of membership and web directory modules.
4
+ * Fast setup of membership management and web directory modules.
5
5
  * Directory and listings manager with a web directory API.
6
6
  * Member's list, contact information, and listings manager.
7
7
  * Easy app integration with views that can be customized.
8
8
 
9
- #### Step 1 - Add PHCMembers to your gemfile and run the commands below.
9
+ #### Step 1 - Add PHCMembers to your gemfile and run command
10
10
 
11
11
  gem 'phcmembers'
12
12
  bundle install
13
+
14
+ #### Step 2 Add either [PHCDevworks Accounts Devise](https://github.com/phcdevworks/phcdevworks_accounts_devise) or [Devise](https://github.com/heartcombo/devise)
15
+
16
+ #### 2a - Add authentication option 1 to your gemfile. Can pick option 1 or 2
17
+ This plugin is optimized for PHCDevworks Accounts Devise (Skins built using Devise).
18
+
19
+ gem 'phcdevworks_accounts_devise'
20
+ bundle install
21
+
22
+ #### Step 2b - Or you can add authentication option 2 to your gemfile.
23
+ This plugin can run fine with devise to run and operate.
24
+
25
+ gem 'devise'
26
+ bundle install
27
+
28
+ #### Step 3 - Add PHCMembers & PhcdevworksAccountsDevise Database Tables
29
+ To copy PHCMembers & PhcdevworksAccountsDevise database migrations, copy each command individually.
13
30
 
14
- #### Step 2 - Add PHCMembers Database Tables
15
- To copy required database migrations, copy each command individually to your terminal's command line.
16
-
17
- rails railties:install:migrations
31
+ rails phcmembers:install:migrations
32
+ rails PhcdevworksAccountsDevise:install:migrations
18
33
  rails db:migrate
19
34
 
20
- #### Step 3 - Mount PHCMembers & Add Routes
21
- Mount PHCMembers by adding the code below to your routes file.
35
+ #### Step 4 - Mount PHCMembers & Add Routes
36
+ Mount PHCMembers by adding code below to your routes file.
22
37
 
23
- mount Phcmembers::Engine, :at => '/'
38
+ mount PhcdevworksAccountsDevise::Engine, :at => '/'
39
+ mount phcmembers::Engine, :at => '/'
24
40
 
25
- #### Step 4 - Recompile Assets
41
+ #### Step 5 - Recompile Assets
26
42
  To properly function re-compile your application's assets to copy over required files.
27
43
 
28
44
  rails assets:clobber
29
45
  rails assets:precompile
30
46
 
31
- #### Step 5 - Generate Views (Customization)
47
+ #### Step 6 - Generate Views (Customization)
32
48
  Generate views for customization and app integration.
33
49
 
34
50
  rails generate phcmembers:views
35
-
36
- #### Additional Information
51
+
@@ -1,3 +1,3 @@
1
1
  module Phcmembers
2
- VERSION = "68.0.0"
2
+ VERSION = "68.0.1"
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: 68.0.0
4
+ version: 68.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - BradPotts
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-04-16 00:00:00.000000000 Z
11
+ date: 2022-04-17 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails
@@ -381,11 +381,14 @@ files:
381
381
  - lib/phcmembers/engine.rb
382
382
  - lib/phcmembers/version.rb
383
383
  - lib/tasks/phcmembers_tasks.rake
384
- homepage: https://rubygems.org/profiles/bradpotts/
384
+ homepage: https://bradpotts.github.io/phcmembers/
385
385
  licenses:
386
386
  - MIT
387
387
  metadata:
388
- homepage_uri: https://rubygems.org/profiles/bradpotts/
388
+ homepage_uri: https://bradpotts.github.io/phcmembers/
389
+ source_code_uri: https://github.com/bradpotts/phcmembers/
390
+ changelog_uri: https://github.com/bradpotts/phcmembers/releases/
391
+ documentation_uri: https://bradpotts.github.io/phcmembers/
389
392
  post_install_message:
390
393
  rdoc_options: []
391
394
  require_paths: