blocky 1.0.0 → 1.0.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/config/locales/en.yml +30 -0
- data/lib/blocky/version.rb +1 -1
- metadata +2 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 58c0e8492d722bf87c0d8673d45a9aecb8e78d46
|
4
|
+
data.tar.gz: d4b65323159bdc333392f604387d7d35df6152d5
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 39ff7e6c0456f16edb66d9b9d7d1923bcb88549cb93a3594e1059e249b8068425c4b9b14ed66d3c0c85fd8511ddf63e6798fc2bc27b61ae16ef9b32f28046a85
|
7
|
+
data.tar.gz: 4beadfe43fb54fbadebffcaf1ae5cf5dfdf0648df4138ad3051b1fd95d05848b19ef8364d5d313ee6efa7819703d9c10c4b6bf553f339f00eb657e2eeeb87bcc
|
@@ -0,0 +1,30 @@
|
|
1
|
+
# Files in the config/locales directory are used for internationalization
|
2
|
+
# and are automatically loaded by Rails. If you want to use locales other
|
3
|
+
# than English, add the necessary files in this directory.
|
4
|
+
#
|
5
|
+
# To use the locales, use `I18n.t`:
|
6
|
+
#
|
7
|
+
# I18n.t 'hello'
|
8
|
+
#
|
9
|
+
# In views, this is aliased to just `t`:
|
10
|
+
#
|
11
|
+
# <%= t('hello') %>
|
12
|
+
#
|
13
|
+
# To use a different locale, set it with `I18n.locale`:
|
14
|
+
#
|
15
|
+
# I18n.locale = :es
|
16
|
+
#
|
17
|
+
# This would use the information in config/locales/es.yml.
|
18
|
+
#
|
19
|
+
# To learn more, please read the Rails Internationalization guide
|
20
|
+
# available at http://guides.rubyonrails.org/i18n.html.
|
21
|
+
|
22
|
+
en:
|
23
|
+
activerecord:
|
24
|
+
models:
|
25
|
+
content_block:
|
26
|
+
one: Content Block
|
27
|
+
other: Site Content
|
28
|
+
attributes:
|
29
|
+
blocky/content_block:
|
30
|
+
content_key: Unique ID
|
data/lib/blocky/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: blocky
|
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
|
- Brian Pattison
|
@@ -51,6 +51,7 @@ files:
|
|
51
51
|
- Rakefile
|
52
52
|
- app/helpers/blocky_helper.rb
|
53
53
|
- app/models/blocky/content_block.rb
|
54
|
+
- config/locales/en.yml
|
54
55
|
- db/migrate/20140326210255_create_blocky_content_blocks.rb
|
55
56
|
- lib/blocky.rb
|
56
57
|
- lib/blocky/admin/content_block.rb
|