phcmembers 68.0.1 → 68.0.2

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 +26 -41
  3. data/lib/phcmembers/version.rb +1 -1
  4. metadata +4 -3
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: c138ddaf87b1aaca94da7282e891fdc8cf4e51a617505a5a7989bb89274720d3
4
- data.tar.gz: 4cf22cb12d9590caee46b1c510cfa5bce25e64994c5bef068172d6d3bd037d97
3
+ metadata.gz: 9813917c80cdadf08de42bd1a08e0d3dfbc7682de3be501e4fa33e26d3c2177c
4
+ data.tar.gz: 7e7516ce3c9567188ad6e4011fab808927ec4485671ca7deb7b1f3437ffdb565
5
5
  SHA512:
6
- metadata.gz: e0b2c2c0c3d2d2e4cc92b1575aaab592a346174b29d0dc67ec483fcc10982894c7b0d12d902fe9a0fe8e193dc71575a2df6b6c9be30d8557c8cb0745a85db4c0
7
- data.tar.gz: fabf8cd0cd6293c2d6a1a460a7e64767a7a9456592b2ef29a49cc5ac3def1b73b8a39a08958135b5de86504ee79b1faee794ca74799c0fb690afcc2a5fe9e0f3
6
+ metadata.gz: 5eea2e88ed2dc9be989319a9a0cb52f00217a9369ba0f131f7c9f013df94f7313933121877c59b16419002a3a4a8aad31909dad9c2cbceca9cb603f2e29633dc
7
+ data.tar.gz: 2e505c02c3d94d57ff17a7d85e113ac57f3a6d3b7357f9097f29bcfcddccf9ccbcf79f881750f893a537f508faa13c13620791f3d55dd0c762cc1b83440c53e6
data/README.md CHANGED
@@ -1,51 +1,36 @@
1
- #### PHCMembers (Membership & Directory Engine) Documentation
2
- PHCMembers 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 to your gemfile and run command
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 either [PHCDevworks Accounts Devise](https://github.com/phcdevworks/phcdevworks_accounts_devise) or [Devise](https://github.com/heartcombo/devise)
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
- #### 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
+ mount PhcdevworksAccountsDevise::Engine, :at => '/'
25
+ mount Phcmembers::Engine, :at => '/'
24
26
 
25
- gem 'devise'
26
- bundle install
27
+ #### Step 4 - Copy All Required Database Tables
28
+ To copy PHCMembers and PHCDevworks Accounts Devise database migrations.
27
29
 
28
- #### Step 3 - Add PHCMembers & PhcdevworksAccountsDevise Database Tables
29
- To copy PHCMembers & PhcdevworksAccountsDevise database migrations, copy each command individually.
30
-
31
- rails phcmembers:install:migrations
32
- rails PhcdevworksAccountsDevise:install:migrations
33
- rails db:migrate
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
 
@@ -1,3 +1,3 @@
1
1
  module Phcmembers
2
- VERSION = "68.0.1"
2
+ VERSION = "68.0.2"
3
3
  end
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.1
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: