blog_logic 1.2.0 → 1.2.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.
- data/VERSION +1 -1
- data/app/views/admin/posts/_form.html.erb +1 -0
- data/blog_logic.gemspec +2 -2
- metadata +4 -4
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.2.
|
|
1
|
+
1.2.1
|
|
@@ -17,6 +17,7 @@
|
|
|
17
17
|
<div class="form_column">
|
|
18
18
|
<%= f.text_field :title, :label => 'Title', :help => 'This title will appear on the post before any content and is used by search engines to identify the main idea of the post.' -%>
|
|
19
19
|
<%= f.text_field :title_short, :label => 'Short Title', :help => 'This is an optional, shortened title used when the layout imposes a length constraint for cosmetic reasons. As with the title above, it will appear on the post before any content and is used by search engines to identify the main idea of the post.' -%>
|
|
20
|
+
<%= f.text_field :slug, :help => "This is an optional, URL-friendly phrase used to identify this post uniquely. It will become part of the post's URL. If left blank, it will be derived from the title." -%>
|
|
20
21
|
</div>
|
|
21
22
|
<div class="form_column">
|
|
22
23
|
<%= f.date_select :publication_date, :start_year => 2002 -%>
|
data/blog_logic.gemspec
CHANGED
|
@@ -5,11 +5,11 @@
|
|
|
5
5
|
|
|
6
6
|
Gem::Specification.new do |s|
|
|
7
7
|
s.name = "blog_logic"
|
|
8
|
-
s.version = "1.2.
|
|
8
|
+
s.version = "1.2.1"
|
|
9
9
|
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
11
11
|
s.authors = ["Bantik"]
|
|
12
|
-
s.date = "2011-09-
|
|
12
|
+
s.date = "2011-09-28"
|
|
13
13
|
s.description = "An engine for search-engine-optimized blog management."
|
|
14
14
|
s.email = "corey@seologic.com"
|
|
15
15
|
s.extra_rdoc_files = [
|
metadata
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: blog_logic
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
hash:
|
|
4
|
+
hash: 29
|
|
5
5
|
prerelease:
|
|
6
6
|
segments:
|
|
7
7
|
- 1
|
|
8
8
|
- 2
|
|
9
|
-
-
|
|
10
|
-
version: 1.2.
|
|
9
|
+
- 1
|
|
10
|
+
version: 1.2.1
|
|
11
11
|
platform: ruby
|
|
12
12
|
authors:
|
|
13
13
|
- Bantik
|
|
@@ -15,7 +15,7 @@ autorequire:
|
|
|
15
15
|
bindir: bin
|
|
16
16
|
cert_chain: []
|
|
17
17
|
|
|
18
|
-
date: 2011-09-
|
|
18
|
+
date: 2011-09-28 00:00:00 Z
|
|
19
19
|
dependencies:
|
|
20
20
|
- !ruby/object:Gem::Dependency
|
|
21
21
|
name: bson_ext
|