phcpress 57.0.0 → 57.0.3

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 +28 -27
  3. data/lib/phcpress/version.rb +1 -1
  4. metadata +8 -4
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 07cc1adf7cbab898b1a770e6c560d072b522a4dec5fdf562d0b39f20c54805de
4
- data.tar.gz: dd8a491669ecce4a06d7bd14bf91c452b6f86e9690fed237882e1a724a113ac0
3
+ metadata.gz: 13461cbcb3c49a3cc60e6f30b959eda861873fef2668e39afc08a156bcab2785
4
+ data.tar.gz: 11641e24ee5c293fbe876bbf04e9fec4a3d696628ecce496643277b67915c307
5
5
  SHA512:
6
- metadata.gz: e0505323c50c14a58c5355396ff7bdc77851cf7e8405ad44ad991496e3ef2878c3e2d22574d466382e5a4919a30c669310e4b719a23867156064b90158ff164a
7
- data.tar.gz: b25c9d9f5f1bdd954d9c41b9bb8a2d6fef64b8323957916b8e42601afdb0a1b9259a00090f93a0415f7b2820029cb6e61d8ffabfa9c596085daa4e93e104b947
6
+ metadata.gz: 635e7523191d4229b5fe744e87cc8b03ae979e9ab752ddfcde801bc80247329497d8ce5e9ea406141b52738759c70a438fbd30c56db051fa0c3b520b2c10c662
7
+ data.tar.gz: 36cab138743bf88e54e7b3ae4c468f9bb72d7579bca42dee83793b8605a322dbbca6491f3772fdbb8fabb401406595d771e80ca2151afb10ddf2d9e55d847c76
data/README.md CHANGED
@@ -1,34 +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
- #### Step 2 - Copy PHCPress Database Tables
14
- To copy PHCPress' requried database migrations, copy each command individually to your terminal's command line.
15
-
16
- rails phcpress:install:migrations
17
- rails db:migrate
18
-
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
+
19
20
  #### Step 3 - Mount PHCPress & Add Routes
20
- Mount PHCPress by adding code below to your routes file.
21
-
21
+ Mount PHCPress by adding code below to your routes file.
22
+
23
+ mount PhcdevworksAccountsDevise::Engine, :at => '/'
22
24
  mount Phcpress::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 PHCPress views and layouts can be overwritten by copying files to your application.
32
-
33
- rails generate phcpress:views
34
-
25
+
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.
33
+
34
+ rails assets:clobber && rails assets:precompile
35
+
@@ -1,3 +1,3 @@
1
1
  module Phcpress
2
- VERSION = "57.0.0"
2
+ VERSION = "57.0.3"
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.0
4
+ version: 57.0.3
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,11 +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/
352
+ homepage_uri: https://bradpotts.github.io/phcpress/
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/
353
357
  post_install_message:
354
358
  rdoc_options: []
355
359
  require_paths: