phccodesnipperpro 5.0.0 → 5.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: 3c07e69e69a4ccd10db32a32b7d21f69b5e2a47df202b843d2e1924f812e4d31
4
- data.tar.gz: 502ac3c66dde4e5e5935349068555471f25bf2e8c648c113f258f1138ebb8b6b
3
+ metadata.gz: 8172db20c85b72d0f77774308551e5860de3462a381b1fbbeed9f3cf049c5e88
4
+ data.tar.gz: '0681adae0f0f0f0b2d894a792426c896272a222f1c947025e2b8293fad6d07d6'
5
5
  SHA512:
6
- metadata.gz: 17c5e36e3490629a236ce57a90b92eb291fe0b112d0e6812a70228edaae05918365fb66d4feac71ae355d23ec57c31250d19636928d9cc37c7014fb8a708b9fc
7
- data.tar.gz: b059848db74a7cde655b2bb18be1d8ec782aecf0bb09efe6b1fddc7c699dd21cd1041eceb899bc37144c4c1c82775f77540f86f355cba3567b89aebc75078db4
6
+ metadata.gz: 5d325f01ecfa7027fe634609d320938595512c48183b56a89275ebede6f5ff1114ba7bcdcde5a5e5762fbbf38715109f0790843347465f2ba606a8f929d1a824
7
+ data.tar.gz: 571cc9a38cee46f524f0a9d7639d6abf4b19fe4993f2ed06ef183fcb69108d9bad21572942e303ac0a0993428814931c0c36da38cf99c991994ad5214917d9ee
data/README.md CHANGED
@@ -1,28 +1,35 @@
1
- # Phccodesnipperpro
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 "phccodesnipperpro"
12
- ```
13
-
14
- And then execute:
15
- ```bash
16
- $ bundle
17
- ```
18
-
19
- Or install it yourself as:
20
- ```bash
21
- $ gem install phccodesnipperpro
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 script and post code snippets.
3
+
4
+ - Manage and add code snippets.
5
+ - Add code snippet urls.
6
+ - View a database of your own code snippets.
7
+ - This version has multi-tenancy capabilities.
8
+
9
+ #### Step 1 - Add PHCCodeSnipper to your gemfile and run the install command
10
+
11
+ gem 'phccodesnipperpro'
12
+ bundle install
13
+
14
+ #### Step 2 - Add [PHCDevworks Accounts Devise](https://github.com/phcdevworks/phcdevworks_accounts_devise) to your gemfile
15
+ This plugin is optimized for PHCDevworks Accounts which uses Devise.
16
+
17
+ gem 'phcdevworks_accounts_devise'
18
+ bundle install
19
+
20
+ #### Step 3 - Mount PHCCodeSnipper & Add Routes
21
+ Mount PHCCodeSnipper by adding code below to your routes file.
22
+
23
+ mount PhcdevworksAccountsDevise::Engine, :at => '/'
24
+ mount Phccodesnipperpro::Engine, :at => '/'
25
+
26
+ #### Step 4 - Copy All Required Database Tables
27
+ To copy PHCCodeSnipper and PHCDevworks Accounts Devise database migrations.
28
+
29
+ rails railties:install:migrations
30
+
31
+ #### Step 5 - Recompile Assets
32
+ To ensure proper function re-compile your application's assets.
33
+
34
+ rails assets:clobber && rails assets:precompile
35
+
@@ -1,3 +1,3 @@
1
1
  module Phccodesnipperpro
2
- VERSION = "5.0.0"
2
+ VERSION = "5.0.1"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: phccodesnipperpro
3
3
  version: !ruby/object:Gem::Version
4
- version: 5.0.0
4
+ version: 5.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
@@ -334,11 +334,15 @@ files:
334
334
  - lib/phccodesnipperpro/engine.rb
335
335
  - lib/phccodesnipperpro/version.rb
336
336
  - lib/tasks/phccodesnipperpro_tasks.rake
337
- homepage: https://rubygems.org/profiles/bradpotts/
337
+ homepage: https://bradpotts.github.io/phccodesnipperpro/
338
338
  licenses:
339
339
  - MIT
340
340
  metadata:
341
- homepage_uri: https://rubygems.org/profiles/bradpotts/
341
+ homepage_uri: https://bradpotts.github.io/phccodesnipperpro/
342
+ documentation_uri: https://bradpotts.github.io/phccodesnipperpro/
343
+ changelog_uri: https://bradpotts.github.io/phccodesnipperpro/releases
344
+ wiki_uri: https://github.com/bradpotts/phccodesnipperpro/wiki/
345
+ source_code_uri: https://github.com/bradpotts/phccodesnipperpro/
342
346
  post_install_message:
343
347
  rdoc_options: []
344
348
  require_paths: