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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: c0cee02c3671d55b59c4d729ac0ee03777a627057fd4b69a6fd0cbcb647cb92e
4
- data.tar.gz: 3867cd3a46c32aff2a24b4adcea3aec09c49bd3143ebce2b017a66004d7deb75
3
+ metadata.gz: 805c8b76ea965b6e91f38f5aaa6559b027aa41cfcb62e48f07bea657df76125a
4
+ data.tar.gz: ea2746063a7cd42fa209eb047ab667075042d398638f038cf7664c02aa3d135a
5
5
  SHA512:
6
- metadata.gz: 3679100bce0a82e9eb2a8be3c3b54b72226b1fafde36a29303628e7e0a8206c3432caf5074792ddfc6cb2a4e1d14c14708d41427d89725500bacd91d847cec41
7
- data.tar.gz: 83c81846a7f19a5b7e25b1b023ddd019d11a1d22066bca69cf8983d1623f75b13ed08541bc2812d314c9bf89613707a7c8a2a415139a5635c3e56d48833429d2
6
+ metadata.gz: 2ebd506d77116b6dfbf04fa4b26261a00fae376f5efe07a9871b64de4e721c0cabef11e761ae877d869ebe0df2b9a91321e6feb782c69ff32d0cedaaeb3303a5
7
+ data.tar.gz: 820116ee8a48e73487fce1ee5e302ed461c4e6423f3bd721bcd17883caea78cd63fb7b32bec5915af2d2e6449b39e712e8f862b994a33ae085fc3cdd4f3b4438
data/README.md CHANGED
@@ -1,28 +1,36 @@
1
- # Phccodesnipper
2
- Short description and motivation.
3
-
4
- ## Usage
5
- How to use my plugin.
6
-
7
- ## Installation
8
- Add this line to your application's Gemfile:
9
-
10
- ```ruby
11
- gem "phccodesnipper"
12
- ```
13
-
14
- And then execute:
15
- ```bash
16
- $ bundle
17
- ```
18
-
19
- Or install it yourself as:
20
- ```bash
21
- $ gem install phccodesnipper
22
- ```
23
-
24
- ## Contributing
25
- Contribution directions go here.
26
-
27
- ## License
28
- The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
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
+
@@ -1,3 +1,3 @@
1
1
  module Phccodesnipper
2
- VERSION = "6.0.0"
2
+ VERSION = "6.0.1"
3
3
  end
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.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-16 00:00:00.000000000 Z
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://rubygems.org/profiles/bradpotts/
338
+ homepage: https://bradpotts.github.io/phccodesnipper/
339
339
  licenses:
340
340
  - MIT
341
341
  metadata:
342
- homepage_uri: https://rubygems.org/profiles/bradpotts/
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: