camaleon_cms 2.4.4.2 → 2.4.4.3

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: fc3e07537e67c571eec9b63db5f09708ea5b3e8e
4
- data.tar.gz: 5128328e45dfa810ea9a76a02a1ad44dcfe6d17e
3
+ metadata.gz: 1d378954102d09373cdff4a55ad93f38a54a8562
4
+ data.tar.gz: a31be20e3fa56bc42569a571a655732b9f5fcf1f
5
5
  SHA512:
6
- metadata.gz: f1bd02ae23bc5504c68e805fad7940daf4bf1a7e5d255e01d0bcbe9014061ca72a334b5ebfca376bcdefe03c649558c6cdb431bd9652004e80dad3f2b5761790
7
- data.tar.gz: fd4bee1b01b82101170336f7c96289205f7a6addbf8f3309185c7f6e2cd49543866a15fc3431f1eecf08ca248c933a9b20c9ea1c7c3b534f2a6db3ddc81aa9c7
6
+ metadata.gz: b0f69a80db88c10bfacff4464aa7b7f43d2a26b7b0ef287a28611b3803346a3e38702c5167ccf9a40eb6d6d45a4c039993d1e337fe4d317539fa658f0a8fdb58
7
+ data.tar.gz: a3e9bbc8e922365f3799e906b41249ba2e6c456372788c5881d3f23c77111a051872f6e75fb0ea3928f89dfd65e18d5779d36632a36d4d1a263b075d054176d0
data/README.md CHANGED
@@ -39,24 +39,12 @@
39
39
  * Add the gem in your Gemfile
40
40
 
41
41
  ```
42
- gem "camaleon_cms", '>= 2.4.3.10' # Stable versions 2.4.3.6, 2.4.3.5, 2.4.3.2, 2.3.6, 2.2.1, 2.1.1, 2.1.0
42
+ gem "camaleon_cms", '>= 2.4.4.3' # Stable versions 2.4.4.2, 2.4.3.10, 2.4.3.6, 2.4.3.5, 2.4.3.2, 2.3.6, 2.2.1, 2.1.1, 2.1.0
43
43
  # gem "camaleon_cms", github: 'owen2345/camaleon-cms' # current development version
44
+ # gem 'draper', '~> 3' # only for Rails 5
45
+ # verify (gem 'sass-rails', '~> 5.0') only for Rails 5
44
46
  ```
45
- * Only Rails 5 support
46
-
47
- Add in your Gemfile draper for Rails 5
48
- ```
49
- gem 'draper', '~> 3'
50
- ```
51
- Be careful with sass-rails, recommended v5 (Camaleon doesn't support for sprockets >= 4 which is included in sass-rails 6)
52
- ```
53
- gem 'sass-rails', '~> 5.0'
54
- ```
55
- Update bundle
56
- ```
57
- bundle update
58
- ```
59
-
47
+
60
48
  * Install required Gem and dependencies
61
49
 
62
50
  ```
@@ -67,13 +55,11 @@
67
55
  ```
68
56
  rails generate camaleon_cms:install
69
57
  ```
70
- In config/system.json you can customize your cms settings. [Here](config/system.json) you can see the full settings.
71
- * (Optional) If you want to manage CMS migrations manually, change config/system.json -> auto_include_migrations=false and generate it with:
72
- ```
73
- rake camaleon_cms:generate_migrations
74
- ```
58
+ * (Optional) Before continue you can configure your cms settings in (my_app/config/system.json), [here](config/system.json) you can see the full settings.
75
59
  * Create database structure
76
60
  ```
61
+ rake camaleon_cms:generate_migrations
62
+ # before run migrations you can customize copied migration files
77
63
  rake db:migrate
78
64
  ```
79
65
 
@@ -10,13 +10,5 @@
10
10
  <div class="entry-content">
11
11
  <%= raw @post.the_content %>
12
12
  </div><!-- .entry-content -->
13
- <footer class="entry-meta">
14
- <!-- custom fields -->
15
- <% if @post.render_fields.present? %>
16
- <hr>
17
- <h4><%= ct("extra_attributes", default: 'Extra Attributes') %></h4>
18
- <%= raw @post.render_fields %>
19
- <% end %>
20
- </footer><!-- .entry-meta -->
21
13
  </article><!-- #post -->
22
14
  <%= render partial: 'partials/comments', locals: {post: @post} if @post.can_commented? %>
@@ -10,13 +10,5 @@
10
10
  <div class="entry-content">
11
11
  <%= raw @post.the_content %>
12
12
  </div><!-- .entry-content -->
13
- <footer class="entry-meta">
14
- <!-- custom fields -->
15
- <% if @post.render_fields.present? %>
16
- <hr>
17
- <h4><%= ct("extra_attributes", default: 'Extra Attributes') %></h4>
18
- <%= raw @post.render_fields %>
19
- <% end %>
20
- </footer><!-- .entry-meta -->
21
13
  </article><!-- #post -->
22
14
  <%= render partial: 'partials/comments', locals: {post: @post} if @post.can_commented? %>
@@ -10,15 +10,7 @@
10
10
  <div class="item-content">
11
11
  <%= raw @post.the_content %>
12
12
  </div>
13
-
14
- <!-- custom fields -->
15
- <% if @post.render_fields.present? %>
16
- <hr>
17
- <h4><%= ct("extra_attributes", default: 'Extra Attributes') %></h4>
18
- <%= raw @post.render_fields %>
19
- <% end %>
20
13
  </article>
21
14
  </div>
22
15
  </div>
23
- </div>
24
- <%= @post.render_fields %>
16
+ </div>
@@ -63,14 +63,4 @@
63
63
  </div>
64
64
  </div>
65
65
  <% end %>
66
- <% end %>
67
-
68
- <!-- custom fields -->
69
- <% if post.render_fields.present? && !defined?(skip_fields) %>
70
- <div class="panel panel-default">
71
- <div class="panel-heading"><%= ct("extra_attributes", default: 'Extra Attributes') %></div>
72
- <div class="panel-body">
73
- <%= raw post.render_fields %>
74
- </div>
75
- </div>
76
66
  <% end %>
@@ -8,14 +8,6 @@
8
8
  <div class="item-content">
9
9
  <%= raw @post.the_content %>
10
10
  </div>
11
-
12
- <!-- custom fields -->
13
- <% if @post.render_fields.present? %>
14
- <hr>
15
- <h4><%= ct("extra_attributes", default: 'Extra Attributes') %></h4>
16
- <%= raw @post.render_fields %>
17
- <% end %>
18
-
19
11
  </article>
20
12
  </div>
21
13
  <% else %>
@@ -1,3 +1,3 @@
1
1
  module CamaleonCms
2
- VERSION = '2.4.4.2'
2
+ VERSION = '2.4.4.3'
3
3
  end
@@ -4,6 +4,7 @@
4
4
  "users_share_sites": true, //(boolean) true: permit to share users between sites, false: All users are assigned for a unique site. (Only changed before installation)
5
5
  "db_prefix": "cama_", // prefix name for database tables
6
6
  "relative_url_root": "", // URL prefix, for example to get http://localhost:3000/blog/, this should be "blog"
7
+ "auto_include_migrations": false, // permit to avoid auto include of all migrations of camaleon cms and its related plugins
7
8
  "hooks": {}
8
9
  }
9
10
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: camaleon_cms
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.4.4.2
4
+ version: 2.4.4.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Owen Peredo Diaz