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 +4 -4
- data/README.md +1 -1
- data/app/controllers/blog/gem/authors_controller.rb +4 -1
- data/app/controllers/blog/gem/posts_controller.rb +4 -1
- data/lib/blog/gem/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 5b22c3027addf188258043be667697b147db9c4b
|
4
|
+
data.tar.gz: 9113d70e623f7cd986e31fcb3d8a7782c8d8fff8
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ff4d9c29541f334d42039dad402c8af4b74bf81c2d983638ff2cc38f82122aa6e034ef899d0fcc59e2c34983270bed4a58750589c7eff74a20e1d41dc6899414
|
7
|
+
data.tar.gz: 7b0f182b578a853e97cc5542733ef07367d1751e39f0719e9bebfbe843b950daf13a6b97cd6e1a31120f7ab924a73386aeb08832e1878b8c6cde4c6a1c00eb0f
|
data/README.md
CHANGED
@@ -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
|
-
|
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)
|
data/lib/blog/gem/version.rb
CHANGED