gozap_rss 0.0.4 → 0.0.6

Sign up to get free protection for your applications and to get access to all the features.
@@ -2,6 +2,16 @@ require File.expand_path(File.dirname(__FILE__) + '/spec_helper')
2
2
 
3
3
  describe "GozapRss" do
4
4
  it "hello" do
5
- GozapRss::VERSION.should == "0.0.1"
5
+ GozapRss::VERSION.should == "0.0.5"
6
6
  end
7
+
8
+ it "test xml" do
9
+ rss = GozapRss::ChoutiRss.new("http://www.neihan8.com/data/rss/3.xml")
10
+ puts rss.items[0].title
11
+ rss.items.count.should > 1
12
+ #rss1 = RSS::Parser.parse("http://hi.baidu.com/cwyalpha/rss", false)
13
+ #puts rss1.items
14
+
15
+ end
16
+
7
17
  end
@@ -0,0 +1,449 @@
1
+ <?xml version="1.0" encoding="GBK"?>
2
+ <?xml-stylesheet type="text/css" href="http://news.163.com/css/allrss.css"?>
3
+ <rss version="2.0">
4
+ <channel>
5
+ <title>����ͷ������</title>
6
+ <link>http://news.163.com/</link>
7
+ <description>����ͷ������</description>
8
+ <pubDate>Tue, 28 Feb 2012 05:53:15 GMT</pubDate>
9
+ <lastBuildDate>Tue, 28 Feb 2012 05:53:15 GMT</lastBuildDate>
10
+ <item id="1">
11
+ <title><![CDATA[�׷澫��]]></title>
12
+ <link>http://news.163.com/special/leifeng2012/</link>
13
+ <description><![CDATA[ ]]>......</description>
14
+ <pubDate>2012-02-28 13:53:15</pubDate>
15
+ </item>
16
+ <item id="2">
17
+ <title><![CDATA[���ǿ���������ս�ѩ�Ǹ�����ͷ]]></title>
18
+ <link>http://news.163.com/12/0318/14/7SSS8FEQ0001124J.html</link>
19
+ <description>
20
+ <![CDATA[�й��������ξֳ�ί������Ժ���������ǿ������ּ�ݽ� �й������߿��� �㡰�й���չ�߲���̳2012��ᡱ3��17��-3��19���ڱ�������̨�����ݾ��У�������̳������Ϊ���й������磺��۾�����ṹ���������й��������ξֳ�ί������Ժ���������ǿ��ʾ���й��������ó�׶�;���ֱ��Ͷ�ʶ�п��ܱ�����λ���������������ܶ� ]]>
21
+ ......
22
+ </description>
23
+ <pubDate>2012-03-18 09:32:56</pubDate>
24
+ </item>
25
+ <item id="3">
26
+ <title><![CDATA[�������⽨���ڹ���ί �ƹ�150���ڹ���]]></title>
27
+ <link>http://news.163.com/12/0318/04/7SRPL9130001124J.html</link>
28
+ <description>
29
+ <![CDATA[3��6�գ�ʮһ��ȫ���˴���λ����������ľ��м��߻ᣬ����������л�����ڻش�����ʱ��ʾ���齨�����ڹ���ί��һ�£�����Ժ�йز��Ż��ڽ�һ�������о������С� ���������Ϣ���й�������ѧ����������Ե÷dz��˷ܣ�����ʾ�����ǹٷ���һ�ι����ԡ����ڹ���ί����̬�����ҳ��Բ���������֮�ڣ������о��������ô�����ᵽ�� ]]>
30
+ ......
31
+ </description>
32
+ <pubDate>2012-03-18 05:36:55</pubDate>
33
+ </item>
34
+ <item id="4">
35
+ <title><![CDATA[�й�������ٵ�ͼ���� �����ɡ��γɲ�ҵ(ͼ)]]></title>
36
+ <link>http://news.163.com/12/0318/01/7SRHCR8N00014AED.html</link>
37
+ <description>
38
+ <![CDATA[�й�������ٵ�ͼ�����˺����˽��й��Ӵ�����������ϵ�����Ƽٵ��ۼ٣�������ҵ�����й��Ѿ���չ���죬���ٵ��ֶ��廨���š�ijרҵ����Ʒ��վ�Դ�����������飬�ҽ���ɹ��ο�������վ�����ġ��������ɲ�ҵ���顷��ʾ���մ�����������Խ��������򡢺���(�����Ͻ���ʯɽ�塢�������򡢱�����)���㽭��Ȫ�������㶫���� ]]>
39
+ ......
40
+ </description>
41
+ <pubDate>2012-03-18 04:29:32</pubDate>
42
+ </item>
43
+ <item id="5">
44
+ <title><![CDATA[������6�������������˳�е�ϳ�]]></title>
45
+ <link>http://news.163.com/12/0318/01/7SRFMAJ800011229.html</link>
46
+ <description>
47
+ <![CDATA[ 16�գ����������򱾱���ӳ��14��ҹ6��������˯���б�һ�ﲻ�����ݵ��˴Ӽ���ǿ���ϳ������������ǵ����ò����Ƶ��Լ���ס�˿�40��ķ��ӣ�Ȼ���ﳤ��ȥ�� ���գ���������λ�ڹ��е���������·��ͨ��ֽ���ڵ����ϼ���¥Ժ�ڵ��ﻧ�������߿�����������ƽ���Ѿ�������ģ����������ש���������ڷ�ǰ��Ժ�У����ݵ��ſڱ��� ]]>
48
+ ......
49
+ </description>
50
+ <pubDate>2012-03-18 01:35:59</pubDate>
51
+ </item>
52
+ <item id="6">
53
+ <title><![CDATA[�¼ұ����ͼ����ǽ�ֱ�Ӳ���ũ��]]></title>
54
+ <link>http://news.163.com/12/0318/19/7STEJIAB00014JB5.html</link>
55
+ <description>
56
+ <![CDATA[�й�������3��18����Ϣ ���й�֮����ȫ������������������3��17�ŵ�18�ţ��й��������ξֳ�ί������Ժ�����¼ұ������Ͽ���ũҵ�����������¼ұ������������ھŴε����Ͽ��죬��������ʳ��ʡ����ʳ����ռȫ��ʮ��֮һ��С�����ռȫ���ķ�֮һ����һ�·ɻ���ȥ�鿴С�����顣�����������ص������¼ұ������˴������� ]]>
57
+ ......
58
+ </description>
59
+ <pubDate>2012-03-18 20:00:47</pubDate>
60
+ </item>
61
+ <item id="7">
62
+ <title><![CDATA[���Ӵ�ѧ��ҵ��Ը��������14�ꡰլ��������]]></title>
63
+ <link>http://news.163.com/12/0318/05/7SRUI88V00011229.html</link>
64
+ <description>
65
+ <![CDATA[�����Ǵ����һ����ѧ������ҵ�����������������������Ը���������ձ��˷��֡�լ�������У����Ƕ����� �����һ����ѧ�� ������С�֣�����1970�꣬ʮ��������Ϫ���������6���ˡ�3��12�գ����ھ��ٴ�͸�����ڿ�����ʱ�����������Ѿ���Ӳ��û��֪����������ȥ���ġ� ��Ϣ�ڵ��ش����������Ƿ׷׸е���ϧ�����ݽ�ʦ����ʦ�� ]]>
66
+ ......
67
+ </description>
68
+ <pubDate>2012-03-18 05:55:16</pubDate>
69
+ </item>
70
+ <item id="8">
71
+ <title><![CDATA[Ů���������ѳ��ܺ�������վ�Է�]]></title>
72
+ <link>http://news.163.com/12/0318/10/7SSG1P1R00011229.html</link>
73
+ <description>
74
+ <![CDATA[�������Ѷ 17���峿5ʱ����һ������Ů��ͻȻ���λ�ڹ��ݰ�������Ԫ�����ļ���վ�������ڸ������͵ļ���ǹ��ȫ����ʪ��Ȼ���ͳ�������ȼ�����ܼ���վԱ��Ѹ������Ů�����ϵĻ��棬 ���������ȫ��90%��������ˡ����˽⣬ ��ɲҾ��ԭ����Ů�������˸������⡣���¼���վλ�ڹ�����Ԫ�����ͻ���·��·�ڣ� ���߸ϵ� ]]>
75
+ ......
76
+ </description>
77
+ <pubDate>2012-03-18 11:01:00</pubDate>
78
+ </item>
79
+ <item id="9">
80
+ <title><![CDATA[2�·�70�����г��з��۴���½�]]></title>
81
+ <link>http://news.163.com/12/0318/16/7ST3R78J00014JB5.html</link>
82
+ <description>
83
+ <![CDATA[����������Ϣ���й�����ͳ�ƾ�18�շ����й�70����סլ���ۼ۸�䶯������ʾ��2�·ݣ��������Ϻ��½�סլ�۸�ָ����ȥ��ͬ�ں�������ȣ�����С�����䣻�㽭���ݷ��۽�������ȫ���� ������ʾ����������ȣ�70�����г����У��½���Ʒסլ������������ס�����۸��½��ij�����45������ƽ�ij�����21�������ǵij�����4�������� ]]>
84
+ ......
85
+ </description>
86
+ <pubDate>2012-03-18 16:58:26</pubDate>
87
+ </item>
88
+ <item id="10">
89
+ <title><![CDATA[����ð��ѩ��ͻ����Ա�Զ���Ů��ƭ��ƭɫ]]></title>
90
+ <link>http://news.163.com/12/0318/02/7SRIK5FM00014AED.html</link>
91
+ <description>
92
+ <![CDATA[����Ѷ ѩ��ͻ���ӵĽ������侯��У��44�����ҵ������������������֮��ð���񾯡��侯�����������Ů��̸���������գ���������һ��Ժ����ҡײƭ�ð�������ҡײƭ����������롣 2010�꣬����½���ӵ���ij������Ů�ӵı��������Ʊ�һ����������������ð�侯�졢�侯����ƭ��ƭɫ�� �ܺ�����ij�ƣ���ʱ���������ž����� ]]>
93
+ ......
94
+ </description>
95
+ <pubDate>2012-03-18 07:53:28</pubDate>
96
+ </item>
97
+ <item id="11">
98
+ <title><![CDATA[57�����ӱ��ݡ���ͷ���������ϵ���40��(ͼ)]]></title>
99
+ <link>http://news.163.com/12/0318/02/7SRI6RVJ00014AED.html</link>
100
+ <description>
101
+ <![CDATA[ͼΪ����������ϱ��ݡ���ͷ������ �����չʾ����ʹ�õ������� ����Ѷ �������磬����ɽ��������ŶΣ�һ������һ����������ߣ�һ�����Դ�ײ��ˣ�����������һ��ֱ��ֻ��1���׵�ƽͷ�����ϣ���·��Ŀ�ɿڴ��� ��������ͷ�С���������ɣ�����57�꣬��ס����������·��ÿ���峿����������������������ܲ��������������� ]]>
102
+ ......
103
+ </description>
104
+ <pubDate>2012-03-18 03:37:10</pubDate>
105
+ </item>
106
+ <item id="12">
107
+ <title><![CDATA[���������б��� ����·��׷������]]></title>
108
+ <link>http://news.163.com/12/0318/18/7ST9NSMV00014JB5.html</link>
109
+ <description>
110
+ <![CDATA[�»�������3��18�յ� ������ͽ���зɳ����ᣬ������·�˼�����Ϊͦ��������17�շ����ڹ�������ɽ��·����һĻ��������������鲢����Ϊ�ѻ���17��17ʱ������������������������ڹ�������ɽ��·������վ׼���򳵣�ͻȻ����������Ħ�г�������ɳ۶�������������һ�ѽ�����������Ľ��������²�Ѹ����ȥ��������һ�߸ߺ���ץ ]]>
111
+ ......
112
+ </description>
113
+ <pubDate>2012-03-18 18:49:48</pubDate>
114
+ </item>
115
+ <item id="13">
116
+ <title><![CDATA[�����γ�4ͷ��dz�����������ҹ���˸���(ͼ)]]></title>
117
+ <link>http://news.163.com/12/0318/15/7ST0OKI900014JB5.html</link>
118
+ <description>
119
+ <![CDATA[����������Ϣ��2012��3��17�գ������γDZ�������̲�γ������侭����ȫ�����ȣ���4ͷ���꾨�㣬��֤ʵ��ȫ���������������������������ڽ����С������й�����ڶ��δ��ģ�����dzȺ����17�����������ں�������ˮ���绰���ϣ�ҹ�����˿������ŵ��߰Ѿ�������¡�18�գ��������ֳ�����������ľ��㣬�Աߵ�������Χ�ۡ� ]]>
120
+ ......
121
+ </description>
122
+ <pubDate>2012-03-18 16:01:42</pubDate>
123
+ </item>
124
+ <item id="14">
125
+ <title><![CDATA[����2������С��20�๫���һ������˶�ʧ��ƥ]]></title>
126
+ <link>http://news.163.com/12/0318/07/7SS60MHL00011229.html</link>
127
+ <description>
128
+ <![CDATA[����Ѷ ����������־�ڶȼٴ�������ƥ����ȴ�ܶ��ˡ�������û�뵽���ǣ������񾯾Ͱ����������˻���������ǰ������־�ڻ�����������Ͷ�ʾ�Ӫ��һ�����׶ȼٴ壬����������ƥ������ƽʱ�񱦱�һ���չ�������ƥ����������־�ƣ�3��15��һ�磬��ȥι��ʱ�����������ˡ��鼱֮�£����ܵ������ɳ������˰���������˵���д����� ]]>
129
+ ......
130
+ </description>
131
+ <pubDate>2012-03-18 10:57:17</pubDate>
132
+ </item>
133
+ <item id="15">
134
+ <title><![CDATA[���������ݺ�����С��ӦƸ��]]></title>
135
+ <link>http://news.163.com/12/0318/12/7SSMJJFM0001124J.html</link>
136
+ <description>
137
+ <![CDATA[3��17�գ������׭���鷨��������չ�ڹ������岩��ݿ�Ļ���й��������ξ�ԭ��ί������Ժԭ�������������������ڳ�̸�����������򣬲���������������ִ���������Ϊ���������顱���鷨��׭����Ʒ�����������������������õ�ף������������ί��ǡ��������˴�ί�����ι������ڿ�Ļʽ���´ǣ���������ϯ������ֿ�Ļ�� ]]>
138
+ ......
139
+ </description>
140
+ <pubDate>2012-03-18 12:55:08</pubDate>
141
+ </item>
142
+ <item id="16">
143
+ <title><![CDATA[�����̷۱��سԳ���ر�����(ͼ)]]></title>
144
+ <link>http://news.163.com/12/0318/15/7ST06RRL00011229.html</link>
145
+ <description>
146
+ <![CDATA[�̷���ı����ס�15�գ���ס������ɽ�����ֵ�����������������������ߣ����ڸ�Ů��ι���̷�ʱ����Ȼ�����˴�Ƭ��������������ó�����ϸ�鿴�󣬾�Ȼ�ǰ�ر����ס�����������������ʱ����������Ů�������Ӱ׾������Ϸ��������������˵��Ů����ǰû�����֢״��ǰ����ſ�ʼ���ֺ�������������Ϊ�Ƕ�����ֱ��3 ]]>
147
+ ......
148
+ </description>
149
+ <pubDate>2012-03-18 16:15:00</pubDate>
150
+ </item>
151
+ <item id="17">
152
+ <title><![CDATA[�Ⱦ�:]]></title>
153
+ <link>http://v.163.com/tv/</link>
154
+ <description><![CDATA[ ]]>......</description>
155
+ <pubDate>2012-03-17 11:36:11</pubDate>
156
+ </item>
157
+ <item id="18">
158
+ <title><![CDATA[�㶫ԭտ������̨Ų̊���澭�����ⱻ����]]></title>
159
+ <link>http://news.163.com/12/0303/08/7RLJUS2K0001124J.html</link>
160
+ <description>
161
+ <![CDATA[�������մ�տ���йز��ŵõ�֤ʵ�������������ؾ������⣬�㶫�������տ���ֹ�˾�ܾ�����ԭտ������̨Ų̊��ͯС��2��28�ձ������ش��ߵ��飬ͬʱ�����ߵ���Ļ���ԭտ�����ߵ���̨��̨����ij��Ů��2008�����ݣ���ԭտ���㲥����̨�������ĸ�������ij�죨Ů��50�꣩���������磬տ����ί��������տ���м��Ժ��տ������ ]]>
162
+ ......
163
+ </description>
164
+ <pubDate>2012-03-03 08:34:22</pubDate>
165
+ </item>
166
+ <item id="19">
167
+ <title><![CDATA[ʰ�����˻����ж��1.5��Ԫ�ֽ�]]></title>
168
+ <link>http://news.163.com/12/0303/10/7RLP6UOJ00011229.html</link>
169
+ <description>
170
+ <![CDATA[2������,���вм���֣����(��)��Ǯʱ�ŷ������ж����15000Ԫ����������3��2��Ѷ����ձ�ƭ��ƭ��5900Ԫ,����ȡ��ʱ���о������15000Ԫ������콵�޿�,���ƲƵ���������������֣������Ϊ����,�������ֽ��˸����С�2������,����ʧ����֣����������һ���������ֳ�����շ�Ʒ���ճ��Ų���,�����������һ���γ�������������ס ]]>
171
+ ......
172
+ </description>
173
+ <pubDate>2012-03-03 10:26:32</pubDate>
174
+ </item>
175
+ <item id="20">
176
+ <title><![CDATA[�����ڵ���ͬ������������ �������63��(ͼ)]]></title>
177
+ <link>http://news.163.com/12/0303/10/7RLS8HBG00011229.html</link>
178
+ <description>
179
+ <![CDATA[��վ��������ڵ���ͬ־�����ҽ��ܹ�棬�����ۻ����ҡ�ͼΪ�Է�Ϊ�������ϰ֡����м�(��)���μ��߱��䣬�������ǡ������ý��3��2�ձ������ڵ����������۴������۾��ã������ڵ���ͬ�����Թ�������������У����������ڼ���¡����ɶ족������һ������������վ��������ٸ��м˹�棬���Գƽ�ž����۾��ˡ���ѧ���������� ]]>
180
+ ......
181
+ </description>
182
+ <pubDate>2012-03-03 11:01:17</pubDate>
183
+ </item>
184
+ <item id="21">
185
+ <title><![CDATA[����ΪiPhone������׼� �ɺ��л���֧Ԯ(ͼ)]]></title>
186
+ <link>http://war.163.com/12/0303/13/7RM3VCRR00011MTO.html</link>
187
+ <description>
188
+ <![CDATA[����ͼ���������ϣ��-������˾ΪIPHONE�з���MONAX�����׼���Ҳ����һ�죬iPhone�ֻ�����ǹ֧��ҩһ������Ϊʿ����ս���ı��䣬�Ⲣ���dz���˵�Ρ�2011��7�£�����½��������ī�����ݼ��ÿ���˹�ݵİ�ɳ�벼��˹��ѵ�����أ������һ�������ֻ�����Ӧ����Ŀ�IJ��ԡ��ڴ��ڼ䣬������������300��̨�����ֻ������˲�����֮�� ]]>
189
+ ......
190
+ </description>
191
+ <pubDate>2012-03-03 13:21:11</pubDate>
192
+ </item>
193
+ <item id="22">
194
+ <title><![CDATA[��۴�ѧ�������ջ١��ȳ��桱]]></title>
195
+ <link>http://news.163.com/12/0204/08/7PDFNS7N00014L3C.html</link>
196
+ <description>
197
+ <![CDATA[�ϱ���Ѷ ���գ�����������ڱ��µǹ�淴�ڵ��ˡ�������ϴ�ѧ��һ��ѧ����������У԰���У����Զ��ڵ����������ӡ����ڵ��ο�Ҳ��Ϊ���������ص��˽Ӵ����ˣ��ڲ�ͬ�Ļ������²�����ͻ�������⡣������������ε��ڵ���Խ��Խ�࣬���ֵ��ο�Ҳ����һЩ�������Ϊ����������Ϊ������ۡ� ���ϴ���˫���и�����۲��ӣ���ָ ]]>
198
+ ......
199
+ </description>
200
+ <pubDate>2012-02-04 22:19:30</pubDate>
201
+ </item>
202
+ <item id="23">
203
+ <title><![CDATA[���ӡ��ж��й�����׷����ر��¾�]]></title>
204
+ <link>http://news.163.com/12/0204/13/7PE09PI900011229.html</link>
205
+ <description>
206
+ <![CDATA[ ���Ű׷���������ǰ�����ֵ���Ƭ�ж����������ѡ� ������ǰ��������ֳ� �׷���ȥ��ʱ��ѧ������������������ ��򱱷���Ѷ�����������ж��й�2011��Ȱ佱ʢ�䡷���������̨�ۺ�Ƶ�������������ɺ;�һ���������֣�2011�ж��й��������ʽ��¯�� �˴ε�ѡ�ĸж��й������ǣ�Ϊ���й�����ҵ�����޴��׵Ŀ�ѧ���� ]]>
207
+ ......
208
+ </description>
209
+ <pubDate>2012-02-04 13:09:12</pubDate>
210
+ </item>
211
+ <item id="24">
212
+ <title><![CDATA[�¼ұ����й������������ŷ��]]></title>
213
+ <link>http://news.163.com/special/merkelfanghua/</link>
214
+ <description><![CDATA[ ]]>......</description>
215
+ <pubDate>2012-02-04 19:33:14</pubDate>
216
+ </item>
217
+ <item id="25">
218
+ <title><![CDATA[�յ�������Χ���й���������ɽ��]]></title>
219
+ <link>http://news.163.com/12/0204/12/7PDTPSME0001121M.html</link>
220
+ <description>
221
+ <![CDATA[�й����˽������յ���Ϯ�¼���ICͼƬ3�գ�Ӫ�����յ����ٳ��й����˵��ж��ѽ����7�죬�й�פ�յ���ʹ��һ�������˱�ʾ����ʹ�����¼�������һ�ٶش��յ�������ȷ�����ʰ�ȫ��ǰ���¾���ʹ���ٳ���Ա���͡��շ��Դ˸߶����ӣ�һֱ��Ϊ����й����ʻ���Ŭ�����յ�����ƽ��Ӵ��ѹ�ݸø����˱�ʾ���й�פ�յ���ʹ�ݷdz����� ]]>
222
+ ......
223
+ </description>
224
+ <pubDate>2012-02-04 12:22:23</pubDate>
225
+ </item>
226
+ <item id="26">
227
+ <title><![CDATA[��������������������µж������Ϳɾ�����ҥ]]></title>
228
+ <link>http://news.163.com/12/0204/01/7PCQ5KSJ0001124J.html</link>
229
+ <description>
230
+ <![CDATA[��������ȫ�������Ļ���������ָ�� ���������ؼ������������������������� ������Ѷ 2��3�գ������ٿ������Ļ��������飬�о������������˼���Ļ���������ί��DZ�����ָ��������ս�ߵ�ͬ־���ǵ��������֡�����Ҫ��Ϊ��˼��ҡ���Ҫ���������ؼ����������ȷ���������ۣ������Ƚ��Ļ����ƶ������������ʵ��������Է��� ]]>
231
+ ......
232
+ </description>
233
+ <pubDate>2012-02-04 02:09:50</pubDate>
234
+ </item>
235
+ <item id="27">
236
+ <title><![CDATA[�����ֻ��û���ͻ��100��]]></title>
237
+ <link>http://news.163.com/12/0204/02/7PCRKB6V00014AED.html</link>
238
+ <description>
239
+ <![CDATA[���»���� �볯�������ṩ�ƶ�ͨ�ŷ���İ�������˹��ķ���Ź�˾˵�������ƶ��绰ע���û���ͻ��100�� ����˹��ķ����2008��12���Բιɷ�ʽ�볯�ʵ���ʡ�������ڳ��ʳ�����һ����Ψһһ��3G�ֻ����繫˾������ͨ�š����ṩ�ƶ��绰�����ҵ�� ������Ԯ������˹��ķ����ȥ��11�·����ġ�2011���������ҵ�����桷������ ]]>
240
+ ......
241
+ </description>
242
+ <pubDate>2012-02-04 03:54:34</pubDate>
243
+ </item>
244
+ <item id="28">
245
+ <title><![CDATA[���㶫�⴨��ί˾����Ƽ�ײ�����쵼����]]></title>
246
+ <link>http://news.163.com/12/0204/04/7PD1U9E300014AED.html</link>
247
+ <description>
248
+ <![CDATA[����տ��Ѷ ������������������ϴ��ԡ��⴨��ί��Ҫ�쵼�����������ײ���˺����ݣ�Ȼ����è��̫�ӡ�����˾��������������è�������գ��⴨��ί�������ʹ���������Ӧ������ý��ת���⴨�м�ί���⴨�������¼���������˵���� �����˵���ƣ�1��28��21ʱ42�ַ������⴨�л�������Ѽ��·��·�γ����������Ⱥ��ײ���� ]]>
249
+ ......
250
+ </description>
251
+ <pubDate>2012-02-04 05:02:46</pubDate>
252
+ </item>
253
+ <item id="29">
254
+ <title><![CDATA[��ý�����淴�ڵ��и����(ͼ)]]></title>
255
+ <link>http://news.163.com/12/0202/11/7P8KJIKN00014JB6.html</link>
256
+ <description>
257
+ <![CDATA[��ý�����淴�ڵ��и�����ý�����淴�ڵ��и�������һ�ұ�ֽ2��1�ճ���һ����Ϊ������ˣ��̹��ˡ��Ĵ����棬���ﷴ�ڵ��и����۵��������������ڵ���Ϊ�ȳ棬Ҫ�󵱾���ֹ�ڵ��ˡ����֡�������ý����Ϊ�˾ٽ������������ڵ����ڼ��ì�ܣ�����������ѧ���ڽ��ܡ�����ʱ�����ɷ�ʱҲ��ʾ����ͬ��һ��������������� ]]>
258
+ ......
259
+ </description>
260
+ <pubDate>2012-02-02 11:43:16</pubDate>
261
+ </item>
262
+ <item id="30">
263
+ <title><![CDATA[������������ɧ������74������]]></title>
264
+ <link>http://news.163.com/special/aijiqmsl/</link>
265
+ <description><![CDATA[ ]]>......</description>
266
+ <pubDate>2012-02-02 17:46:57</pubDate>
267
+ </item>
268
+ <item id="31">
269
+ <title><![CDATA[ȫ�����������������й���½�ŵ�90]]></title>
270
+ <link>http://news.163.com/12/0202/10/7P8JABGR0001121M.html</link>
271
+ <description>
272
+ <![CDATA[��̫���һ������2011��ȵ��������������� ����������������������������Record Japan������2��1����Ϣ������ȫ������CDN����������Akamai��˾1��31�չ���������������ʾ��2011����ļ�������ƽ������ͬ��������39%����2.7Mbps��ƽ�������ٶ����Ĺ��һ�����Ǻ������ձ����ڵ���λ�����й���½�����ڵ�90���� ������ʾ ]]>
273
+ ......
274
+ </description>
275
+ <pubDate>2012-02-02 10:41:26</pubDate>
276
+ </item>
277
+ <item id="32">
278
+ <title><![CDATA[�����ƺ���ҹ���顰�����ֳ�ǿ����Ů���¼�]]></title>
279
+ <link>http://news.163.com/12/0202/17/7P9AHO9100011229.html</link>
280
+ <description>
281
+ <![CDATA[�����Ѷ ΢�������ƺӹ����ֳ�֣��ǿ����Ů���¼������½�չ���ƺ�����ί��2&#8226;01���������鴦���쵼С�飬����3��ר�ŵ���С����ҹ���е��顣1��31�գ�΢�����س��ƺ��ع����ָ��ֳ�֣��ǿ�顢��ŪŮ��ѧ����2��1�գ�����������������˵������55���֣�����ƺ��ع�����һ����ͨ�񾯣����ǹ����ֳ����������ίǣͷ ]]>
282
+ ......
283
+ </description>
284
+ <pubDate>2012-02-02 18:01:58</pubDate>
285
+ </item>
286
+ <item id="33">
287
+ <title><![CDATA[�����廪��ѧ����У���ع���һ���ۼ���Ԫ]]></title>
288
+ <link>http://news.163.com/12/0202/12/7P8O52N000011229.html</link>
289
+ <description>
290
+ <![CDATA[ ��������2��2��Ѷ&nbsp; ���գ����ѡ�����Ů�����ڻ�����̳������Ϊ���人���̳���ţ�ư�~1��һ���Ļƺ�¥������𣡡������ӣ����������ϳ�����Ԫһ���ġ��廪��ѧ����У���ع����ƺ�¥���̣��������������㷺���ɡ�������Ϸ�ƣ����̺�������С������ �ݸñ�����ͼ��ʾ��һ���̲ݵ���Ĺ�̨�ϰ���һ�����ƽ�����ǵġ��� ]]>
291
+ ......
292
+ </description>
293
+ <pubDate>2012-02-02 16:42:40</pubDate>
294
+ </item>
295
+ <item id="34">
296
+ <title><![CDATA[����֢����ɱ���������������Զ����ٽ���ɱ��]]></title>
297
+ <link>http://news.163.com/12/0202/16/7P961NE300011229.html</link>
298
+ <description>
299
+ <![CDATA[�Ϸ�����Ѷ ��Ϊ�������治��������������֢����ï��������ɱ�����ӵ��뷨�����뵽ɱ�����Ӻ����ӵ�����Ҳ���ù�����ï��㽫���Ӻ�����һ�𿳵���Ѫ���У�����1��10��8�桶����ͥ�����Լ������񼫡����������������գ��Ϸ�����Ժ���У���ï�챻�д�����ͽ��15�ꡣ��ï�죬1971������ںϷʳ����أ������Ļ��̶ȡ�ԭ�� ]]>
300
+ ......
301
+ </description>
302
+ <pubDate>2012-02-02 16:11:02</pubDate>
303
+ </item>
304
+ <item id="35">
305
+ <title><![CDATA[�ӱ����ӿ����һ�� 22�˾辫��3�˺ϸ�]]></title>
306
+ <link>http://news.163.com/12/0202/18/7P9EO8H900011229.html</link>
307
+ <description>
308
+ <![CDATA[����ǰ���ӱ�ʡ���ྫ�ӿ⡰���¡��ˡ���������ɼ���־Ը�辫���飬�ﲻ���򸾻�ý���̥����Ҳ�ɱ����Լ��ľ��ӣ��Ա���������ʱʹ�á�����һ����������Һӱ�Ψһ��ȫ����ʮ�ļ����ྫ�ӿ���ܾ辫���������������(1��)�����߽�����̽�á�����һ���½ӵ�Լ300����ѯ�绰�����ã������Ǻӱ�ʡ���ྫ�ӿ⣬������׾��� ]]>
309
+ ......
310
+ </description>
311
+ <pubDate>2012-02-02 18:46:23</pubDate>
312
+ </item>
313
+ <item id="36">
314
+ <title><![CDATA[�廪���ڳ�ׯ�ӿ����Ļ��谭�й�����]]></title>
315
+ <link>http://news.163.com/12/0202/21/7P9PHEGG00011229.html</link>
316
+ <description>
317
+ <![CDATA[1��25�գ��廪��ѧ����ϵͳ��ѧ�о����Ľ��ڹ����ڡ���Ȼ���������£����й��Ŵ��Ļ����й���ѧ�о���Ӱ�췢������������Ϊ�����Ӻ�ׯ���Ļ����й��������ƺ����ģ��Կ�ѧ�о�û�кô�������˵���й�����������Ҫ��ߣ�Ŀǰ���ڵ�����һ����ѧ�����ˣ���һ�����Ļ�����ׯ�Ļ�����С�߶Ⱥ��Ը�������������谭���¡���ҵ�� ]]>
318
+ ......
319
+ </description>
320
+ <pubDate>2012-02-02 21:57:12</pubDate>
321
+ </item>
322
+ <item id="37">
323
+ <title><![CDATA[�ڿ��¼������о�:��ί��ǽ������������]]></title>
324
+ <link>http://news.163.com/12/0104/10/7MTUOEKO00014JB6.html</link>
325
+ <description>
326
+ <![CDATA[9��21�����磬�ڿ���400�����������������⡢�������⡢ѡ������Դ�ɲ���������½���������������Ϸã�������˴��Ҿ�Ա�������¼���������̬��չ��11��21�գ������ٴμ����Ϸã������ڲ���������ͻ�������̬��ƽϢ�����գ��㶫��������ʡ����������Ӧ���ڿ��¼���������Ӧ�ԽǶȷ����������������е�Ӧ������������ ]]>
327
+ ......
328
+ </description>
329
+ <pubDate>2012-01-04 11:28:27</pubDate>
330
+ </item>
331
+ <item id="38">
332
+ <title><![CDATA[���ݻ�վ��������ͻȻ����]]></title>
333
+ <link>http://news.163.com/12/0104/09/7MTR53NT0001124J.html</link>
334
+ <description>
335
+ <![CDATA[����Ա�����¹��ֳ�������ͣ���񡱱�ʶ����¬С�㹩ͼ�� ����ͻȻ���ѣ���ը��һ������������@TSE��΢���� ���ݻ�վ�������ݶ��ѣ����������ڼ��޺��ʾ�˿������䡰˺�ѡ������ ǰ��6ʱ30�����ң����ݵ���2���߹��ݻ�վ��һ�����з���ͻȻ�������ѡ����Ҷ��Ѳ�λλ�ڷ����յ㴦������Ա���������������ʾ���¹� ]]>
336
+ ......
337
+ </description>
338
+ <pubDate>2012-01-04 09:58:19</pubDate>
339
+ </item>
340
+ <item id="39">
341
+ <title><![CDATA[������Ӥ����·��������������ѹ(ͼ)]]></title>
342
+ <link>http://news.163.com/12/0104/03/7MT4TAUB00014AED.html</link>
343
+ <description>
344
+ <![CDATA[��ֽ�ǰ�������Ӥ����3��Ѷ ����16ʱ���ң�һ��Ӥ�������ڹ����㷻�������ݽ��ϣ���������ʱ�������������Ӥ�����ǹݵij������ߡ����߸ϵ��ֳ���������һ�Ҳ�����ǰ�����е�����һ��ֽ�ǣ�ֽ������һ�����ϴ���Ѫ���������δ���ϵ���Ӥ���ݸ���������Ůʿ���ܣ������Ӥ�Ǵ�һ�����������ģ���ʱ��Ӥ�����ϴ������ţ��� ]]>
345
+ ......
346
+ </description>
347
+ <pubDate>2012-01-04 08:40:29</pubDate>
348
+ </item>
349
+ <item id="40">
350
+ <title><![CDATA[���ﹷ�ܳ������䱻������Ա����(ͼ)]]></title>
351
+ <link>http://news.163.com/12/0104/00/7MSP8DJN00014JB6.html</link>
352
+ <description>
353
+ <![CDATA[���������ij��ﹷ����񡱱�����ǰ��Ƭ��ͼƬ����΢���� ���ﹷͷ��Ѫ�� ��ͼƬ����΢���� �����������Ӵ�����1��4�յ� 1��2�գ�һ�����ڡ����ﹷ�ͻ�������΢���������ϱ�ת������Σ�����Ϊ�������ʡ������ѷ���΢���ƣ��Լ��ij��ﹷ�����ɻ����������������������󣬲�֪ʲôԭ��Ӻ��������ܳ�����󱻻���������Ա���� ]]>
354
+ ......
355
+ </description>
356
+ <pubDate>2012-01-04 08:01:19</pubDate>
357
+ </item>
358
+ <item id="41">
359
+ <title><![CDATA[���Ƽ������Ӵ��� �����Ѹ�ϳ�����Ϊ���顷]]></title>
360
+ <link>http://news.163.com/12/0104/12/7MU5P47R00014JB6.html</link>
361
+ <description>
362
+ <![CDATA[ &nbsp;����ͼ������ ������1��4�յ� �̸���������ȷ���μӴ��������ӽ�����������ѸҲ�����ˣ�������һ���ݳ��������ӡ�����30�֡���Ϣ�����ƴ˴ε�̨������Ϊ��ͬ���괺�����ؼҹ����ꡱ�����⡣ ���괺���ϣ������ݳ���һ�������桷���ܶ�������µļ�Ϊ��̵�ӡ��ҲΪ�Լ���2011��ĸ��������˼�ʵ�Ļ����� ���Ӵ� ]]>
363
+ ......
364
+ </description>
365
+ <pubDate>2012-01-04 14:38:17</pubDate>
366
+ </item>
367
+ <item id="42">
368
+ <title><![CDATA[���ڼ������ģ������в����˴���]]></title>
369
+ <link>http://news.163.com/12/0102/04/7MO2J01N00014AED.html</link>
370
+ <description>
371
+ <![CDATA[��������Ѷ ����һ��Ⱦ���²��������л���ǰ����ҽ����Ч����������Լ9ʱ�������м�������ͨ��ȷ�����߸�Ⱦ���꣬��2.3.2.1��ϵ�ĸ��²��������в�����������ȻΪ�������壬���ɲ�����������֮����д����������������ֻš� �����м���������ظ����˽��ܣ������������������������ר�����������ݼ٣�������ս72Сʱ���� ]]>
372
+ ......
373
+ </description>
374
+ <pubDate>2012-01-02 09:52:31</pubDate>
375
+ </item>
376
+ <item id="43">
377
+ <title><![CDATA[���ֵ���̨�����ӳ�Ӧ�Բ岥����]]></title>
378
+ <link>http://news.163.com/12/0102/07/7MOCSCN700011229.html</link>
379
+ <description>
380
+ <![CDATA[�����Ǹ������ִ̨�й���ֽܾ�ֹ�ڵ��Ӿ��в岥���ĵ�һ�죬���ٹ��������������������£������ڿ������������Ӿ��ˡ�����������Ҳ���⵽������̨���ڹ涨��ִ�ж��൱���ף������й��������ϵ�٩��������̫˳�ˣ�û���в��棬���е㲻ϰ�ߡ�����Ϊ���������в��棬�������̨Ҳ���ò��ı䲥��ģʽ��������С���� ]]>
381
+ ......
382
+ </description>
383
+ <pubDate>2012-01-02 07:45:41</pubDate>
384
+ </item>
385
+ <item id="44">
386
+ <title><![CDATA[�찲�Ź���̨������ͨ�οͿ���(ͼ)]]></title>
387
+ <link>http://news.163.com/12/0102/00/7MNM88GG00014AED.html</link>
388
+ <description>
389
+ <![CDATA[���գ��찲�Ź���̨��һλСͬѧ������ж��񡣼��� ����� �� �����糿7ʱ11�������찲�Ź���̨����������ͺӱ���Сѧ���ǵȺ�������ʽ��ʼ�� ����� �� ����7ʱ30���������커�����ھ��ֶӵİ����£��������������㳡��ˡ� ����� �� ���գ�����ȽȽ�����1��ֻ��ƽ�뱻�ŷɡ��»��緢 ������ �㣩 ����Ѷ ���굽�� ]]>
390
+ ......
391
+ </description>
392
+ <pubDate>2012-01-02 00:59:47</pubDate>
393
+ </item>
394
+ <item id="45">
395
+ <title><![CDATA[Ҳ����ͳ�ݸ�����ƻ� �����ٴ�ʾ��]]></title>
396
+ <link>http://news.163.com/12/0102/13/7MP3VLPF00014JB6.html</link>
397
+ <description>
398
+ <![CDATA[������1��2�յ�&nbsp; ��̨�塰�й���������2�ձ�����Ҳ����ͳ������һ�ij��ԣ������������������������ڹ��ڡ�Ҳ�ŷ��Ե�1�շ���ʾ�����飬ָ����������ͼ�ƻ���Ȩ�ƽ��������µ�Σ������֧�������յ��������ӳ�����ֹȺ�ڿ��飬˫��������ͻ�����3�������� ͳ��Ҳ��30�������ͳ����������Թ���10���µ�ʾ�������󣬽� ]]>
399
+ ......
400
+ </description>
401
+ <pubDate>2012-01-02 14:04:47</pubDate>
402
+ </item>
403
+ <item id="46">
404
+ <title><![CDATA[������ҩ���Ʊ�ָ���º���������������]]></title>
405
+ <link>http://news.163.com/12/0102/10/7MOO5S6A0001124J.html</link>
406
+ <description>
407
+ <![CDATA[���»���� �ձ���ӯ��������ҽҩ�������ġ����е�һ���о��ƣ�������ҩ���ƿ��ܵ��»���ͻȻ�������غ������ѵ�֢״�����������������丱���ñ���һ����������ҩ��������Τǿ�ҵöࡣ ���(������˾��Τ)������ʿ������ҩ��˾���ƵĿ�����ҩ��������ڿ������кͼ���H1N1����ʱ�㷺ʹ�á��ձ���������ҩƷ��ȫ�����Ѿ� ]]>
408
+ ......
409
+ </description>
410
+ <pubDate>2012-01-02 10:32:23</pubDate>
411
+ </item>
412
+ <item id="47">
413
+ <title><![CDATA[�й��׸�3D����Ƶ���Բ�]]></title>
414
+ <link>http://news.163.com/12/0102/08/7MOHR38300014JB5.html</link>
415
+ <description>
416
+ <![CDATA[�й�������1��2����Ϣ&nbsp; ���й�֮���������ݺᡷ�������ڼ�Ҫ�뿴��3D�����ܹ��ּ����أ���������һ�����������������ֵ��������ǵ��û����ڶ�������һ̨����3D���ܵĵ��ӻ����������ָ�������У������������е���̨��3D���ӽ�Ŀ�������� ���죬��ؼ��ĵ������Ѿ�ʵ���ˡ����������̨����������̨��������̨���Ϻ� ]]>
417
+ ......
418
+ </description>
419
+ <pubDate>2012-01-02 09:07:45</pubDate>
420
+ </item>
421
+ <item id="48">
422
+ <title><![CDATA[ɽ������ɽ�廬��24Сʱ������������֪]]></title>
423
+ <link>http://news.163.com/12/0101/02/7MLAGQV700014AED.html</link>
424
+ <description>
425
+ <![CDATA[���»���� ɽ��ʡ�����칫������ǰͨ����2011�귢����3��ͻ���¼��ٱ��¼��� 2011��6��26��3ʱ���������д����¸�������﹵����ɽ�廬�£����9���������ֺ������󣬵�������27���賿�Ŵ��»�����֪��Ϣ��3ʱ03��ʡ����ֵ���ҽӵ������������ı��棬��Ϣ�ٱ���24Сʱ��ɽ��ʡ����������δ���涨��ʡ����ֵ�������汨�档 ]]>
426
+ ......
427
+ </description>
428
+ <pubDate>2012-01-01 08:21:51</pubDate>
429
+ </item>
430
+ <item id="49">
431
+ <title><![CDATA[���콫�½�һ�������ˡ��͸�¥��ͼ��]]></title>
432
+ <link>http://news.163.com/12/0101/04/7MLISC3N00014JB6.html</link>
433
+ <description>
434
+ <![CDATA[����ʯCBD�ܲ���¥Ч��ͼ���������ϰ�����ͼ��������������12��31�յ� ����31�մ��������ϰ���������Ϥ���������ڳ����ϰ��ĵ���ʯ�½�һ�����ο��ơ����ˡ����ֵĴ�¥���ý���Ϊ����ʯCBD�ܲ���¥����Ƹ߶�Ϊ280�ף���¥����������������־���������족Ϊ���ս��裬��һ�������������֡����еȹ�����һ��Ķ๦���ۺ��� ]]>
435
+ ......
436
+ </description>
437
+ <pubDate>2012-01-01 06:36:22</pubDate>
438
+ </item>
439
+ <item id="50">
440
+ <title><![CDATA[�㶫��ɽũ������Ԫ���̱���ɲ�˽��]]></title>
441
+ <link>http://news.163.com/12/0101/06/7MLPLT7P0001124J.html</link>
442
+ <description>
443
+ <![CDATA[�����ж�����ļ����ٽ��г�������ʧ�غ󣬺ܶ��˿��ڴ�������С����ά�����ơ�ʧ��ũ�������Ԫ�������ʲ�������ƾ�����й��쵼�����к�������ɲ����о�����������ְ��´����Ρ�ͬ�⴦�á����ͱ�˽�Եͼ۱�������ǧ��Ⱥ�ڲ�֪�顣������������ڹ㶫��ɽ�еġ�Ȩ������������Ⱥ�ھٱ�������������ٱ�����Ԫ�������ʲ� ]]>
444
+ ......
445
+ </description>
446
+ <pubDate>2012-01-01 11:47:56</pubDate>
447
+ </item>
448
+ </channel>
449
+ </rss>
metadata CHANGED
@@ -2,7 +2,7 @@
2
2
  name: gozap_rss
3
3
  version: !ruby/object:Gem::Version
4
4
  prerelease:
5
- version: 0.0.4
5
+ version: 0.0.6
6
6
  platform: ruby
7
7
  authors:
8
8
  - "\xE7\x8E\x8B\xE6\x98\x8E\xE5\x8D\x8E"
@@ -10,7 +10,7 @@ autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
12
 
13
- date: 2012-03-18 00:00:00 Z
13
+ date: 2012-03-19 00:00:00 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: logger
@@ -108,7 +108,9 @@ files:
108
108
  - lib/gozap_rss/chouti_rss.rb
109
109
  - lib/gozap_rss/gozap_ext.rb
110
110
  - lib/gozap_rss/version.rb
111
+ - spec/alpha.xml
111
112
  - spec/gozap_rss_spec.rb
113
+ - spec/netease_top.xml
112
114
  - spec/spec_helper.rb
113
115
  homepage: http://github.com/wangmh/gozap_rss
114
116
  licenses:
@@ -123,7 +125,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
123
125
  requirements:
124
126
  - - ">="
125
127
  - !ruby/object:Gem::Version
126
- hash: -757852589
128
+ hash: -167712721
127
129
  segments:
128
130
  - 0
129
131
  version: "0"