phcmemberspro 92.0.1 → 92.0.2

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
  SHA256:
3
- metadata.gz: f57f62f801a054103efc287259d87feb3b5d1fce8501bf4913b4a40b0fb48375
4
- data.tar.gz: 166983c7d8817c061b677a4fadd7b605c6f9a1531cf32a683309d4c5b7d1439e
3
+ metadata.gz: 975bb114b5fb37ef5b4ebb6e4285d1b1db6a964ec126c76d3622219c18ddd497
4
+ data.tar.gz: 521fbd04a3ad2e3f7dc22c81750c0705ac1a939147ad2d08b78736d74864ca6c
5
5
  SHA512:
6
- metadata.gz: 71053428faceeaf984b923e83c5ee4a734acaffacda53be6b356f4f42455d8daf8c96d30ae59fb9ebbe840a7185689592a799eb0e9dcce30bd92a3a3911f0a43
7
- data.tar.gz: 87cf41dcdd4d2b8fc102cc4d8fd4e7280fe9e820b4cd75629268000bc5361ee480cf0aeef608eb5e530af7a741b77715c1a91ee48712582d705c026627b294f6
6
+ metadata.gz: 134678309434c9b9cb691a9b5e77fda6d25cf327df7116f40c1fe1ea1613e82476ace8c7b5dbd04b59d0c9dc53320f1aee7f08756917d888838bc4438345fcf8
7
+ data.tar.gz: 62072925b1e41da03ae1ef9dc2486341cd6a2be9ac8e9ff9a1b584a6ce625a20ce182a1594b18163a23f36d78a105efdec3646c8768740d9ca6d12e7e25e1707
data/README.md CHANGED
@@ -1,51 +1,36 @@
1
- #### PHCMembers(PRO) (Membership & Directory Engine) Documentation
2
- PHCMembers(Pro) rails engine to manage membership information and directory listings.
3
-
4
- * Fast setup of membership management and web directory modules.
5
- * Directory and listings manager with a web directory API.
6
- * Member's list, contact information, and listings manager.
7
- * Easy app integration with views that can be customized.
8
-
9
- #### Step 1 - Add PHCMembers(Pro) to your gemfile and run command
10
-
11
- gem 'phcmemberspro'
12
- bundle install
1
+ #### PHCMembers Documentation
2
+ Ruby on Rails 7 engine to manage member information and business directory listings.
13
3
 
14
- #### Step 2 Add either [PHCDevworks Accounts Devise](https://github.com/phcdevworks/phcdevworks_accounts_devise) or [Devise](https://github.com/heartcombo/devise)
4
+ - Fast setup of membership management and web directory modules.
5
+ - Directory and listings manager with a web directory API.
6
+ - Member's list, contact information, and listings manager.
7
+ - Easy app integration with views that can be customized.
8
+ - This version has multi-tenancy capabilities.
15
9
 
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'
10
+ #### Step 1 - Add PHCMembers to your gemfile and run the install command
11
+
12
+ gem 'phcmemberspro'
20
13
  bundle install
21
14
 
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.
15
+ #### Step 2 - Add [PHCDevworks Accounts Devise](https://github.com/phcdevworks/phcdevworks_accounts_devise) to your gemfile
16
+ This plugin is optimized for PHCDevworks Accounts which uses Devise.
24
17
 
25
- gem 'devise'
18
+ gem 'phcdevworks_accounts_devise'
26
19
  bundle install
20
+
21
+ #### Step 3 - Mount PHCMembers & Add Routes
22
+ Mount PHCMembers by adding code below to your routes file.
27
23
 
28
- #### Step 3 - Add PHCMembers(Pro) & PhcdevworksAccountsDevise(Pro) Database Tables
29
- To copy PHCMembers(Pro) & PhcdevworksAccountsDevise(Pro) database migrations, copy each command individually.
30
-
31
- rails phcmemberspro:install:migrations
32
- rails PhcdevworksAccountsDevise:install:migrations
33
- rails db:migrate
34
-
35
- #### Step 4 - Mount PHCMembers(Pro) & Add Routes
36
- Mount PHCMembers(Pro) by adding code below to your routes file.
37
-
38
24
  mount PhcdevworksAccountsDevise::Engine, :at => '/'
39
25
  mount Phcmemberspro::Engine, :at => '/'
40
-
41
- #### Step 5 - Recompile Assets
42
- To properly function re-compile your application's assets to copy over required files.
43
-
44
- rails assets:clobber
45
- rails assets:precompile
46
-
47
- #### Step 6 - Generate Views (Customization)
48
- Generate views for customization and app integration.
49
-
50
- rails generate phcmemberspro:views
26
+
27
+ #### Step 4 - Copy All Required Database Tables
28
+ To copy PHCMembers and PHCDevworks Accounts Devise database migrations.
29
+
30
+ rails railties:install:migrations
31
+
32
+ #### Step 5 - Recompile Assets
33
+ To ensure proper function re-compile your application's assets.
34
+
35
+ rails assets:clobber && rails assets:precompile
51
36
 
@@ -1,3 +1,3 @@
1
1
  module Phcmemberspro
2
- VERSION = "92.0.1"
2
+ VERSION = "92.0.2"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: phcmemberspro
3
3
  version: !ruby/object:Gem::Version
4
- version: 92.0.1
4
+ version: 92.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - BradPotts
@@ -386,9 +386,10 @@ licenses:
386
386
  - MIT
387
387
  metadata:
388
388
  homepage_uri: https://bradpotts.github.io/phcmemberspro/
389
- source_code_uri: https://github.com/bradpotts/phcmemberspro/
390
- changelog_uri: https://github.com/bradpotts/phcmemberspro/releases/
391
389
  documentation_uri: https://bradpotts.github.io/phcmemberspro/
390
+ changelog_uri: https://bradpotts.github.io/phcmemberspro/releases
391
+ wiki_uri: https://github.com/bradpotts/phcmemberspro/wiki/
392
+ source_code_uri: https://github.com/bradpotts/phcmemberspro/
392
393
  post_install_message:
393
394
  rdoc_options: []
394
395
  require_paths: