phccodesnipper 6.0.0 → 6.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 +36 -28
- data/lib/phccodesnipper/version.rb +1 -1
- metadata +8 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 805c8b76ea965b6e91f38f5aaa6559b027aa41cfcb62e48f07bea657df76125a
|
4
|
+
data.tar.gz: ea2746063a7cd42fa209eb047ab667075042d398638f038cf7664c02aa3d135a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2ebd506d77116b6dfbf04fa4b26261a00fae376f5efe07a9871b64de4e721c0cabef11e761ae877d869ebe0df2b9a91321e6feb782c69ff32d0cedaaeb3303a5
|
7
|
+
data.tar.gz: 820116ee8a48e73487fce1ee5e302ed461c4e6423f3bd721bcd17883caea78cd63fb7b32bec5915af2d2e6449b39e712e8f862b994a33ae085fc3cdd4f3b4438
|
data/README.md
CHANGED
@@ -1,28 +1,36 @@
|
|
1
|
-
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
1
|
+
#### PHCCodeSnipper 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/phccodesnipperpro/) has multi-tenancy capabilities.
|
9
|
+
|
10
|
+
#### Step 1 - Add PHCCodeSnipper to your gemfile and run the install command
|
11
|
+
|
12
|
+
gem 'phccodesnipper'
|
13
|
+
bundle install
|
14
|
+
|
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.
|
17
|
+
|
18
|
+
gem 'phcdevworks_accounts_devise'
|
19
|
+
bundle install
|
20
|
+
|
21
|
+
#### Step 3 - Mount PHCCodeSnipper & Add Routes
|
22
|
+
Mount PHCCodeSnipper by adding code below to your routes file.
|
23
|
+
|
24
|
+
mount PhcdevworksAccountsDevise::Engine, :at => '/'
|
25
|
+
mount Phccodesnipper::Engine, :at => '/'
|
26
|
+
|
27
|
+
#### Step 4 - Copy All Required Database Tables
|
28
|
+
To copy PHCCodeSnipper 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
|
36
|
+
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: phccodesnipper
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 6.0.
|
4
|
+
version: 6.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
|
@@ -335,11 +335,15 @@ files:
|
|
335
335
|
- lib/phccodesnipper/engine.rb
|
336
336
|
- lib/phccodesnipper/version.rb
|
337
337
|
- lib/tasks/phccodesnipper_tasks.rake
|
338
|
-
homepage: https://
|
338
|
+
homepage: https://bradpotts.github.io/phccodesnipper/
|
339
339
|
licenses:
|
340
340
|
- MIT
|
341
341
|
metadata:
|
342
|
-
homepage_uri: https://
|
342
|
+
homepage_uri: https://bradpotts.github.io/phccodesnipper/
|
343
|
+
documentation_uri: https://bradpotts.github.io/phccodesnipper/
|
344
|
+
changelog_uri: https://bradpotts.github.io/phccodesnipper/releases
|
345
|
+
wiki_uri: https://github.com/bradpotts/phccodesnipper/wiki/
|
346
|
+
source_code_uri: https://github.com/bradpotts/phccodesnipper/
|
343
347
|
post_install_message:
|
344
348
|
rdoc_options: []
|
345
349
|
require_paths:
|