blog-gem 0.1.1 → 0.1.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 10fd88dda8a6a69c6cdb2af0389107eb0f4991f9
4
- data.tar.gz: 139ab0349259d7cde9187f34c73bd4606f0e7655
3
+ metadata.gz: 5b22c3027addf188258043be667697b147db9c4b
4
+ data.tar.gz: 9113d70e623f7cd986e31fcb3d8a7782c8d8fff8
5
5
  SHA512:
6
- metadata.gz: e3c724e9bf192a3fd6fc8de6c0dcefcf0c6acdb71bcc6ef90d35091127b00621582c9bcaedd02bf081cef2a56dfb12b7200fdcfa0a34ade90f587d5bae0066cc
7
- data.tar.gz: bd23856d556caa64b968eec1054cdebe86f16422a9e92f239875623cfd8087b3df3459a7c61a55b786616652ab12ef7b4d694f0cc8e478bd356d7f10c48e6a57
6
+ metadata.gz: ff4d9c29541f334d42039dad402c8af4b74bf81c2d983638ff2cc38f82122aa6e034ef899d0fcc59e2c34983270bed4a58750589c7eff74a20e1d41dc6899414
7
+ data.tar.gz: 7b0f182b578a853e97cc5542733ef07367d1751e39f0719e9bebfbe843b950daf13a6b97cd6e1a31120f7ab924a73386aeb08832e1878b8c6cde4c6a1c00eb0f
data/README.md CHANGED
@@ -90,7 +90,7 @@ Blog::Gem.setup do |config|
90
90
  config.path = "/blog"
91
91
  config.image_path = "/uploads"
92
92
  config.title_enable = true
93
-
93
+ config.per_page = 5
94
94
  end
95
95
  ```
96
96
 
@@ -1,8 +1,11 @@
1
1
  class Blog::Gem::AuthorsController < Blog::Gem::ApplicationController
2
+
3
+ before_action do |controller|
4
+ disable_breadcrumb if defined?(disable_breadcrumb)
5
+ end
2
6
  before_action :login_as_author, except: [:login, :login_submit]
3
7
  before_action :admin, only: [:index, :new, :create, :destroy]
4
8
  before_action :set_author, only: [:edit, :update, :destroy]
5
- before_action :disable_breadcrumb if defined?(disable_breadcrumb)
6
9
 
7
10
  def login_submit
8
11
  @page_title = "Author Login"
@@ -1,7 +1,10 @@
1
1
  class Blog::Gem::PostsController < Blog::Gem::ApplicationController
2
2
  before_action :login_as_author
3
3
  before_action :set_post, only: [:edit, :update, :destroy]
4
- before_action :disable_breadcrumb if defined?(disable_breadcrumb)
4
+
5
+ before_action do |controller|
6
+ disable_breadcrumb if defined?(disable_breadcrumb)
7
+ end
5
8
 
6
9
  def new
7
10
  @post = Blog::Gem::Post.new(author_id: current_author.id, show_author: true)
@@ -1,5 +1,5 @@
1
1
  module Blog
2
2
  module Gem
3
- VERSION = '0.1.1'
3
+ VERSION = '0.1.2'
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: blog-gem
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
4
+ version: 0.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Vincent Thelang