phcmembers 68.0.1 → 68.0.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +26 -41
- data/lib/phcmembers/version.rb +1 -1
- metadata +4 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 9813917c80cdadf08de42bd1a08e0d3dfbc7682de3be501e4fa33e26d3c2177c
|
4
|
+
data.tar.gz: 7e7516ce3c9567188ad6e4011fab808927ec4485671ca7deb7b1f3437ffdb565
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5eea2e88ed2dc9be989319a9a0cb52f00217a9369ba0f131f7c9f013df94f7313933121877c59b16419002a3a4a8aad31909dad9c2cbceca9cb603f2e29633dc
|
7
|
+
data.tar.gz: 2e505c02c3d94d57ff17a7d85e113ac57f3a6d3b7357f9097f29bcfcddccf9ccbcf79f881750f893a537f508faa13c13620791f3d55dd0c762cc1b83440c53e6
|
data/README.md
CHANGED
@@ -1,51 +1,36 @@
|
|
1
|
-
#### PHCMembers
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
1
|
+
#### PHCMembers Documentation
|
2
|
+
Ruby on Rails 7 engine to manage member information and business 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
|
+
- [Pro version](https://bradpotts.github.io/phcmemberspro/) has multi-tenancy capabilities.
|
9
|
+
|
10
|
+
#### Step 1 - Add PHCMembers to your gemfile and run the install command
|
11
|
+
|
11
12
|
gem 'phcmembers'
|
12
13
|
bundle install
|
13
14
|
|
14
|
-
#### Step 2 Add
|
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.
|
15
17
|
|
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
18
|
gem 'phcdevworks_accounts_devise'
|
20
19
|
bundle install
|
20
|
+
|
21
|
+
#### Step 3 - Mount PHCMembers & Add Routes
|
22
|
+
Mount PHCMembers by adding code below to your routes file.
|
21
23
|
|
22
|
-
|
23
|
-
|
24
|
+
mount PhcdevworksAccountsDevise::Engine, :at => '/'
|
25
|
+
mount Phcmembers::Engine, :at => '/'
|
24
26
|
|
25
|
-
|
26
|
-
|
27
|
+
#### Step 4 - Copy All Required Database Tables
|
28
|
+
To copy PHCMembers and PHCDevworks Accounts Devise database migrations.
|
27
29
|
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
rails
|
34
|
-
|
35
|
-
#### Step 4 - Mount PHCMembers & Add Routes
|
36
|
-
Mount PHCMembers by adding code below to your routes file.
|
37
|
-
|
38
|
-
mount PhcdevworksAccountsDevise::Engine, :at => '/'
|
39
|
-
mount phcmembers::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 phcmembers:views
|
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
|
|
data/lib/phcmembers/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: phcmembers
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 68.0.
|
4
|
+
version: 68.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/phcmembers/
|
389
|
-
source_code_uri: https://github.com/bradpotts/phcmembers/
|
390
|
-
changelog_uri: https://github.com/bradpotts/phcmembers/releases/
|
391
389
|
documentation_uri: https://bradpotts.github.io/phcmembers/
|
390
|
+
changelog_uri: https://bradpotts.github.io/phcmembers/releases
|
391
|
+
wiki_uri: https://github.com/bradpotts/phcmembers/wiki/
|
392
|
+
source_code_uri: https://github.com/bradpotts/phcmembers/
|
392
393
|
post_install_message:
|
393
394
|
rdoc_options: []
|
394
395
|
require_paths:
|