phcpresspro 87.0.1 → 87.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 +26 -38
  3. data/lib/phcpresspro/version.rb +1 -1
  4. metadata +7 -6
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 1b2f1802a8a1bec7f8735e1d8f2dca4569ad98d03edec3854e2d9dd51c1cd2df
4
- data.tar.gz: 3b8b312086952d8d79e6bee847fbaad20cbce9cae9acb9a81b5cb18cdbd283b1
3
+ metadata.gz: c2a6f992b554954c6353970fafb994205b0a1a9ba00b70b8c4ad886d96fee826
4
+ data.tar.gz: d59ef3b6b7dd2abe79663b10c16267ba4509a3cd02e84e4bfd8ebf32d7bdca1c
5
5
  SHA512:
6
- metadata.gz: 92d9423e585cd6fd1a25592012d0e6199eb062a7ad35c4a42279fd566e6f1f7e5af4dc58410ce94d3be24e5c9677ddfa19dc5d4e82deba27107323e4cca59912
7
- data.tar.gz: 14ebd8182892b13362517d4b4c6b7d7a6c482ad35951e078a228c5d022583ba702567df15ad313f748206bd1227fb2de0f1785ef67fbc0fac1b7898cd2f26441
6
+ metadata.gz: 18abd8405df0908e360393af6667c2e448c2df5bea815fac9c422c787cced57bc9c655e9726059eef4c6bc677f84604a9ef64e6f70ccdb48c7c14fa5e3ca22ad
7
+ data.tar.gz: 97414c39162f720e6a056a2b9a501dab81886f94f2dd20477a38d30af4e27357a74a37bb1586e7846eff9dc1bbaf8785b234567fe1458ceac32380d12c941308
data/README.md CHANGED
@@ -1,47 +1,35 @@
1
- ### PHCPress(PRO) (News/Blog Engine) Documentation
2
- PHCPress(PRO) rails CMS engine to manage your website's articles, categories and media.
3
-
4
- * Website article posts with WYSIWYG editor.
5
- * Upload images locally or use any popular cloud service.
6
- * Customizable article categories module included.
7
-
8
- #### Step 1 - Add PHCPress to your gemfile and run command
9
-
1
+ ### PHCPress Documentation
2
+ Ruby on Rails 7 engine to manage your website's articles, categories and media.
3
+
4
+ - Website article posts with WYSIWYG editor.
5
+ - Upload images locally or use any popular cloud service.
6
+ - Customizable article categories module included.
7
+ - This version has multi-tenancy capabilities.
8
+
9
+ #### Step 1 - Add PHCPress to your gemfile and run the install command
10
+
10
11
  gem 'phcpresspro'
11
12
  bundle install
12
13
 
13
- #### Step 2 Add either [PHCDevworks Accounts Devise](https://github.com/phcdevworks/phcdevworks_accounts_devise) or [Devise](https://github.com/heartcombo/devise)
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.
14
16
 
15
- #### 2a - Add authentication option 1 to your gemfile. Can pick option 1 or 2
16
- This plugin is optimized for PHCDevworks Accounts Devise (Skins built using Devise).
17
-
18
17
  gem 'phcdevworks_accounts_devise'
19
18
  bundle install
19
+
20
+ #### Step 3 - Mount PHCPress & Add Routes
21
+ Mount PHCPress by adding code below to your routes file.
20
22
 
21
- #### Step 2b - Or you can add authentication option 2 to your gemfile.
22
- This plugin can run fine with devise to run and operate.
23
+ mount PhcdevworksAccountsDevise::Engine, :at => '/'
24
+ mount Phcpresspro::Engine, :at => '/'
23
25
 
24
- gem 'devise'
25
- bundle install
26
+ #### Step 4 - Copy All Required Database Tables
27
+ To copy PHCPress and PHCDevworks Accounts Devise database migrations.
26
28
 
27
- #### Step 3 - Copy PHCPress Database Tables
28
- To copy PHCPress' required database migrations, copy each command individually to your terminal's command line.
29
-
30
- rails phcpresspro:install:migrations
31
- rails db:migrate
32
-
33
- #### Step 4 - Mount PHCPress & Add Routes
34
- Mount PHCPress by adding code below to your routes file.
35
-
36
- mount Phcpresspro::Engine, :at => '/'
37
-
38
- #### Step 5 - Recompile Assets
39
- To properly function re-compile your application's assets to copy over requried files.
40
-
41
- rails assets:clobber
42
- rails assets:precompile
43
-
44
- #### Step 6 - Generate Contact Form View (Customization)
45
- All PHCPress views and layouts can be overwritten by copying files to your application.
46
-
47
- rails generate phcpresspro:views
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 Phcpresspro
2
- VERSION = "87.0.1"
2
+ VERSION = "87.0.2"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: phcpresspro
3
3
  version: !ruby/object:Gem::Version
4
- version: 87.0.1
4
+ version: 87.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
@@ -345,14 +345,15 @@ files:
345
345
  - lib/phcpresspro/engine.rb
346
346
  - lib/phcpresspro/version.rb
347
347
  - lib/tasks/phcpresspro_tasks.rake
348
- homepage: https://rubygems.org/profiles/bradpotts/
348
+ homepage: https://bradpotts.github.io/phcpresspro/
349
349
  licenses:
350
350
  - MIT
351
351
  metadata:
352
- homepage_uri: https://rubygems.org/profiles/bradpotts/
353
- source_code_uri: https://github.com/bradpotts/phcpresspro/
354
- changelog_uri: https://github.com/bradpotts/phcpresspro/releases/
352
+ homepage_uri: https://bradpotts.github.io/phcpresspro/
355
353
  documentation_uri: https://bradpotts.github.io/phcpresspro/
354
+ changelog_uri: https://bradpotts.github.io/phcpresspro/releases
355
+ wiki_uri: https://github.com/bradpotts/phcpresspro/wiki
356
+ source_code_uri: https://github.com/bradpotts/phcpresspro/
356
357
  post_install_message:
357
358
  rdoc_options: []
358
359
  require_paths: