phcmemberspro 92.0.0 → 92.0.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +20 -5
- data/lib/phcmemberspro/version.rb +1 -1
- metadata +7 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f57f62f801a054103efc287259d87feb3b5d1fce8501bf4913b4a40b0fb48375
|
4
|
+
data.tar.gz: 166983c7d8817c061b677a4fadd7b605c6f9a1531cf32a683309d4c5b7d1439e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 71053428faceeaf984b923e83c5ee4a734acaffacda53be6b356f4f42455d8daf8c96d30ae59fb9ebbe840a7185689592a799eb0e9dcce30bd92a3a3911f0a43
|
7
|
+
data.tar.gz: 87cf41dcdd4d2b8fc102cc4d8fd4e7280fe9e820b4cd75629268000bc5361ee480cf0aeef608eb5e530af7a741b77715c1a91ee48712582d705c026627b294f6
|
data/README.md
CHANGED
@@ -10,27 +10,42 @@ PHCMembers(Pro) rails engine to manage membership information and directory list
|
|
10
10
|
|
11
11
|
gem 'phcmemberspro'
|
12
12
|
bundle install
|
13
|
-
|
14
|
-
#### Step 2
|
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(Pro) & PhcdevworksAccountsDevise(Pro) Database Tables
|
15
29
|
To copy PHCMembers(Pro) & PhcdevworksAccountsDevise(Pro) database migrations, copy each command individually.
|
16
30
|
|
17
31
|
rails phcmemberspro:install:migrations
|
18
32
|
rails PhcdevworksAccountsDevise:install:migrations
|
19
33
|
rails db:migrate
|
20
34
|
|
21
|
-
#### Step
|
35
|
+
#### Step 4 - Mount PHCMembers(Pro) & Add Routes
|
22
36
|
Mount PHCMembers(Pro) by adding code below to your routes file.
|
23
37
|
|
24
38
|
mount PhcdevworksAccountsDevise::Engine, :at => '/'
|
25
39
|
mount Phcmemberspro::Engine, :at => '/'
|
26
40
|
|
27
|
-
#### Step
|
41
|
+
#### Step 5 - Recompile Assets
|
28
42
|
To properly function re-compile your application's assets to copy over required files.
|
29
43
|
|
30
44
|
rails assets:clobber
|
31
45
|
rails assets:precompile
|
32
46
|
|
33
|
-
#### Step
|
47
|
+
#### Step 6 - Generate Views (Customization)
|
34
48
|
Generate views for customization and app integration.
|
35
49
|
|
36
50
|
rails generate phcmemberspro:views
|
51
|
+
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: phcmemberspro
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 92.0.
|
4
|
+
version: 92.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-
|
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/phcmemberspro/engine.rb
|
382
382
|
- lib/phcmemberspro/version.rb
|
383
383
|
- lib/tasks/phcmemberspro_tasks.rake
|
384
|
-
homepage: https://
|
384
|
+
homepage: https://bradpotts.github.io/phcmemberspro/
|
385
385
|
licenses:
|
386
386
|
- MIT
|
387
387
|
metadata:
|
388
|
-
homepage_uri: https://
|
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
|
+
documentation_uri: https://bradpotts.github.io/phcmemberspro/
|
389
392
|
post_install_message:
|
390
393
|
rdoc_options: []
|
391
394
|
require_paths:
|