Sha256: c2c961129bb50cc8abc9051322039a2d8886e33f1f6559465f6d75fbcf43a756

Contents?: true

Size: 1.33 KB

Versions: 3

Compression:

Stored size: 1.33 KB

Contents

#### PHCCodeSnipper Documentation  
Ruby on Rails 7 engine to manage member information and business directory listings.
  
- Fast setup of membership management and web directory modules.
- Directory and listings manager with a web directory API.
- Member's list, contact information, and listings manager.
- Easy app integration with views that can be customized.
- [Pro version](https://bradpotts.github.io/phccodesnipperpro/) has multi-tenancy capabilities.
  
#### Step 1 - Add PHCCodeSnipper to your gemfile and run the install command
  
	gem 'phccodesnipper'
	bundle install
  
#### Step 2 - Add [PHCDevworks Accounts Devise](https://github.com/phcdevworks/phcdevworks_accounts_devise) to your gemfile
This plugin is optimized for PHCDevworks Accounts which uses Devise.
  
	gem 'phcdevworks_accounts_devise'
	bundle install
    
#### Step 3 - Mount PHCCodeSnipper & Add Routes
Mount PHCCodeSnipper by adding code below to your routes file.
  
	mount PhcdevworksAccountsDevise::Engine, :at => '/'
	mount Phccodesnipper::Engine, :at => '/'
  
#### Step 4 - Copy All Required Database Tables
To copy PHCCodeSnipper and PHCDevworks Accounts Devise database migrations.
  
	rails railties:install:migrations
  
#### Step 5 - Recompile Assets
To ensure proper function re-compile your application's assets.
  
	rails assets:clobber && rails assets:precompile
  

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
phccodesnipper-6.1.1 README.md
phccodesnipper-6.1.0 README.md
phccodesnipper-6.0.1 README.md