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 +4 -4
- data/README.md +35 -28
- data/lib/phccodesnipperpro/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: 8172db20c85b72d0f77774308551e5860de3462a381b1fbbeed9f3cf049c5e88
|
4
|
+
data.tar.gz: '0681adae0f0f0f0b2d894a792426c896272a222f1c947025e2b8293fad6d07d6'
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5d325f01ecfa7027fe634609d320938595512c48183b56a89275ebede6f5ff1114ba7bcdcde5a5e5762fbbf38715109f0790843347465f2ba606a8f929d1a824
|
7
|
+
data.tar.gz: 571cc9a38cee46f524f0a9d7639d6abf4b19fe4993f2ed06ef183fcb69108d9bad21572942e303ac0a0993428814931c0c36da38cf99c991994ad5214917d9ee
|
data/README.md
CHANGED
@@ -1,28 +1,35 @@
|
|
1
|
-
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
gem
|
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 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
|
+
|
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.
|
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-
|
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://
|
337
|
+
homepage: https://bradpotts.github.io/phccodesnipperpro/
|
338
338
|
licenses:
|
339
339
|
- MIT
|
340
340
|
metadata:
|
341
|
-
homepage_uri: https://
|
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:
|