ecm_blog 1.0.0 → 1.0.1
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/app/controllers/ecm/blog/posts_controller.rb +1 -1
- data/config/locales/de.yml +15 -0
- data/config/locales/en.yml +25 -0
- data/lib/ecm/blog/version.rb +1 -1
- metadata +3 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: a766c02109d92fc63877994fb77e1843c28daa51
|
|
4
|
+
data.tar.gz: ba51cbb0ad52fa9ccb2c744a058aca9a4eb3c02d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b430025442540bd9864b4942346d7eae6ff1b0fe6081e34648940816164394a289d6b2b4c78a71e70ea4cec6d01a0965eb49e9556456c4fe6660e80bce348018
|
|
7
|
+
data.tar.gz: 93a7c539899ea01361eed1e6068a2fd691eadcfc988dc681eddabded5da3fc98ee13314e4fb4ba16aa761e3eae74ef91a1e6ff4be86d0be4ae7e193d025d9736
|
data/config/locales/de.yml
CHANGED
|
@@ -6,5 +6,20 @@ de:
|
|
|
6
6
|
ecm/blog/post:
|
|
7
7
|
one: Post
|
|
8
8
|
other: Posts
|
|
9
|
+
attributes:
|
|
10
|
+
ecm/blog/post:
|
|
11
|
+
id: ID
|
|
12
|
+
title: Titel
|
|
13
|
+
tags: Tags
|
|
14
|
+
body: Inhalt
|
|
15
|
+
published: Veröffentlicht
|
|
16
|
+
published_at: Veröffentlicht am
|
|
17
|
+
created_by_id: Erstellt von
|
|
18
|
+
creator: Erstellt von
|
|
19
|
+
slug: Freundliche ID
|
|
20
|
+
updated_by_id: Aktualisiert von
|
|
21
|
+
updater: Aktualisiert von
|
|
22
|
+
created_at: Erstellt am
|
|
23
|
+
updated_at: Aktualisiert am
|
|
9
24
|
routes:
|
|
10
25
|
ecm_blog_engine: blog
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
en:
|
|
2
|
+
classes:
|
|
3
|
+
ecm/blog/engine: Blog
|
|
4
|
+
activerecord:
|
|
5
|
+
models:
|
|
6
|
+
ecm/blog/post:
|
|
7
|
+
one: Post
|
|
8
|
+
other: Posts
|
|
9
|
+
attributes:
|
|
10
|
+
ecm/blog/post:
|
|
11
|
+
id: ID
|
|
12
|
+
title: Title
|
|
13
|
+
tags: Tags
|
|
14
|
+
body: Body
|
|
15
|
+
published: Published
|
|
16
|
+
published_at: Published at
|
|
17
|
+
created_by_id: Created by
|
|
18
|
+
creator: Created by
|
|
19
|
+
slug: Slug
|
|
20
|
+
updated_by_id: Updated by
|
|
21
|
+
updater: Updated by
|
|
22
|
+
created_at: Created at
|
|
23
|
+
updated_at: Updated at
|
|
24
|
+
routes:
|
|
25
|
+
ecm_blog_engine: blog
|
data/lib/ecm/blog/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: ecm_blog
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.0.
|
|
4
|
+
version: 1.0.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Roberto Vasquez Angel
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2018-
|
|
11
|
+
date: 2018-03-10 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rails
|
|
@@ -116,6 +116,7 @@ files:
|
|
|
116
116
|
- app/views/ecm/blog/posts/show.haml
|
|
117
117
|
- app/views/layouts/ecm/blog/application.html.erb
|
|
118
118
|
- config/locales/de.yml
|
|
119
|
+
- config/locales/en.yml
|
|
119
120
|
- config/routes.rb
|
|
120
121
|
- db/migrate/20160214133500_create_ecm_blog_posts.rb
|
|
121
122
|
- lib/ecm/blog.rb
|