hurricane 0.0.0 → 0.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.
- data/README.rdoc +7 -2
- data/VERSION +1 -1
- data/hurricane.gemspec +55 -0
- data/lib/hurricane.rb +4 -2
- data/spec/hurricane_spec.rb +3 -3
- data/spec/wordpress_file.xml +289 -0
- metadata +4 -2
data/README.rdoc
CHANGED
@@ -4,7 +4,8 @@ Hurricane is a tiny tool to parser WordPress eXtended RSS file.
|
|
4
4
|
|
5
5
|
== Example
|
6
6
|
|
7
|
-
|
7
|
+
blog = Hurricane.from(WORDPRESS_FILE)
|
8
|
+
puts "Looking for #{blog.title}"
|
8
9
|
|
9
10
|
== Features
|
10
11
|
|
@@ -18,4 +19,8 @@ Few (really!) features. Just what I needed until this moment:
|
|
18
19
|
* Posts titles
|
19
20
|
* Posts links
|
20
21
|
* Posts creation dates
|
21
|
-
* Posts descriptions
|
22
|
+
* Posts descriptions
|
23
|
+
|
24
|
+
== How it works?
|
25
|
+
|
26
|
+
sudo gem install hpricot hurricane
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.0.
|
1
|
+
0.0.1
|
data/hurricane.gemspec
ADDED
@@ -0,0 +1,55 @@
|
|
1
|
+
# Generated by jeweler
|
2
|
+
# DO NOT EDIT THIS FILE DIRECTLY
|
3
|
+
# Instead, edit Jeweler::Tasks in rakefile, and run the gemspec command
|
4
|
+
# -*- encoding: utf-8 -*-
|
5
|
+
|
6
|
+
Gem::Specification.new do |s|
|
7
|
+
s.name = %q{hurricane}
|
8
|
+
s.version = "0.0.1"
|
9
|
+
|
10
|
+
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
11
|
+
s.authors = ["Daniel Tamiosso"]
|
12
|
+
s.date = %q{2010-07-26}
|
13
|
+
s.description = %q{Hurricane is a tiny tool to parser WordPress eXtended RSS file.}
|
14
|
+
s.email = %q{email@danieltamiosso.com}
|
15
|
+
s.extra_rdoc_files = [
|
16
|
+
"LICENSE",
|
17
|
+
"README.rdoc"
|
18
|
+
]
|
19
|
+
s.files = [
|
20
|
+
".document",
|
21
|
+
".gitignore",
|
22
|
+
"LICENSE",
|
23
|
+
"README.rdoc",
|
24
|
+
"Rakefile",
|
25
|
+
"VERSION",
|
26
|
+
"hurricane.gemspec",
|
27
|
+
"lib/hurricane.rb",
|
28
|
+
"spec/hurricane_spec.rb",
|
29
|
+
"spec/spec_helper.rb",
|
30
|
+
"spec/wordpress_file.xml"
|
31
|
+
]
|
32
|
+
s.homepage = %q{http://github.com/danieltamiosso/hurricane}
|
33
|
+
s.rdoc_options = ["--charset=UTF-8"]
|
34
|
+
s.require_paths = ["lib"]
|
35
|
+
s.rubygems_version = %q{1.3.5}
|
36
|
+
s.summary = %q{Hurricane is a tiny tool to parser WordPress eXtended RSS file.}
|
37
|
+
s.test_files = [
|
38
|
+
"spec/hurricane_spec.rb",
|
39
|
+
"spec/spec_helper.rb"
|
40
|
+
]
|
41
|
+
|
42
|
+
if s.respond_to? :specification_version then
|
43
|
+
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
|
44
|
+
s.specification_version = 3
|
45
|
+
|
46
|
+
if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
|
47
|
+
s.add_development_dependency(%q<bacon>, [">= 0"])
|
48
|
+
else
|
49
|
+
s.add_dependency(%q<bacon>, [">= 0"])
|
50
|
+
end
|
51
|
+
else
|
52
|
+
s.add_dependency(%q<bacon>, [">= 0"])
|
53
|
+
end
|
54
|
+
end
|
55
|
+
|
data/lib/hurricane.rb
CHANGED
@@ -1,3 +1,5 @@
|
|
1
|
+
require 'rubygems'
|
2
|
+
require 'time'
|
1
3
|
require 'hpricot'
|
2
4
|
|
3
5
|
class Hurricane
|
@@ -8,13 +10,13 @@ class Hurricane
|
|
8
10
|
blog.title = (info/:title)[0].inner_html
|
9
11
|
blog.description = (info/:description).inner_html
|
10
12
|
blog.link = (info/:link)[0].inner_html
|
11
|
-
blog.created_at = (info/'pubDate')[0].inner_html
|
13
|
+
blog.created_at = Time.rfc2822((info/'pubDate')[0].inner_html)
|
12
14
|
|
13
15
|
(info/'wp:category'/'wp:category_nicename').each do |category|
|
14
16
|
blog.categories << category.inner_html
|
15
17
|
end
|
16
18
|
|
17
|
-
(info/:item).each do |item|
|
19
|
+
(info/:item).each do |item|
|
18
20
|
post = Post.new
|
19
21
|
post.title = (item/:title).inner_html
|
20
22
|
post.link = (item/:link).inner_html
|
data/spec/hurricane_spec.rb
CHANGED
@@ -2,7 +2,7 @@ require 'spec_helper'
|
|
2
2
|
|
3
3
|
describe 'Hurricane' do
|
4
4
|
|
5
|
-
FILE = File.open('./
|
5
|
+
FILE = File.open('./wordpress_file.xml', 'r')
|
6
6
|
@blog = Hurricane.from(FILE)
|
7
7
|
|
8
8
|
it 'should be offer blog title' do
|
@@ -18,7 +18,7 @@ describe 'Hurricane' do
|
|
18
18
|
end
|
19
19
|
|
20
20
|
it 'should be offer blog created date' do
|
21
|
-
@blog.created_at.should.equal 'Wed, 15 Jul 2009
|
21
|
+
@blog.created_at.rfc2822.should.equal 'Wed, 15 Jul 2009 20:32:34 -0300'
|
22
22
|
end
|
23
23
|
|
24
24
|
it 'should be offer blog categories' do
|
@@ -45,7 +45,7 @@ describe 'Hurricane' do
|
|
45
45
|
end
|
46
46
|
|
47
47
|
it 'should be get a post with description' do
|
48
|
-
@blog.posts.first.description.should.equal '
|
48
|
+
@blog.posts.first.description.should.equal 'Post text'
|
49
49
|
end
|
50
50
|
|
51
51
|
end
|
@@ -0,0 +1,289 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<!-- This is a WordPress eXtended RSS file generated by WordPress as an export of your blog. -->
|
3
|
+
<!-- It contains information about your blog's posts, comments, and categories. -->
|
4
|
+
<!-- You may use this file to transfer that content from one site to another. -->
|
5
|
+
<!-- This file is not intended to serve as a complete backup of your blog. -->
|
6
|
+
|
7
|
+
<!-- To import this information into a WordPress blog follow these steps. -->
|
8
|
+
<!-- 1. Log into that blog as an administrator. -->
|
9
|
+
<!-- 2. Go to Tools: Import in the blog's admin panels (or Manage: Import in older versions of WordPress). -->
|
10
|
+
<!-- 3. Choose "WordPress" from the list. -->
|
11
|
+
<!-- 4. Upload this file using the form provided on that page. -->
|
12
|
+
<!-- 5. You will first be asked to map the authors in this export file to users -->
|
13
|
+
<!-- on the blog. For each author, you may choose to map to an -->
|
14
|
+
<!-- existing user on the blog or to create a new user -->
|
15
|
+
<!-- 6. WordPress will then import each of the posts, comments, and categories -->
|
16
|
+
<!-- contained in this file into your blog -->
|
17
|
+
|
18
|
+
<!-- generator="WordPress/2.8.5" created="2010-07-26 10:19"-->
|
19
|
+
<rss version="2.0"
|
20
|
+
xmlns:excerpt="http://wordpress.org/export/1.0/excerpt/"
|
21
|
+
xmlns:content="http://purl.org/rss/1.0/modules/content/"
|
22
|
+
xmlns:wfw="http://wellformedweb.org/CommentAPI/"
|
23
|
+
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
24
|
+
xmlns:wp="http://wordpress.org/export/1.0/"
|
25
|
+
>
|
26
|
+
|
27
|
+
<channel>
|
28
|
+
<title>Daniel Tamiosso</title>
|
29
|
+
<link>http://danieltamiosso.com</link>
|
30
|
+
<description>Only me</description>
|
31
|
+
<pubDate>Wed, 15 Jul 2009 23:32:34 +0000</pubDate>
|
32
|
+
<generator>http://wordpress.org/?v=2.8.5</generator>
|
33
|
+
<language>en</language>
|
34
|
+
<wp:wxr_version>1.0</wp:wxr_version>
|
35
|
+
<wp:base_site_url>http://danieltamiosso.com</wp:base_site_url>
|
36
|
+
<wp:base_blog_url>http://danieltamiosso.com</wp:base_blog_url>
|
37
|
+
<wp:category><wp:category_nicename>agil</wp:category_nicename><wp:category_parent></wp:category_parent><wp:cat_name><![CDATA[Ágil]]></wp:cat_name></wp:category>
|
38
|
+
<wp:category><wp:category_nicename>boas-praticas</wp:category_nicename><wp:category_parent></wp:category_parent><wp:cat_name><![CDATA[Boas práticas]]></wp:cat_name></wp:category>
|
39
|
+
<wp:category><wp:category_nicename>bpmn</wp:category_nicename><wp:category_parent></wp:category_parent><wp:cat_name><![CDATA[BPMN]]></wp:cat_name></wp:category>
|
40
|
+
<wp:category><wp:category_nicename>desenvolvimento</wp:category_nicename><wp:category_parent></wp:category_parent><wp:cat_name><![CDATA[Desenvolvimento]]></wp:cat_name></wp:category>
|
41
|
+
<wp:category><wp:category_nicename>design</wp:category_nicename><wp:category_parent></wp:category_parent><wp:cat_name><![CDATA[Design]]></wp:cat_name></wp:category>
|
42
|
+
<wp:tag><wp:tag_slug>agil</wp:tag_slug><wp:tag_name><![CDATA[Ágil]]></wp:tag_name></wp:tag>
|
43
|
+
<wp:tag><wp:tag_slug>apache</wp:tag_slug><wp:tag_name><![CDATA[Apache]]></wp:tag_name></wp:tag>
|
44
|
+
<wp:tag><wp:tag_slug>arquitetura</wp:tag_slug><wp:tag_name><![CDATA[Arquitetura]]></wp:tag_name></wp:tag>
|
45
|
+
<wp:tag><wp:tag_slug>boas-praticas</wp:tag_slug><wp:tag_name><![CDATA[Boas práticas]]></wp:tag_name></wp:tag>
|
46
|
+
<wp:tag><wp:tag_slug>bpmn</wp:tag_slug><wp:tag_name><![CDATA[BPMN]]></wp:tag_name></wp:tag>
|
47
|
+
<wp:tag><wp:tag_slug>carreira</wp:tag_slug><wp:tag_name><![CDATA[carreira]]></wp:tag_name></wp:tag>
|
48
|
+
<wp:tag><wp:tag_slug>desenvolvimento</wp:tag_slug><wp:tag_name><![CDATA[Desenvolvimento]]></wp:tag_name></wp:tag>
|
49
|
+
<wp:tag><wp:tag_slug>design</wp:tag_slug><wp:tag_name><![CDATA[Design]]></wp:tag_name></wp:tag>
|
50
|
+
<wp:tag><wp:tag_slug>diagrama</wp:tag_slug><wp:tag_name><![CDATA[Diagrama]]></wp:tag_name></wp:tag>
|
51
|
+
<wp:tag><wp:tag_slug>ejb</wp:tag_slug><wp:tag_name><![CDATA[EJB]]></wp:tag_name></wp:tag>
|
52
|
+
<wp:tag><wp:tag_slug>ensinar</wp:tag_slug><wp:tag_name><![CDATA[Ensinar]]></wp:tag_name></wp:tag>
|
53
|
+
<wp:tag><wp:tag_slug>eventos</wp:tag_slug><wp:tag_name><![CDATA[Eventos]]></wp:tag_name></wp:tag>
|
54
|
+
<wp:tag><wp:tag_slug>geral</wp:tag_slug><wp:tag_name><![CDATA[Geral]]></wp:tag_name></wp:tag>
|
55
|
+
<wp:tag><wp:tag_slug>hospedagem</wp:tag_slug><wp:tag_name><![CDATA[Hospedagem]]></wp:tag_name></wp:tag>
|
56
|
+
<wp:tag><wp:tag_slug>implantacao</wp:tag_slug><wp:tag_name><![CDATA[Implantação]]></wp:tag_name></wp:tag>
|
57
|
+
<wp:tag><wp:tag_slug>java</wp:tag_slug><wp:tag_name><![CDATA[Java]]></wp:tag_name></wp:tag>
|
58
|
+
<wp:tag><wp:tag_slug>jvm</wp:tag_slug><wp:tag_name><![CDATA[JVM]]></wp:tag_name></wp:tag>
|
59
|
+
<wp:tag><wp:tag_slug>notacao</wp:tag_slug><wp:tag_name><![CDATA[Notação]]></wp:tag_name></wp:tag>
|
60
|
+
<wp:tag><wp:tag_slug>oo</wp:tag_slug><wp:tag_name><![CDATA[OO]]></wp:tag_name></wp:tag>
|
61
|
+
<wp:tag><wp:tag_slug>orientacao-a-objetos</wp:tag_slug><wp:tag_name><![CDATA[orientação a objetos]]></wp:tag_name></wp:tag>
|
62
|
+
<wp:tag><wp:tag_slug>performance</wp:tag_slug><wp:tag_name><![CDATA[Performance]]></wp:tag_name></wp:tag>
|
63
|
+
<wp:tag><wp:tag_slug>pessoal</wp:tag_slug><wp:tag_name><![CDATA[Pessoal]]></wp:tag_name></wp:tag>
|
64
|
+
<wp:tag><wp:tag_slug>stateful</wp:tag_slug><wp:tag_name><![CDATA[Stateful]]></wp:tag_name></wp:tag>
|
65
|
+
<wp:tag><wp:tag_slug>stateless</wp:tag_slug><wp:tag_name><![CDATA[Stateless]]></wp:tag_name></wp:tag>
|
66
|
+
<wp:tag><wp:tag_slug>tdd</wp:tag_slug><wp:tag_name><![CDATA[TDD]]></wp:tag_name></wp:tag>
|
67
|
+
<wp:tag><wp:tag_slug>tomcat</wp:tag_slug><wp:tag_name><![CDATA[Tomcat]]></wp:tag_name></wp:tag>
|
68
|
+
<wp:tag><wp:tag_slug>uml</wp:tag_slug><wp:tag_name><![CDATA[UML]]></wp:tag_name></wp:tag>
|
69
|
+
<image>
|
70
|
+
<link>http://danieltamiosso.com</link>
|
71
|
+
<url>http://danieltamiosso.com/wp-content/uploads/2009/04/favicon.ico</url>
|
72
|
+
<title>Daniel Tamiosso</title>
|
73
|
+
</image>
|
74
|
+
<item>
|
75
|
+
<title>Ou uma coisa ou outra: Command and Query Separation</title>
|
76
|
+
<link>http://danieltamiosso.com/2009/07/09/ou-uma-coisa-ou-outra-command-and-query/</link>
|
77
|
+
<pubDate>Thu, 09 Jul 2009 16:50:14 +0000</pubDate>
|
78
|
+
<dc:creator><![CDATA[Daniel Tamiosso]]></dc:creator>
|
79
|
+
|
80
|
+
<category><![CDATA[Boas práticas]]></category>
|
81
|
+
|
82
|
+
<category domain="category" nicename="boas-praticas"><![CDATA[Boas práticas]]></category>
|
83
|
+
|
84
|
+
<category><![CDATA[Desenvolvimento]]></category>
|
85
|
+
|
86
|
+
<category domain="category" nicename="desenvolvimento"><![CDATA[Desenvolvimento]]></category>
|
87
|
+
|
88
|
+
<category><![CDATA[Design]]></category>
|
89
|
+
|
90
|
+
<category domain="category" nicename="design"><![CDATA[Design]]></category>
|
91
|
+
|
92
|
+
<category><![CDATA[OO]]></category>
|
93
|
+
|
94
|
+
<category domain="category" nicename="oo"><![CDATA[OO]]></category>
|
95
|
+
|
96
|
+
<category domain="tag"><![CDATA[Boas práticas]]></category>
|
97
|
+
|
98
|
+
<category domain="tag" nicename="boas-praticas"><![CDATA[Boas práticas]]></category>
|
99
|
+
|
100
|
+
<category domain="tag"><![CDATA[Desenvolvimento]]></category>
|
101
|
+
|
102
|
+
<category domain="tag" nicename="desenvolvimento"><![CDATA[Desenvolvimento]]></category>
|
103
|
+
|
104
|
+
<category domain="tag"><![CDATA[Design]]></category>
|
105
|
+
|
106
|
+
<category domain="tag" nicename="design"><![CDATA[Design]]></category>
|
107
|
+
|
108
|
+
<category domain="tag"><![CDATA[OO]]></category>
|
109
|
+
|
110
|
+
<category domain="tag" nicename="oo"><![CDATA[OO]]></category>
|
111
|
+
|
112
|
+
<guid isPermaLink="false">http://danieltamiosso.com/?p=160</guid>
|
113
|
+
<description></description>
|
114
|
+
<content:encoded><![CDATA[Post text]]></content:encoded>
|
115
|
+
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
|
116
|
+
<wp:post_id>160</wp:post_id>
|
117
|
+
<wp:post_date>2009-07-09 13:50:14</wp:post_date>
|
118
|
+
<wp:post_date_gmt>2009-07-09 16:50:14</wp:post_date_gmt>
|
119
|
+
<wp:comment_status>open</wp:comment_status>
|
120
|
+
<wp:ping_status>open</wp:ping_status>
|
121
|
+
<wp:post_name>ou-uma-coisa-ou-outra-command-and-query</wp:post_name>
|
122
|
+
<wp:status>publish</wp:status>
|
123
|
+
<wp:post_parent>0</wp:post_parent>
|
124
|
+
<wp:menu_order>0</wp:menu_order>
|
125
|
+
<wp:post_type>post</wp:post_type>
|
126
|
+
<wp:post_password></wp:post_password>
|
127
|
+
<wp:postmeta>
|
128
|
+
<wp:meta_key>_edit_lock</wp:meta_key>
|
129
|
+
<wp:meta_value>1247700758</wp:meta_value>
|
130
|
+
</wp:postmeta>
|
131
|
+
<wp:postmeta>
|
132
|
+
<wp:meta_key>_edit_last</wp:meta_key>
|
133
|
+
<wp:meta_value>1</wp:meta_value>
|
134
|
+
</wp:postmeta>
|
135
|
+
<wp:comment>
|
136
|
+
<wp:comment_id>984</wp:comment_id>
|
137
|
+
<wp:comment_author><![CDATA[Wagner Andrade]]></wp:comment_author>
|
138
|
+
<wp:comment_author_email>contato@wagnerandrade.com</wp:comment_author_email>
|
139
|
+
<wp:comment_author_url>http://wagnerandrade.com</wp:comment_author_url>
|
140
|
+
<wp:comment_author_IP>201.37.181.217</wp:comment_author_IP>
|
141
|
+
<wp:comment_date>2009-07-09 16:33:45</wp:comment_date>
|
142
|
+
<wp:comment_date_gmt>2009-07-09 19:33:45</wp:comment_date_gmt>
|
143
|
+
<wp:comment_content><![CDATA[Excelente artigo!
|
144
|
+
Eu não nunca consegui explicar esse conceito, vou tomar nota! :)]]></wp:comment_content>
|
145
|
+
<wp:comment_approved>1</wp:comment_approved>
|
146
|
+
<wp:comment_type></wp:comment_type>
|
147
|
+
<wp:comment_parent>0</wp:comment_parent>
|
148
|
+
<wp:comment_user_id>0</wp:comment_user_id>
|
149
|
+
</wp:comment>
|
150
|
+
<wp:comment>
|
151
|
+
<wp:comment_id>1895</wp:comment_id>
|
152
|
+
<wp:comment_author><![CDATA[Alisson Massochini Duarte]]></wp:comment_author>
|
153
|
+
<wp:comment_author_email>alisson.duarte@gmail.com</wp:comment_author_email>
|
154
|
+
<wp:comment_author_url>http://</wp:comment_author_url>
|
155
|
+
<wp:comment_author_IP>200.102.66.151</wp:comment_author_IP>
|
156
|
+
<wp:comment_date>2009-09-11 23:35:17</wp:comment_date>
|
157
|
+
<wp:comment_date_gmt>2009-09-12 02:35:17</wp:comment_date_gmt>
|
158
|
+
<wp:comment_content><![CDATA[Simples, correto, prático e funcional. Diria que teu artigo resume o que eu sempre tento dizer aos companheiros que trabalham comigo. Parabéns pelo artigo, escrito de uma forma direta e simples, como sugere o assunto. "Faça as coisas simples, mas nunca as mais simples" Albert Einstein
|
159
|
+
|
160
|
+
Aquele abraço]]></wp:comment_content>
|
161
|
+
<wp:comment_approved>1</wp:comment_approved>
|
162
|
+
<wp:comment_type></wp:comment_type>
|
163
|
+
<wp:comment_parent>0</wp:comment_parent>
|
164
|
+
<wp:comment_user_id>0</wp:comment_user_id>
|
165
|
+
</wp:comment>
|
166
|
+
<wp:comment>
|
167
|
+
<wp:comment_id>3963</wp:comment_id>
|
168
|
+
<wp:comment_author><![CDATA[MarianEstes]]></wp:comment_author>
|
169
|
+
<wp:comment_author_email>saraward@mail333.com</wp:comment_author_email>
|
170
|
+
<wp:comment_author_url>http://www.bestfinance-blog.com</wp:comment_author_url>
|
171
|
+
<wp:comment_author_IP>91.201.66.6</wp:comment_author_IP>
|
172
|
+
<wp:comment_date>2010-07-14 00:33:15</wp:comment_date>
|
173
|
+
<wp:comment_date_gmt>2010-07-14 03:33:15</wp:comment_date_gmt>
|
174
|
+
<wp:comment_content><![CDATA[If you're in the corner and have no money to move out from that, you would require to receive the <a href="http://bestfinance-blog.com/topics/home-loans" rel="nofollow">home loans</a>. Just because that would help you unquestionably. I get collateral loan every single year and feel OK because of it.]]></wp:comment_content>
|
175
|
+
<wp:comment_approved>spam</wp:comment_approved>
|
176
|
+
<wp:comment_type></wp:comment_type>
|
177
|
+
<wp:comment_parent>0</wp:comment_parent>
|
178
|
+
<wp:comment_user_id>0</wp:comment_user_id>
|
179
|
+
</wp:comment>
|
180
|
+
</item>
|
181
|
+
<item>
|
182
|
+
<title>Ou uma coisa ou outra: Command and Query Separation 2</title>
|
183
|
+
<link>http://danieltamiosso.com/2009/07/09/ou-uma-coisa-ou-outra-command-and-query/</link>
|
184
|
+
<pubDate>Thu, 09 Jul 2009 16:50:14 +0000</pubDate>
|
185
|
+
<dc:creator><![CDATA[Daniel Tamiosso]]></dc:creator>
|
186
|
+
|
187
|
+
<category><![CDATA[Boas práticas]]></category>
|
188
|
+
|
189
|
+
<category domain="category" nicename="boas-praticas"><![CDATA[Boas práticas]]></category>
|
190
|
+
|
191
|
+
<category><![CDATA[Desenvolvimento]]></category>
|
192
|
+
|
193
|
+
<category domain="category" nicename="desenvolvimento"><![CDATA[Desenvolvimento]]></category>
|
194
|
+
|
195
|
+
<category><![CDATA[Design]]></category>
|
196
|
+
|
197
|
+
<category domain="category" nicename="design"><![CDATA[Design]]></category>
|
198
|
+
|
199
|
+
<category><![CDATA[OO]]></category>
|
200
|
+
|
201
|
+
<category domain="category" nicename="oo"><![CDATA[OO]]></category>
|
202
|
+
|
203
|
+
<category domain="tag"><![CDATA[Boas práticas]]></category>
|
204
|
+
|
205
|
+
<category domain="tag" nicename="boas-praticas"><![CDATA[Boas práticas]]></category>
|
206
|
+
|
207
|
+
<category domain="tag"><![CDATA[Desenvolvimento]]></category>
|
208
|
+
|
209
|
+
<category domain="tag" nicename="desenvolvimento"><![CDATA[Desenvolvimento]]></category>
|
210
|
+
|
211
|
+
<category domain="tag"><![CDATA[Design]]></category>
|
212
|
+
|
213
|
+
<category domain="tag" nicename="design"><![CDATA[Design]]></category>
|
214
|
+
|
215
|
+
<category domain="tag"><![CDATA[OO]]></category>
|
216
|
+
|
217
|
+
<category domain="tag" nicename="oo"><![CDATA[OO]]></category>
|
218
|
+
|
219
|
+
<guid isPermaLink="false">http://danieltamiosso.com/?p=160</guid>
|
220
|
+
<description></description>
|
221
|
+
<content:encoded><![CDATA[Post text]]></content:encoded>
|
222
|
+
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
|
223
|
+
<wp:post_id>160</wp:post_id>
|
224
|
+
<wp:post_date>2009-07-09 13:50:14</wp:post_date>
|
225
|
+
<wp:post_date_gmt>2009-07-09 16:50:14</wp:post_date_gmt>
|
226
|
+
<wp:comment_status>open</wp:comment_status>
|
227
|
+
<wp:ping_status>open</wp:ping_status>
|
228
|
+
<wp:post_name>ou-uma-coisa-ou-outra-command-and-query</wp:post_name>
|
229
|
+
<wp:status>publish</wp:status>
|
230
|
+
<wp:post_parent>0</wp:post_parent>
|
231
|
+
<wp:menu_order>0</wp:menu_order>
|
232
|
+
<wp:post_type>post</wp:post_type>
|
233
|
+
<wp:post_password></wp:post_password>
|
234
|
+
<wp:postmeta>
|
235
|
+
<wp:meta_key>_edit_lock</wp:meta_key>
|
236
|
+
<wp:meta_value>1247700758</wp:meta_value>
|
237
|
+
</wp:postmeta>
|
238
|
+
<wp:postmeta>
|
239
|
+
<wp:meta_key>_edit_last</wp:meta_key>
|
240
|
+
<wp:meta_value>1</wp:meta_value>
|
241
|
+
</wp:postmeta>
|
242
|
+
<wp:comment>
|
243
|
+
<wp:comment_id>984</wp:comment_id>
|
244
|
+
<wp:comment_author><![CDATA[Wagner Andrade]]></wp:comment_author>
|
245
|
+
<wp:comment_author_email>contato@wagnerandrade.com</wp:comment_author_email>
|
246
|
+
<wp:comment_author_url>http://wagnerandrade.com</wp:comment_author_url>
|
247
|
+
<wp:comment_author_IP>201.37.181.217</wp:comment_author_IP>
|
248
|
+
<wp:comment_date>2009-07-09 16:33:45</wp:comment_date>
|
249
|
+
<wp:comment_date_gmt>2009-07-09 19:33:45</wp:comment_date_gmt>
|
250
|
+
<wp:comment_content><![CDATA[Excelente artigo!
|
251
|
+
Eu não nunca consegui explicar esse conceito, vou tomar nota! :)]]></wp:comment_content>
|
252
|
+
<wp:comment_approved>1</wp:comment_approved>
|
253
|
+
<wp:comment_type></wp:comment_type>
|
254
|
+
<wp:comment_parent>0</wp:comment_parent>
|
255
|
+
<wp:comment_user_id>0</wp:comment_user_id>
|
256
|
+
</wp:comment>
|
257
|
+
<wp:comment>
|
258
|
+
<wp:comment_id>1895</wp:comment_id>
|
259
|
+
<wp:comment_author><![CDATA[Alisson Massochini Duarte]]></wp:comment_author>
|
260
|
+
<wp:comment_author_email>alisson.duarte@gmail.com</wp:comment_author_email>
|
261
|
+
<wp:comment_author_url>http://</wp:comment_author_url>
|
262
|
+
<wp:comment_author_IP>200.102.66.151</wp:comment_author_IP>
|
263
|
+
<wp:comment_date>2009-09-11 23:35:17</wp:comment_date>
|
264
|
+
<wp:comment_date_gmt>2009-09-12 02:35:17</wp:comment_date_gmt>
|
265
|
+
<wp:comment_content><![CDATA[Simples, correto, prático e funcional. Diria que teu artigo resume o que eu sempre tento dizer aos companheiros que trabalham comigo. Parabéns pelo artigo, escrito de uma forma direta e simples, como sugere o assunto. "Faça as coisas simples, mas nunca as mais simples" Albert Einstein
|
266
|
+
|
267
|
+
Aquele abraço]]></wp:comment_content>
|
268
|
+
<wp:comment_approved>1</wp:comment_approved>
|
269
|
+
<wp:comment_type></wp:comment_type>
|
270
|
+
<wp:comment_parent>0</wp:comment_parent>
|
271
|
+
<wp:comment_user_id>0</wp:comment_user_id>
|
272
|
+
</wp:comment>
|
273
|
+
<wp:comment>
|
274
|
+
<wp:comment_id>3963</wp:comment_id>
|
275
|
+
<wp:comment_author><![CDATA[MarianEstes]]></wp:comment_author>
|
276
|
+
<wp:comment_author_email>saraward@mail333.com</wp:comment_author_email>
|
277
|
+
<wp:comment_author_url>http://www.bestfinance-blog.com</wp:comment_author_url>
|
278
|
+
<wp:comment_author_IP>91.201.66.6</wp:comment_author_IP>
|
279
|
+
<wp:comment_date>2010-07-14 00:33:15</wp:comment_date>
|
280
|
+
<wp:comment_date_gmt>2010-07-14 03:33:15</wp:comment_date_gmt>
|
281
|
+
<wp:comment_content><![CDATA[If you're in the corner and have no money to move out from that, you would require to receive the <a href="http://bestfinance-blog.com/topics/home-loans" rel="nofollow">home loans</a>. Just because that would help you unquestionably. I get collateral loan every single year and feel OK because of it.]]></wp:comment_content>
|
282
|
+
<wp:comment_approved>spam</wp:comment_approved>
|
283
|
+
<wp:comment_type></wp:comment_type>
|
284
|
+
<wp:comment_parent>0</wp:comment_parent>
|
285
|
+
<wp:comment_user_id>0</wp:comment_user_id>
|
286
|
+
</wp:comment>
|
287
|
+
</item>
|
288
|
+
</channel>
|
289
|
+
</rss>
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: hurricane
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Daniel Tamiosso
|
@@ -9,7 +9,7 @@ autorequire:
|
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
11
|
|
12
|
-
date: 2010-07-
|
12
|
+
date: 2010-07-26 00:00:00 -03:00
|
13
13
|
default_executable:
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
@@ -38,9 +38,11 @@ files:
|
|
38
38
|
- README.rdoc
|
39
39
|
- Rakefile
|
40
40
|
- VERSION
|
41
|
+
- hurricane.gemspec
|
41
42
|
- lib/hurricane.rb
|
42
43
|
- spec/hurricane_spec.rb
|
43
44
|
- spec/spec_helper.rb
|
45
|
+
- spec/wordpress_file.xml
|
44
46
|
has_rdoc: true
|
45
47
|
homepage: http://github.com/danieltamiosso/hurricane
|
46
48
|
licenses: []
|