blog_logic 1.4.12 → 1.4.13

Sign up to get free protection for your applications and to get access to all the features.
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.4.12
1
+ 1.4.13
@@ -1,9 +1,10 @@
1
- xml.instruct! :xml, :version => "1.0"
2
- xml.rss :version => "2.0" do
1
+ xml.instruct! :xml, :version => '1.0'
2
+ xml.rss :version => '2.0', :'xmlns:atom' => 'http://www.w3.org/2005/Atom' do
3
3
  xml.channel do
4
- xml.title "#{@blog.title}"
4
+ xml.title @blog.title
5
5
  xml.description "Latest articles from #{@blog.title}"
6
- xml.link "#{@blog.feed}"
6
+ xml.atom :link, :href => "http://#{Rails.application.config.main_host}#{@blog.feed}", :rel => 'self', :type => 'application/rss+xml'
7
+ xml.link "http://#{Rails.application.config.main_host}#{@blog.feed}"
7
8
 
8
9
  @posts.each do |article|
9
10
  xml.item do
@@ -5,11 +5,11 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = "blog_logic"
8
- s.version = "1.4.12"
8
+ s.version = "1.4.13"
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 = "2012-04-04"
12
+ s.date = "2012-04-05"
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: 31
4
+ hash: 29
5
5
  prerelease:
6
6
  segments:
7
7
  - 1
8
8
  - 4
9
- - 12
10
- version: 1.4.12
9
+ - 13
10
+ version: 1.4.13
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: 2012-04-04 00:00:00 Z
18
+ date: 2012-04-05 00:00:00 Z
19
19
  dependencies:
20
20
  - !ruby/object:Gem::Dependency
21
21
  name: bson_ext