phcscriptcdn 55.0.1 → 55.0.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +32 -29
  3. data/lib/phcscriptcdn/version.rb +1 -1
  4. metadata +7 -6
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 65178952fb633732f69f42641f69642b9dae01c152cc6fe13300fb9d3dec39e9
4
- data.tar.gz: 2c6428aadc1295565a0c3883ff14108e9c69201de4c653b483b30be8365c2d45
3
+ metadata.gz: ca7032b122896e37ceecf41aa5be9206e5a6c2c210de744cdca678a7af00a6f7
4
+ data.tar.gz: b12bc43108306d835f336b4b514a66a2b6c67e2661702603bba6c239a0446c00
5
5
  SHA512:
6
- metadata.gz: 4d20a4071b8077804c8e6f6b39bdc63e59237fc7eac27c2a0fba304ea01b08e723b25d453d49df7e7439e87d5b668926b47e46f386253af8ae1e6b6f9d988284
7
- data.tar.gz: 9e0afabb31bbf6aef47a74bd736adcae16ed76d6a098713576b96e9c1352cc653cac588f9ce940b06d39b07ea452e0efb6baa8fc7c5d45d74dcb8ef3569fdcdf
6
+ metadata.gz: d0766cb39fed027da14b62769d659c45ec4a39649f889ec71c855850caef2c3a5d1302ce65d71c871172f671d6e5cc9c320ed375c78d46c40a6a5893d1597b66
7
+ data.tar.gz: 63dbeddacd70ab5ee108175a25f151ea65ab0ec702c2b6c236e39cb5f6d73d8c3ecef870be70c83282d1243332056963e2705fa5a8ba4a2639c882956607b49c
data/README.md CHANGED
@@ -1,33 +1,36 @@
1
- ### PHCScriptCDN (Script Listing Engine) Documentation
2
- PHCScriptCDN Rails script management engine for website script CDN listings.
3
-
4
- * Manage script CDN listings for websites.
5
- * Main script title and description.
6
- * Script versions and script URLs.
7
-
8
- #### Step 1 - Add PHCScriptCDN to your gemfile and run command
9
-
1
+ ### PHCScriptCDN Documentation
2
+
3
+ Ruby on Rails 7 engine to manage CDN script listings.
4
+
5
+ - Manage script CDN listings for websites.
6
+ - Main script title and description.
7
+ - Script versions and script URLs.
8
+ - [Pro version](https://bradpotts.github.io/phcscriptcdnpro/) has multi-tenancy capabilities.
9
+
10
+ #### Step 1 - Add PHCScriptCDN to your gemfile and run the install command
11
+
10
12
  gem 'phcscriptcdn'
11
13
  bundle install
12
-
13
- #### Step 2 - Copy PHCScriptCDN Database Tables
14
- To copy PHCScriptCDN's required database migrations, copy each command individually to your terminal's command line.
15
-
16
- rails phcscriptcdn:install:migrations
17
- rails db:migrate
18
-
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
+
19
21
  #### Step 3 - Mount PHCScriptCDN & Add Routes
20
- Mount PHCMembers by adding code below to your routes file.
21
-
22
+ Mount PHCScriptCDN by adding code below to your routes file.
23
+
24
+ mount PhcdevworksAccountsDevise::Engine, :at => '/'
22
25
  mount Phcscriptcdn::Engine, :at => '/'
23
-
24
- #### Step 4 - Recompile Assets
25
- To properly function re-compile your application's assets to copy over required files.
26
-
27
- rails assets:clobber
28
- rails assets:precompile
29
-
30
- #### Step 5 - Generate Contact Form View (Customization)
31
- All PHCScriptCDN views and layouts can be overwritten by copying files to your application.
32
-
33
- rails generate phcscriptcdn:views
26
+
27
+ #### Step 4 - Copy All Required Database Tables
28
+ To copy PHCScriptCDN 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 Phcscriptcdn
2
- VERSION = "55.0.1"
2
+ VERSION = "55.0.2"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: phcscriptcdn
3
3
  version: !ruby/object:Gem::Version
4
- version: 55.0.1
4
+ version: 55.0.2
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
@@ -383,14 +383,15 @@ files:
383
383
  - lib/phcscriptcdn/engine.rb
384
384
  - lib/phcscriptcdn/version.rb
385
385
  - lib/tasks/phcscriptcdn_tasks.rake
386
- homepage: https://rubygems.org/profiles/bradpotts/
386
+ homepage: https://bradpotts.github.io/phcscriptcdn/
387
387
  licenses:
388
388
  - MIT
389
389
  metadata:
390
- homepage_uri: https://rubygems.org/profiles/bradpotts/
391
- source_code_uri: https://github.com/bradpotts/phcscriptcdn/
392
- changelog_uri: https://github.com/bradpotts/phcscriptcdn/releases/
390
+ homepage_uri: https://bradpotts.github.io/phcscriptcdn/
393
391
  documentation_uri: https://bradpotts.github.io/phcscriptcdn/
392
+ changelog_uri: https://bradpotts.github.io/phcscriptcdn/releases
393
+ wiki_uri: https://github.com/bradpotts/phcscriptcdn/wiki
394
+ source_code_uri: https://github.com/bradpotts/phcscriptcdn/
394
395
  post_install_message:
395
396
  rdoc_options: []
396
397
  require_paths: