comfy_blog 2.0.3 → 2.0.4

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: c23d02796c11c424383ef59503f004d9d11a14a7
4
- data.tar.gz: 2bcdbffe51266427e3598a4cb27097b1abecd76f
3
+ metadata.gz: b9f0ea2bc15b3bc17c1876c6834cc470400ac644
4
+ data.tar.gz: b6c88d114cdbed7dc02d85bc56ca14e11266bb2b
5
5
  SHA512:
6
- metadata.gz: b8973cc41e1de0ce35f3ce0e115471f5b6fb86dff10c14737693f12bc7e68d54d8e8b5e594948eda998a6b196f9a30f5ef8416ca54168e627fab1499251e1ba9
7
- data.tar.gz: 107f15a97709acce139482c6536602c1029269f4ba90ee5b7c463bd42614c2d15f3bd446b41b52e6bc2aafc7aed5911f5fbcd84d1f5f1e4802f5829b36f9fd22
6
+ metadata.gz: 7f4a8e2d7d62f2432c1375a3f9c1464dba9b15970d05922eb33a3d32c5f9d77ba10703057c8708fd21fb5e4f4a93019104a71107e5b6319202655f5d2d4874d0
7
+ data.tar.gz: debdf31198ca3d0f07afe41f9a9ce082f05039a7282cb647745d1e0a14bf7e22bed73ddf5f8caac6f25e9482b50b59a846002acc14351cecf9c80ce0ca4e992b
data/README.md CHANGED
@@ -37,6 +37,8 @@ comfy_route :blog, path: 'blog'
37
37
 
38
38
  You should also find view templates in `/app/views/blog` folder. Feel free to adjust them as you see fit.
39
39
 
40
+ ![Admin Area Preview](https://github.com/comfy/comfy-blog/raw/master/doc/preview.jpg)
41
+
40
42
  ---
41
43
 
42
44
  Copyright 2009-2017 Oleg Khabarov
@@ -1,11 +1,12 @@
1
+ - content_for :right_column do
2
+ = render "comfy/admin/cms/categories/index", type: "Comfy::Blog::Post"
3
+
1
4
  .page-header
2
- = link_to t('.new_link'), new_comfy_admin_blog_post_path(@site), class: 'btn btn-secondary pull-right'
5
+ = link_to t('.new_link'), new_comfy_admin_blog_post_path(@site), class: 'btn btn-secondary float-right'
3
6
  %h2= t('.title')
4
7
 
5
8
  = comfy_admin_partial "comfy/admin/blog/partials/posts_before"
6
9
 
7
- = render "comfy/admin/cms/categories/index", type: "Comfy::Blog::Post"
8
-
9
10
  = comfy_paginate @posts
10
11
 
11
12
  %ul.list
@@ -19,5 +19,5 @@ Gem::Specification.new do |s|
19
19
 
20
20
  s.required_ruby_version = ">= 2.2.2"
21
21
 
22
- s.add_dependency "comfortable_mexican_sofa", ">= 2.0.3"
22
+ s.add_dependency "comfortable_mexican_sofa", ">= 2.0.4"
23
23
  end
Binary file
@@ -1,5 +1,5 @@
1
1
  module ComfyBlog
2
2
 
3
- VERSION = "2.0.3".freeze
3
+ VERSION = "2.0.4".freeze
4
4
 
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: comfy_blog
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.0.3
4
+ version: 2.0.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Oleg Khabarov
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2017-12-11 00:00:00.000000000 Z
11
+ date: 2017-12-12 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: comfortable_mexican_sofa
@@ -16,14 +16,14 @@ dependencies:
16
16
  requirements:
17
17
  - - ">="
18
18
  - !ruby/object:Gem::Version
19
- version: 2.0.3
19
+ version: 2.0.4
20
20
  type: :runtime
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
24
  - - ">="
25
25
  - !ruby/object:Gem::Version
26
- version: 2.0.3
26
+ version: 2.0.4
27
27
  description: Simple Blog Engine for ComfortableMexicanSofa
28
28
  email:
29
29
  - oleg@khabarov.ca
@@ -91,6 +91,7 @@ files:
91
91
  - config/storage.yml
92
92
  - db/migrate/00_create_cms.rb
93
93
  - db/migrate/01_create_blog.rb
94
+ - doc/preview.jpg
94
95
  - lib/comfy_blog.rb
95
96
  - lib/comfy_blog/configuration.rb
96
97
  - lib/comfy_blog/engine.rb