publify_core 9.0.0.pre4 → 9.0.0.pre5
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.
Potentially problematic release.
This version of publify_core might be problematic. Click here for more details.
- checksums.yaml +4 -4
- data/.travis.yml +2 -0
- data/CHANGELOG.md +7 -0
- data/app/assets/javascripts/publify_admin.js +16 -16
- data/app/controllers/admin/notes_controller.rb +1 -2
- data/app/controllers/admin/profiles_controller.rb +1 -2
- data/app/controllers/admin/tags_controller.rb +1 -2
- data/app/controllers/theme_controller.rb +1 -2
- data/app/models/article.rb +1 -1
- data/app/models/article/states.rb +1 -2
- data/app/models/comment.rb +1 -1
- data/app/models/content.rb +3 -3
- data/app/models/feedback.rb +1 -1
- data/app/models/redirect.rb +1 -1
- data/app/models/resource.rb +1 -1
- data/app/models/sidebar.rb +1 -2
- data/app/models/trackback.rb +1 -2
- data/app/models/user.rb +1 -1
- data/config/locales/da.yml +0 -10
- data/config/locales/de.yml +0 -10
- data/config/locales/en.yml +0 -10
- data/config/locales/es-MX.yml +0 -10
- data/config/locales/fr.yml +0 -10
- data/config/locales/he.yml +0 -10
- data/config/locales/it.yml +0 -10
- data/config/locales/ja.yml +0 -10
- data/config/locales/lt.yml +0 -10
- data/config/locales/nb-NO.yml +0 -10
- data/config/locales/nl.yml +0 -10
- data/config/locales/pl.yml +0 -10
- data/config/locales/pt-BR.yml +0 -10
- data/config/locales/ro.yml +0 -10
- data/config/locales/ru.yml +0 -10
- data/config/locales/zh-CN.yml +0 -10
- data/config/locales/zh-TW.yml +0 -10
- data/lib/publify_core.rb +0 -1
- data/lib/publify_core/version.rb +1 -1
- data/publify_core.gemspec +6 -7
- metadata +15 -29
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 45fa33d99e6d10e99427c5a9d0a1014e195efd7c
|
4
|
+
data.tar.gz: 661ef66ef0906dd1d0cd78ddedcca3ff3f187527
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ffa5e646dbf467df24fb03260004b7c07e27f1ea7d4a7bc44a8218644ff373ff167fae63f7fb73bffa10398359ef7da94185f689e9b63e316e9de5fb1e041cbc
|
7
|
+
data.tar.gz: f214aceaf81a68dd5bddaf710e7cc7d1b49eec7b80d97daa37975193ae95a6f7983200f6495c93b0d31eaafe785c37b7bc6d5681a0be20226329e3dc431bd21a
|
data/.travis.yml
CHANGED
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,12 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
## 9.0.0.pre5 / 2016-12-17
|
4
|
+
|
5
|
+
* Update dependencies
|
6
|
+
* Remove activerecord-session_store. The main application should decide on the
|
7
|
+
store to use.
|
8
|
+
* Remove unused translations
|
9
|
+
|
3
10
|
## 9.0.0.pre4
|
4
11
|
|
5
12
|
* Ensure theme files are part of the gem.
|
@@ -3,22 +3,22 @@
|
|
3
3
|
//= require jquery
|
4
4
|
//= require jquery_ujs
|
5
5
|
//= require jquery-ui
|
6
|
-
//= require jquery-ui/datepicker-da
|
7
|
-
//= require jquery-ui/datepicker-de
|
8
|
-
//= require jquery-ui/datepicker-es
|
9
|
-
//= require jquery-ui/datepicker-fr
|
10
|
-
//= require jquery-ui/datepicker-he
|
11
|
-
//= require jquery-ui/datepicker-it
|
12
|
-
//= require jquery-ui/datepicker-ja
|
13
|
-
//= require jquery-ui/datepicker-lt
|
14
|
-
//= require jquery-ui/datepicker-nb
|
15
|
-
//= require jquery-ui/datepicker-nl
|
16
|
-
//= require jquery-ui/datepicker-pl
|
17
|
-
//= require jquery-ui/datepicker-pt-BR
|
18
|
-
//= require jquery-ui/datepicker-ro
|
19
|
-
//= require jquery-ui/datepicker-ru
|
20
|
-
//= require jquery-ui/datepicker-zh-CN
|
21
|
-
//= require jquery-ui/datepicker-zh-TW
|
6
|
+
//= require jquery-ui/i18n/datepicker-da
|
7
|
+
//= require jquery-ui/i18n/datepicker-de
|
8
|
+
//= require jquery-ui/i18n/datepicker-es
|
9
|
+
//= require jquery-ui/i18n/datepicker-fr
|
10
|
+
//= require jquery-ui/i18n/datepicker-he
|
11
|
+
//= require jquery-ui/i18n/datepicker-it
|
12
|
+
//= require jquery-ui/i18n/datepicker-ja
|
13
|
+
//= require jquery-ui/i18n/datepicker-lt
|
14
|
+
//= require jquery-ui/i18n/datepicker-nb
|
15
|
+
//= require jquery-ui/i18n/datepicker-nl
|
16
|
+
//= require jquery-ui/i18n/datepicker-pl
|
17
|
+
//= require jquery-ui/i18n/datepicker-pt-BR
|
18
|
+
//= require jquery-ui/i18n/datepicker-ro
|
19
|
+
//= require jquery-ui/i18n/datepicker-ru
|
20
|
+
//= require jquery-ui/i18n/datepicker-zh-CN
|
21
|
+
//= require jquery-ui/i18n/datepicker-zh-TW
|
22
22
|
//= require datetimepicker
|
23
23
|
//= require bootstrap
|
24
24
|
//= require quicktags
|
data/app/models/article.rb
CHANGED
@@ -16,7 +16,7 @@ class Article < Content
|
|
16
16
|
has_many :pings, dependent: :destroy
|
17
17
|
has_many :trackbacks, dependent: :destroy
|
18
18
|
has_many :feedback
|
19
|
-
has_many :resources, dependent: :nullify
|
19
|
+
has_many :resources, inverse_of: :article, dependent: :nullify
|
20
20
|
has_many :triggers, as: :pending_item
|
21
21
|
has_many :comments, dependent: :destroy
|
22
22
|
|
data/app/models/comment.rb
CHANGED
data/app/models/content.rb
CHANGED
@@ -10,13 +10,13 @@ class Content < ActiveRecord::Base
|
|
10
10
|
after_save :invalidates_cache?
|
11
11
|
after_destroy ->(c) { c.invalidates_cache?(true) }
|
12
12
|
|
13
|
-
belongs_to :text_filter
|
14
|
-
belongs_to :user
|
13
|
+
belongs_to :text_filter, optional: true
|
14
|
+
belongs_to :user, optional: true
|
15
15
|
belongs_to :blog
|
16
16
|
|
17
17
|
validates :blog, presence: true
|
18
18
|
|
19
|
-
has_one :redirect, dependent: :destroy
|
19
|
+
has_one :redirect, dependent: :destroy, inverse_of: :contents
|
20
20
|
|
21
21
|
has_many :triggers, as: :pending_item, dependent: :delete_all
|
22
22
|
|
data/app/models/feedback.rb
CHANGED
data/app/models/redirect.rb
CHANGED
data/app/models/resource.rb
CHANGED
data/app/models/sidebar.rb
CHANGED
data/app/models/trackback.rb
CHANGED
data/app/models/user.rb
CHANGED
data/config/locales/da.yml
CHANGED
@@ -26,15 +26,6 @@ da:
|
|
26
26
|
base:
|
27
27
|
not_allowed: Error, you are not allowed to perform this action
|
28
28
|
successfully_deleted: This %{name} was deleted successfully
|
29
|
-
cache:
|
30
|
-
destroy:
|
31
|
-
error: Cache could not be cleared
|
32
|
-
success: Cache has been sweeped
|
33
|
-
show:
|
34
|
-
cache: Cache
|
35
|
-
explanation: To save on resources, Publify generates static files along with your content. These files are deleted when a new article is created. You can, at any time, delete these files yourself.
|
36
|
-
stats: Der er %{files_count} objekter i cachen
|
37
|
-
sweep_cache: Sweep cache
|
38
29
|
content:
|
39
30
|
access_granted:
|
40
31
|
error: Error, you are not allowed to perform this action
|
@@ -527,7 +518,6 @@ da:
|
|
527
518
|
all_pages: All pages
|
528
519
|
article_types: Article types
|
529
520
|
articles: Articles
|
530
|
-
cache: Cache
|
531
521
|
choose_theme: Choose theme
|
532
522
|
customize_sidebar: Customize sidebar
|
533
523
|
design: Design
|
data/config/locales/de.yml
CHANGED
@@ -26,15 +26,6 @@ de:
|
|
26
26
|
base:
|
27
27
|
not_allowed: Error, you are not allowed to perform this action
|
28
28
|
successfully_deleted: This %{name} was deleted successfully
|
29
|
-
cache:
|
30
|
-
destroy:
|
31
|
-
error: Cache could not be cleared
|
32
|
-
success: Cache has been sweeped
|
33
|
-
show:
|
34
|
-
cache: Cache
|
35
|
-
explanation: To save on resources, Publify generates static files along with your content. These files are deleted when a new article is created. You can, at any time, delete these files yourself.
|
36
|
-
stats: Es sind %{files_count} Einträge im Cache
|
37
|
-
sweep_cache: Sweep cache
|
38
29
|
content:
|
39
30
|
access_granted:
|
40
31
|
error: Error, you are not allowed to perform this action
|
@@ -527,7 +518,6 @@ de:
|
|
527
518
|
all_pages: All pages
|
528
519
|
article_types: Article types
|
529
520
|
articles: Articles
|
530
|
-
cache: Cache
|
531
521
|
choose_theme: Choose theme
|
532
522
|
customize_sidebar: Customize sidebar
|
533
523
|
design: Design
|
data/config/locales/en.yml
CHANGED
@@ -26,15 +26,6 @@ en:
|
|
26
26
|
base:
|
27
27
|
not_allowed: Error, you are not allowed to perform this action
|
28
28
|
successfully_deleted: This %{name} was deleted successfully
|
29
|
-
cache:
|
30
|
-
destroy:
|
31
|
-
error: Cache could not be cleared
|
32
|
-
success: Cache has been cleared
|
33
|
-
show:
|
34
|
-
cache: Cache
|
35
|
-
explanation: To save on resources, Publify generates static files along with your content. These files are deleted when a new article is created. You can, at any time, delete these files yourself.
|
36
|
-
stats: There are currently %{files_count} files in cache for a total amount of %{size} Kb
|
37
|
-
sweep_cache: Sweep cache
|
38
29
|
content:
|
39
30
|
access_granted:
|
40
31
|
error: Error, you are not allowed to perform this action
|
@@ -527,7 +518,6 @@ en:
|
|
527
518
|
all_pages: All pages
|
528
519
|
article_types: Article types
|
529
520
|
articles: Articles
|
530
|
-
cache: Cache
|
531
521
|
choose_theme: Choose theme
|
532
522
|
customize_sidebar: Customize sidebar
|
533
523
|
design: Design
|
data/config/locales/es-MX.yml
CHANGED
@@ -26,15 +26,6 @@ es-MX:
|
|
26
26
|
base:
|
27
27
|
not_allowed: Error, you are not allowed to perform this action
|
28
28
|
successfully_deleted: This %{name} was deleted successfully
|
29
|
-
cache:
|
30
|
-
destroy:
|
31
|
-
error: Cache could not be cleared
|
32
|
-
success: Cache has been sweeped
|
33
|
-
show:
|
34
|
-
cache: Caché
|
35
|
-
explanation: To save on resources, Publify generates static files along with your content. These files are deleted when a new article is created. You can, at any time, delete these files yourself.
|
36
|
-
stats: There are currently %{files_count} files in cache for a total amount of %{size} Kb
|
37
|
-
sweep_cache: Sweep cache
|
38
29
|
content:
|
39
30
|
access_granted:
|
40
31
|
error: Error, you are not allowed to perform this action
|
@@ -527,7 +518,6 @@ es-MX:
|
|
527
518
|
all_pages: All pages
|
528
519
|
article_types: Article types
|
529
520
|
articles: Articles
|
530
|
-
cache: Cache
|
531
521
|
choose_theme: Choose theme
|
532
522
|
customize_sidebar: Customize sidebar
|
533
523
|
design: Design
|
data/config/locales/fr.yml
CHANGED
@@ -26,15 +26,6 @@ fr:
|
|
26
26
|
base:
|
27
27
|
not_allowed: Erreur, vous n'êtes pas autorisé à réaliser cette action
|
28
28
|
successfully_deleted: "%{name} a été supprimé avec succès"
|
29
|
-
cache:
|
30
|
-
destroy:
|
31
|
-
error: Oups, un problème s'est produit et le cache n'a pas pu être vidé correctement
|
32
|
-
success: Le cache a été vidé avec succès
|
33
|
-
show:
|
34
|
-
cache: Cache
|
35
|
-
explanation: Afin d'économiser des ressources, Publify génère des fichiers statiques avec votre contenu. Ces fichiers sont supprimés lors d'une nouvelle publication. Vous pouvez cependant les effacer vous-même.
|
36
|
-
stats: Il y a actuellement %{files_count} fichiers en cache pour un total de %{size} kilo octets.
|
37
|
-
sweep_cache: Vider le cache
|
38
29
|
content:
|
39
30
|
access_granted:
|
40
31
|
error: Erreur, vous n'avez pas les droits requis pour effectuer cette action
|
@@ -527,7 +518,6 @@ fr:
|
|
527
518
|
all_pages: All pages
|
528
519
|
article_types: Article types
|
529
520
|
articles: Articles
|
530
|
-
cache: Cache
|
531
521
|
choose_theme: Choose theme
|
532
522
|
customize_sidebar: Customize sidebar
|
533
523
|
design: Design
|
data/config/locales/he.yml
CHANGED
@@ -26,15 +26,6 @@ he:
|
|
26
26
|
base:
|
27
27
|
not_allowed: Error, you are not allowed to perform this action
|
28
28
|
successfully_deleted: This %{name} was deleted successfully
|
29
|
-
cache:
|
30
|
-
destroy:
|
31
|
-
error: Cache could not be cleared
|
32
|
-
success: המטמון נוקה
|
33
|
-
show:
|
34
|
-
cache: Cache
|
35
|
-
explanation: To save on resources, Publify generates static files along with your content. These files are deleted when a new article is created. You can, at any time, delete these files yourself.
|
36
|
-
stats: There are currently %{files_count} files in cache for a total amount of %{size} Kb
|
37
|
-
sweep_cache: Sweep cache
|
38
29
|
content:
|
39
30
|
access_granted:
|
40
31
|
error: שגיאה, אינך רשאי לבצע פעולה זו
|
@@ -527,7 +518,6 @@ he:
|
|
527
518
|
all_pages: All pages
|
528
519
|
article_types: Article types
|
529
520
|
articles: Articles
|
530
|
-
cache: Cache
|
531
521
|
choose_theme: Choose theme
|
532
522
|
customize_sidebar: Customize sidebar
|
533
523
|
design: Design
|
data/config/locales/it.yml
CHANGED
@@ -26,15 +26,6 @@ it:
|
|
26
26
|
base:
|
27
27
|
not_allowed: Error, you are not allowed to perform this action
|
28
28
|
successfully_deleted: This %{name} was deleted successfully
|
29
|
-
cache:
|
30
|
-
destroy:
|
31
|
-
error: Cache could not be cleared
|
32
|
-
success: Cache pulita
|
33
|
-
show:
|
34
|
-
cache: Cache
|
35
|
-
explanation: To save on resources, Publify generates static files along with your content. These files are deleted when a new article is created. You can, at any time, delete these files yourself.
|
36
|
-
stats: There are currently %{files_count} files in cache for a total amount of %{size} Kb
|
37
|
-
sweep_cache: Sweep cache
|
38
29
|
content:
|
39
30
|
access_granted:
|
40
31
|
error: Error, you are not allowed to perform this action
|
@@ -527,7 +518,6 @@ it:
|
|
527
518
|
all_pages: All pages
|
528
519
|
article_types: Article types
|
529
520
|
articles: Articles
|
530
|
-
cache: Cache
|
531
521
|
choose_theme: Choose theme
|
532
522
|
customize_sidebar: Customize sidebar
|
533
523
|
design: Design
|
data/config/locales/ja.yml
CHANGED
@@ -26,15 +26,6 @@ ja:
|
|
26
26
|
base:
|
27
27
|
not_allowed: Error, you are not allowed to perform this action
|
28
28
|
successfully_deleted: This %{name} was deleted successfully
|
29
|
-
cache:
|
30
|
-
destroy:
|
31
|
-
error: Cache could not be cleared
|
32
|
-
success: キャッシュはクリアされました
|
33
|
-
show:
|
34
|
-
cache: キャッシュ
|
35
|
-
explanation: To save on resources, Publify generates static files along with your content. These files are deleted when a new article is created. You can, at any time, delete these files yourself.
|
36
|
-
stats: ページキャッシュに%{files_count}個の記事があります
|
37
|
-
sweep_cache: キャッシュをクリア
|
38
29
|
content:
|
39
30
|
access_granted:
|
40
31
|
error: あなたのアカウントではこの操作は許可されていません
|
@@ -527,7 +518,6 @@ ja:
|
|
527
518
|
all_pages: All pages
|
528
519
|
article_types: Article types
|
529
520
|
articles: Articles
|
530
|
-
cache: Cache
|
531
521
|
choose_theme: Choose theme
|
532
522
|
customize_sidebar: Customize sidebar
|
533
523
|
design: Design
|
data/config/locales/lt.yml
CHANGED
@@ -26,15 +26,6 @@ lt:
|
|
26
26
|
base:
|
27
27
|
not_allowed: Error, you are not allowed to perform this action
|
28
28
|
successfully_deleted: This %{name} was deleted successfully
|
29
|
-
cache:
|
30
|
-
destroy:
|
31
|
-
error: Cache could not be cleared
|
32
|
-
success: Cache has been cleared
|
33
|
-
show:
|
34
|
-
cache: Cache
|
35
|
-
explanation: To save on resources, Publify generates static files along with your content. These files are deleted when a new article is created. You can, at any time, delete these files yourself.
|
36
|
-
stats: There are currently %{files_count} files in cache for a total amount of %{size} Kb
|
37
|
-
sweep_cache: Sweep cache
|
38
29
|
content:
|
39
30
|
access_granted:
|
40
31
|
error: Error, you are not allowed to perform this action
|
@@ -527,7 +518,6 @@ lt:
|
|
527
518
|
all_pages: All pages
|
528
519
|
article_types: Article types
|
529
520
|
articles: Articles
|
530
|
-
cache: Cache
|
531
521
|
choose_theme: Choose theme
|
532
522
|
customize_sidebar: Customize sidebar
|
533
523
|
design: Design
|
data/config/locales/nb-NO.yml
CHANGED
@@ -26,15 +26,6 @@ nb-NO:
|
|
26
26
|
base:
|
27
27
|
not_allowed: Feil, du har ikke lov til å utføre denne handlingen
|
28
28
|
successfully_deleted: Slettet %{name}
|
29
|
-
cache:
|
30
|
-
destroy:
|
31
|
-
error: Cachen kunne ikke slettes
|
32
|
-
success: Cachen er slettet
|
33
|
-
show:
|
34
|
-
cache: Cache
|
35
|
-
explanation: For å spare ressurser cacher Publify innholdet i statiske filer. Cachen slettes hver gang en ny artikkel opprettes. Du kan også velge å slette cachen selv.
|
36
|
-
stats: Det finnes for øyeblikket %{files_count} filer i cachen som utgjør totalt %{size} kB
|
37
|
-
sweep_cache: Slett cache
|
38
29
|
content:
|
39
30
|
access_granted:
|
40
31
|
error: Du har ikke tillatelse til å utføre denne handlingen
|
@@ -527,7 +518,6 @@ nb-NO:
|
|
527
518
|
all_pages: All pages
|
528
519
|
article_types: Article types
|
529
520
|
articles: Artikler
|
530
|
-
cache: Cache
|
531
521
|
choose_theme: Choose theme
|
532
522
|
customize_sidebar: Customize sidebar
|
533
523
|
design: Design
|
data/config/locales/nl.yml
CHANGED
@@ -26,15 +26,6 @@ nl:
|
|
26
26
|
base:
|
27
27
|
not_allowed: Error, you are not allowed to perform this action
|
28
28
|
successfully_deleted: This %{name} was deleted successfully
|
29
|
-
cache:
|
30
|
-
destroy:
|
31
|
-
error: Cache could not be cleared
|
32
|
-
success: Cache has been sweeped
|
33
|
-
show:
|
34
|
-
cache: Cache
|
35
|
-
explanation: To save on resources, Publify generates static files along with your content. These files are deleted when a new article is created. You can, at any time, delete these files yourself.
|
36
|
-
stats: There are currently %{files_count} files in cache for a total amount of %{size} Kb
|
37
|
-
sweep_cache: Sweep cache
|
38
29
|
content:
|
39
30
|
access_granted:
|
40
31
|
error: Fout, je mag dit niet doen
|
@@ -527,7 +518,6 @@ nl:
|
|
527
518
|
all_pages: Alle pagina's
|
528
519
|
article_types: Article types
|
529
520
|
articles: Articles
|
530
|
-
cache: Cache
|
531
521
|
choose_theme: Choose theme
|
532
522
|
customize_sidebar: Customize sidebar
|
533
523
|
design: Design
|
data/config/locales/pl.yml
CHANGED
@@ -26,15 +26,6 @@ pl:
|
|
26
26
|
base:
|
27
27
|
not_allowed: Error, you are not allowed to perform this action
|
28
28
|
successfully_deleted: This %{name} was deleted successfully
|
29
|
-
cache:
|
30
|
-
destroy:
|
31
|
-
error: Cache could not be cleared
|
32
|
-
success: Bufor opróżniono
|
33
|
-
show:
|
34
|
-
cache: Bufor
|
35
|
-
explanation: To save on resources, Publify generates static files along with your content. These files are deleted when a new article is created. You can, at any time, delete these files yourself.
|
36
|
-
stats: There are currently %{files_count} files in cache for a total amount of %{size} Kb
|
37
|
-
sweep_cache: Sweep cache
|
38
29
|
content:
|
39
30
|
access_granted:
|
40
31
|
error: Error, you are not allowed to perform this action
|
@@ -527,7 +518,6 @@ pl:
|
|
527
518
|
all_pages: All pages
|
528
519
|
article_types: Article types
|
529
520
|
articles: Articles
|
530
|
-
cache: Cache
|
531
521
|
choose_theme: Choose theme
|
532
522
|
customize_sidebar: Customize sidebar
|
533
523
|
design: Design
|
data/config/locales/pt-BR.yml
CHANGED
@@ -26,15 +26,6 @@ pt-BR:
|
|
26
26
|
base:
|
27
27
|
not_allowed: Erro, você não possui permissão para executar esta ação
|
28
28
|
successfully_deleted: Este %{name} foi removido com sucesso
|
29
|
-
cache:
|
30
|
-
destroy:
|
31
|
-
error: Cache não pode ser removido
|
32
|
-
success: Cache foi removido
|
33
|
-
show:
|
34
|
-
cache: Cache
|
35
|
-
explanation: Para economizar recursos, Publify gera arquivos estáticos juntamente com o seu conteúdo. Esses arquivos são apagados automaticamente quando um novo artigo é criado. Você pode, a qualquer momento, excluir esses arquivos.
|
36
|
-
stats: Atualmente existem %{files_count} arquivos em cache para uma quantidade total de %{size} Kb.
|
37
|
-
sweep_cache: Limpar cache
|
38
29
|
content:
|
39
30
|
access_granted:
|
40
31
|
error: Erro, você não tem permissão para executar essa tarefa
|
@@ -527,7 +518,6 @@ pt-BR:
|
|
527
518
|
all_pages: All pages
|
528
519
|
article_types: Article types
|
529
520
|
articles: Artigos
|
530
|
-
cache: Cache
|
531
521
|
choose_theme: Escolha um tema
|
532
522
|
customize_sidebar: Customize sidebar
|
533
523
|
design: Design
|
data/config/locales/ro.yml
CHANGED
@@ -26,15 +26,6 @@ ro:
|
|
26
26
|
base:
|
27
27
|
not_allowed: Error, you are not allowed to perform this action
|
28
28
|
successfully_deleted: This %{name} was deleted successfully
|
29
|
-
cache:
|
30
|
-
destroy:
|
31
|
-
error: Cache could not be cleared
|
32
|
-
success: Cache has been sweeped
|
33
|
-
show:
|
34
|
-
cache: Cache
|
35
|
-
explanation: To save on resources, Publify generates static files along with your content. These files are deleted when a new article is created. You can, at any time, delete these files yourself.
|
36
|
-
stats: There are currently %{files_count} files in cache for a total amount of %{size} Kb
|
37
|
-
sweep_cache: Sweep cache
|
38
29
|
content:
|
39
30
|
access_granted:
|
40
31
|
error: Error, you are not allowed to perform this action
|
@@ -527,7 +518,6 @@ ro:
|
|
527
518
|
all_pages: All pages
|
528
519
|
article_types: Article types
|
529
520
|
articles: Articol
|
530
|
-
cache: Cache
|
531
521
|
choose_theme: Alege o temă
|
532
522
|
customize_sidebar: Customize sidebar
|
533
523
|
design: Design
|
data/config/locales/ru.yml
CHANGED
@@ -26,15 +26,6 @@ ru:
|
|
26
26
|
base:
|
27
27
|
not_allowed: Error, you are not allowed to perform this action
|
28
28
|
successfully_deleted: This %{name} was deleted successfully
|
29
|
-
cache:
|
30
|
-
destroy:
|
31
|
-
error: Cache could not be cleared
|
32
|
-
success: Cache has been sweeped
|
33
|
-
show:
|
34
|
-
cache: Cache
|
35
|
-
explanation: To save on resources, Publify generates static files along with your content. These files are deleted when a new article is created. You can, at any time, delete these files yourself.
|
36
|
-
stats: There are currently %{files_count} files in cache for a total amount of %{size} Kb
|
37
|
-
sweep_cache: Sweep cache
|
38
29
|
content:
|
39
30
|
access_granted:
|
40
31
|
error: Error, you are not allowed to perform this action
|
@@ -527,7 +518,6 @@ ru:
|
|
527
518
|
all_pages: Все страницы
|
528
519
|
article_types: Виды статей
|
529
520
|
articles: Посты
|
530
|
-
cache: Кэш
|
531
521
|
choose_theme: Выбрать тему
|
532
522
|
customize_sidebar: Настроить боковую колонку
|
533
523
|
design: Дизайн
|
data/config/locales/zh-CN.yml
CHANGED
@@ -26,15 +26,6 @@ zh-CN:
|
|
26
26
|
base:
|
27
27
|
not_allowed: Error, you are not allowed to perform this action
|
28
28
|
successfully_deleted: This %{name} was deleted successfully
|
29
|
-
cache:
|
30
|
-
destroy:
|
31
|
-
error: Cache could not be cleared
|
32
|
-
success: cache已清除
|
33
|
-
show:
|
34
|
-
cache: 儲存
|
35
|
-
explanation: To save on resources, Publify generates static files along with your content. These files are deleted when a new article is created. You can, at any time, delete these files yourself.
|
36
|
-
stats: 有%{files_count}個項目在Cache中
|
37
|
-
sweep_cache: Sweep cache
|
38
29
|
content:
|
39
30
|
access_granted:
|
40
31
|
error: 错误,不允许进行此操作
|
@@ -527,7 +518,6 @@ zh-CN:
|
|
527
518
|
all_pages: All pages
|
528
519
|
article_types: Article types
|
529
520
|
articles: Articles
|
530
|
-
cache: Cache
|
531
521
|
choose_theme: Choose theme
|
532
522
|
customize_sidebar: Customize sidebar
|
533
523
|
design: Design
|
data/config/locales/zh-TW.yml
CHANGED
@@ -26,15 +26,6 @@ zh-TW:
|
|
26
26
|
base:
|
27
27
|
not_allowed: Error, you are not allowed to perform this action
|
28
28
|
successfully_deleted: This %{name} was deleted successfully
|
29
|
-
cache:
|
30
|
-
destroy:
|
31
|
-
error: Cache could not be cleared
|
32
|
-
success: Cache has been sweeped
|
33
|
-
show:
|
34
|
-
cache: 儲存
|
35
|
-
explanation: To save on resources, Publify generates static files along with your content. These files are deleted when a new article is created. You can, at any time, delete these files yourself.
|
36
|
-
stats: 有%{files_count}個項目在Cache中
|
37
|
-
sweep_cache: Sweep cache
|
38
29
|
content:
|
39
30
|
access_granted:
|
40
31
|
error: Error, you are not allowed to perform this action
|
@@ -527,7 +518,6 @@ zh-TW:
|
|
527
518
|
all_pages: All pages
|
528
519
|
article_types: Article types
|
529
520
|
articles: Articles
|
530
|
-
cache: Cache
|
531
521
|
choose_theme: Choose theme
|
532
522
|
customize_sidebar: Customize sidebar
|
533
523
|
design: Design
|
data/lib/publify_core.rb
CHANGED
data/lib/publify_core/version.rb
CHANGED
data/publify_core.gemspec
CHANGED
@@ -22,7 +22,6 @@ Gem::Specification.new do |s|
|
|
22
22
|
|
23
23
|
s.add_dependency 'rails', '~> 5.0.0'
|
24
24
|
s.add_dependency 'RedCloth', '~> 4.3.1'
|
25
|
-
s.add_dependency 'activerecord-session_store', '~> 1.0.0'
|
26
25
|
s.add_dependency 'akismet', '~> 2.0'
|
27
26
|
s.add_dependency 'bluecloth', '~> 2.1'
|
28
27
|
s.add_dependency 'bootstrap-sass', '~> 3.3.6'
|
@@ -31,10 +30,10 @@ Gem::Specification.new do |s|
|
|
31
30
|
s.add_dependency 'devise', '~> 4.2.0'
|
32
31
|
s.add_dependency 'devise-i18n', '~> 1.1.0'
|
33
32
|
s.add_dependency 'dynamic_form', '~> 1.1.4'
|
34
|
-
s.add_dependency 'feedjira', '~> 2.
|
35
|
-
s.add_dependency 'fog-aws', '~>
|
33
|
+
s.add_dependency 'feedjira', '~> 2.1.0'
|
34
|
+
s.add_dependency 'fog-aws', '~> 1.1.0'
|
36
35
|
s.add_dependency 'jquery-rails', '~> 4.2.1'
|
37
|
-
s.add_dependency 'jquery-ui-rails', '~>
|
36
|
+
s.add_dependency 'jquery-ui-rails', '~> 6.0.1'
|
38
37
|
s.add_dependency 'kaminari', '~> 0.17.0'
|
39
38
|
s.add_dependency 'mini_magick', '~> 4.2'
|
40
39
|
s.add_dependency 'rails-timeago', '~> 2.0'
|
@@ -42,14 +41,14 @@ Gem::Specification.new do |s|
|
|
42
41
|
s.add_dependency 'recaptcha', '~> 4.0.0'
|
43
42
|
s.add_dependency 'rubypants', '~> 0.6.0'
|
44
43
|
s.add_dependency 'sass-rails', '~> 5.0'
|
45
|
-
s.add_dependency 'twitter', '~>
|
44
|
+
s.add_dependency 'twitter', '~> 6.0.0'
|
46
45
|
s.add_dependency 'uuidtools', '~> 2.1.1'
|
47
46
|
|
48
47
|
s.add_development_dependency 'sqlite3'
|
49
48
|
s.add_development_dependency 'rspec-rails', '~> 3.5.2'
|
50
49
|
s.add_development_dependency 'capybara', '~> 2.7'
|
51
|
-
s.add_development_dependency 'factory_girl_rails', '~> 4.
|
52
|
-
s.add_development_dependency 'rubocop', '~> 0.
|
50
|
+
s.add_development_dependency 'factory_girl_rails', '~> 4.8.0'
|
51
|
+
s.add_development_dependency 'rubocop', '~> 0.46.0'
|
53
52
|
s.add_development_dependency 'i18n-tasks', '~> 0.9.1'
|
54
53
|
s.add_development_dependency 'rails-controller-testing', '~> 1.0.1'
|
55
54
|
end
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: publify_core
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 9.0.0.
|
4
|
+
version: 9.0.0.pre5
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Matijs van Zuijlen
|
@@ -11,7 +11,7 @@ authors:
|
|
11
11
|
autorequire:
|
12
12
|
bindir: bin
|
13
13
|
cert_chain: []
|
14
|
-
date: 2016-
|
14
|
+
date: 2016-12-17 00:00:00.000000000 Z
|
15
15
|
dependencies:
|
16
16
|
- !ruby/object:Gem::Dependency
|
17
17
|
name: rails
|
@@ -41,20 +41,6 @@ dependencies:
|
|
41
41
|
- - "~>"
|
42
42
|
- !ruby/object:Gem::Version
|
43
43
|
version: 4.3.1
|
44
|
-
- !ruby/object:Gem::Dependency
|
45
|
-
name: activerecord-session_store
|
46
|
-
requirement: !ruby/object:Gem::Requirement
|
47
|
-
requirements:
|
48
|
-
- - "~>"
|
49
|
-
- !ruby/object:Gem::Version
|
50
|
-
version: 1.0.0
|
51
|
-
type: :runtime
|
52
|
-
prerelease: false
|
53
|
-
version_requirements: !ruby/object:Gem::Requirement
|
54
|
-
requirements:
|
55
|
-
- - "~>"
|
56
|
-
- !ruby/object:Gem::Version
|
57
|
-
version: 1.0.0
|
58
44
|
- !ruby/object:Gem::Dependency
|
59
45
|
name: akismet
|
60
46
|
requirement: !ruby/object:Gem::Requirement
|
@@ -173,28 +159,28 @@ dependencies:
|
|
173
159
|
requirements:
|
174
160
|
- - "~>"
|
175
161
|
- !ruby/object:Gem::Version
|
176
|
-
version: 2.
|
162
|
+
version: 2.1.0
|
177
163
|
type: :runtime
|
178
164
|
prerelease: false
|
179
165
|
version_requirements: !ruby/object:Gem::Requirement
|
180
166
|
requirements:
|
181
167
|
- - "~>"
|
182
168
|
- !ruby/object:Gem::Version
|
183
|
-
version: 2.
|
169
|
+
version: 2.1.0
|
184
170
|
- !ruby/object:Gem::Dependency
|
185
171
|
name: fog-aws
|
186
172
|
requirement: !ruby/object:Gem::Requirement
|
187
173
|
requirements:
|
188
174
|
- - "~>"
|
189
175
|
- !ruby/object:Gem::Version
|
190
|
-
version:
|
176
|
+
version: 1.1.0
|
191
177
|
type: :runtime
|
192
178
|
prerelease: false
|
193
179
|
version_requirements: !ruby/object:Gem::Requirement
|
194
180
|
requirements:
|
195
181
|
- - "~>"
|
196
182
|
- !ruby/object:Gem::Version
|
197
|
-
version:
|
183
|
+
version: 1.1.0
|
198
184
|
- !ruby/object:Gem::Dependency
|
199
185
|
name: jquery-rails
|
200
186
|
requirement: !ruby/object:Gem::Requirement
|
@@ -215,14 +201,14 @@ dependencies:
|
|
215
201
|
requirements:
|
216
202
|
- - "~>"
|
217
203
|
- !ruby/object:Gem::Version
|
218
|
-
version:
|
204
|
+
version: 6.0.1
|
219
205
|
type: :runtime
|
220
206
|
prerelease: false
|
221
207
|
version_requirements: !ruby/object:Gem::Requirement
|
222
208
|
requirements:
|
223
209
|
- - "~>"
|
224
210
|
- !ruby/object:Gem::Version
|
225
|
-
version:
|
211
|
+
version: 6.0.1
|
226
212
|
- !ruby/object:Gem::Dependency
|
227
213
|
name: kaminari
|
228
214
|
requirement: !ruby/object:Gem::Requirement
|
@@ -327,14 +313,14 @@ dependencies:
|
|
327
313
|
requirements:
|
328
314
|
- - "~>"
|
329
315
|
- !ruby/object:Gem::Version
|
330
|
-
version:
|
316
|
+
version: 6.0.0
|
331
317
|
type: :runtime
|
332
318
|
prerelease: false
|
333
319
|
version_requirements: !ruby/object:Gem::Requirement
|
334
320
|
requirements:
|
335
321
|
- - "~>"
|
336
322
|
- !ruby/object:Gem::Version
|
337
|
-
version:
|
323
|
+
version: 6.0.0
|
338
324
|
- !ruby/object:Gem::Dependency
|
339
325
|
name: uuidtools
|
340
326
|
requirement: !ruby/object:Gem::Requirement
|
@@ -397,28 +383,28 @@ dependencies:
|
|
397
383
|
requirements:
|
398
384
|
- - "~>"
|
399
385
|
- !ruby/object:Gem::Version
|
400
|
-
version:
|
386
|
+
version: 4.8.0
|
401
387
|
type: :development
|
402
388
|
prerelease: false
|
403
389
|
version_requirements: !ruby/object:Gem::Requirement
|
404
390
|
requirements:
|
405
391
|
- - "~>"
|
406
392
|
- !ruby/object:Gem::Version
|
407
|
-
version:
|
393
|
+
version: 4.8.0
|
408
394
|
- !ruby/object:Gem::Dependency
|
409
395
|
name: rubocop
|
410
396
|
requirement: !ruby/object:Gem::Requirement
|
411
397
|
requirements:
|
412
398
|
- - "~>"
|
413
399
|
- !ruby/object:Gem::Version
|
414
|
-
version: 0.
|
400
|
+
version: 0.46.0
|
415
401
|
type: :development
|
416
402
|
prerelease: false
|
417
403
|
version_requirements: !ruby/object:Gem::Requirement
|
418
404
|
requirements:
|
419
405
|
- - "~>"
|
420
406
|
- !ruby/object:Gem::Version
|
421
|
-
version: 0.
|
407
|
+
version: 0.46.0
|
422
408
|
- !ruby/object:Gem::Dependency
|
423
409
|
name: i18n-tasks
|
424
410
|
requirement: !ruby/object:Gem::Requirement
|
@@ -859,7 +845,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
859
845
|
version: 1.3.1
|
860
846
|
requirements: []
|
861
847
|
rubyforge_project:
|
862
|
-
rubygems_version: 2.
|
848
|
+
rubygems_version: 2.6.8
|
863
849
|
signing_key:
|
864
850
|
specification_version: 4
|
865
851
|
summary: Core engine for the Publify blogging system.
|