phcpress 57.0.1 → 57.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 +23 -35
  3. data/lib/phcpress/version.rb +1 -1
  4. metadata +7 -6
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 8731975a9dbbba1bcb8f337b0d1d8d03b2443bdb994109f7cdd852f35ff44800
4
- data.tar.gz: 877e0cefec2e040d51ad2c6e34ce6d0b4315d892bbbabbf2efb8ce620cb48e6d
3
+ metadata.gz: defa9d5b8e1c991c5d76c85658afd44fc005e087034b3cc5f92f2c8827945bc2
4
+ data.tar.gz: 34acb9f13626120da7b9a2adc71f12b33def9f99af02dd22387ab4f4506a4410
5
5
  SHA512:
6
- metadata.gz: 1f6fdc2e3caba4fd002f5e14c138dec3ca38ef54b6b04a9038a9def75fa3d77eb347b1bf01fb6ffba6718a1c357fda62517018f00f634fec2e3436dfd565b721
7
- data.tar.gz: 99b3548830a8b98b79bec9078a37780d4d2b0a63182ec4c224617562e5ba5511eed3b0adf2df8fe5b4623cd5d2afeae0976040b762f34dd1551d74f51ff4b9c1
6
+ metadata.gz: 676832a8e46a2459fb2ed2a917ed548d8b18805618feb7d5f1a34ebdeac03dd080059ffd58dea864054b494f12ce2cc8e064849cb7db1db798fba75073c5552b
7
+ data.tar.gz: e8c344bb3d80bf32bbb03af79414b996560328a05283daef52744a88261caf59da0d0fc1c381b4d86a3a8713d00c7d9b424971581cfd42649b909bcbec315dce
data/README.md CHANGED
@@ -1,47 +1,35 @@
1
- ### PHCPress (News/Blog Engine) Documentation
2
- PHCPress rails CMS engine to manage your website's articles, categories and media.
3
-
1
+ ### PHCPress Documentation
2
+ Ruby on Rails 7 engine to manage your website's articles, categories and media.
3
+
4
4
  * Website article posts with WYSIWYG editor.
5
5
  * Upload images locally or use any popular cloud service.
6
6
  * Customizable article categories module included.
7
-
8
- #### Step 1 - Add PHCPress to your gemfile and run command
9
-
7
+ * [Pro version](https://bradpotts.github.io/phcpresspro/) has multi-tenancy capabilities.
8
+
9
+ #### Step 1 - Add PHCPress to your gemfile and run the install command
10
+
10
11
  gem 'phcpress'
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 Phcpress::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.
28
+
29
+ rails railties:install:migrations
30
+
31
+ #### Step 5 - Recompile Assets
32
+ To ensure proper function re-compile your application's assets.
26
33
 
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 phcpress: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 phcpress::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 phcpress:views
34
+ rails assets:clobber && rails assets:precompile
35
+
@@ -1,3 +1,3 @@
1
1
  module Phcpress
2
- VERSION = "57.0.1"
2
+ VERSION = "57.0.2"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: phcpress
3
3
  version: !ruby/object:Gem::Version
4
- version: 57.0.1
4
+ version: 57.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/phcpress/engine.rb
346
346
  - lib/phcpress/version.rb
347
347
  - lib/tasks/phcpress_tasks.rake
348
- homepage: https://rubygems.org/profiles/bradpotts/
348
+ homepage: https://bradpotts.github.io/phcpress/
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/phcpress/
354
- changelog_uri: https://github.com/bradpotts/phcpress/releases/
352
+ homepage_uri: https://bradpotts.github.io/phcpress/
355
353
  documentation_uri: https://bradpotts.github.io/phcpress/
354
+ changelog_uri: https://bradpotts.github.io/phcpress/releases/
355
+ wiki_uri: https://github.com/bradpotts/phcpress/wiki/
356
+ source_code_uri: https://github.com/bradpotts/phcpress/
356
357
  post_install_message:
357
358
  rdoc_options: []
358
359
  require_paths: