├── .drone.yml
├── .gitignore
├── .rubocop.yml
├── .travis.yml
├── Gemfile
├── LICENSE
├── README.markdown
├── Rakefile
├── install.rb
├── lib
└── simple-rss.rb
├── simple-rss.gemspec
└── test
├── base
└── base_test.rb
├── data
├── atom.xml
├── media_rss.xml
├── not-rss.xml
├── rss09.rdf
├── rss20.xml
└── rss20_utf8.xml
└── test_helper.rb
/.drone.yml:
--------------------------------------------------------------------------------
1 | image: paintedfox/ruby
2 | script:
3 | - bundle install
4 | - bundle exec rake
5 |
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 | .DS_Store
2 |
--------------------------------------------------------------------------------
/.rubocop.yml:
--------------------------------------------------------------------------------
1 | # Commonly used screens these days easily fit more than 80 characters.
2 | Metrics/LineLength:
3 | Max: 120
4 |
5 | # Too short methods lead to extraction of single-use methods, which can make
6 | # the code easier to read (by naming things), but can also clutter the class
7 | Metrics/MethodLength:
8 | Max: 20
9 |
10 | # The guiding principle of classes is SRP, SRP can't be accurately measured by LoC
11 | Metrics/ClassLength:
12 | Max: 1500
13 |
14 | # No space makes the method definition shorter and differentiates
15 | # from a regular assignment.
16 | Layout/SpaceAroundEqualsInParameterDefault:
17 | EnforcedStyle: no_space
18 |
19 | # Single quotes being faster is hardly measurable and only affects parse time.
20 | # Enforcing double quotes reduces the times where you need to change them
21 | # when introducing an interpolation. Use single quotes only if their semantics
22 | # are needed.
23 | Style/StringLiterals:
24 | EnforcedStyle: double_quotes
--------------------------------------------------------------------------------
/.travis.yml:
--------------------------------------------------------------------------------
1 | language: ruby
2 | rvm:
3 | - ruby-head
4 | - "2.2"
5 | - "2.1"
6 | - "2.0"
7 | - 1.9.3
8 | - jruby-head
9 | - jruby-19mode
10 |
--------------------------------------------------------------------------------
/Gemfile:
--------------------------------------------------------------------------------
1 | source "https://rubygems.org"
2 |
3 | gemspec
4 |
--------------------------------------------------------------------------------
/LICENSE:
--------------------------------------------------------------------------------
1 | GNU LESSER GENERAL PUBLIC LICENSE
2 | Version 2.1, February 1999
3 |
4 | Copyright (C) 1991, 1999 Free Software Foundation, Inc.
5 | 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
6 | Everyone is permitted to copy and distribute verbatim copies
7 | of this license document, but changing it is not allowed.
8 |
9 | [This is the first released version of the Lesser GPL. It also counts
10 | as the successor of the GNU Library Public License, version 2, hence
11 | the version number 2.1.]
12 |
13 | Preamble
14 |
15 | The licenses for most software are designed to take away your
16 | freedom to share and change it. By contrast, the GNU General Public
17 | Licenses are intended to guarantee your freedom to share and change
18 | free software--to make sure the software is free for all its users.
19 |
20 | This license, the Lesser General Public License, applies to some
21 | specially designated software packages--typically libraries--of the
22 | Free Software Foundation and other authors who decide to use it. You
23 | can use it too, but we suggest you first think carefully about whether
24 | this license or the ordinary General Public License is the better
25 | strategy to use in any particular case, based on the explanations below.
26 |
27 | When we speak of free software, we are referring to freedom of use,
28 | not price. Our General Public Licenses are designed to make sure that
29 | you have the freedom to distribute copies of free software (and charge
30 | for this service if you wish); that you receive source code or can get
31 | it if you want it; that you can change the software and use pieces of
32 | it in new free programs; and that you are informed that you can do
33 | these things.
34 |
35 | To protect your rights, we need to make restrictions that forbid
36 | distributors to deny you these rights or to ask you to surrender these
37 | rights. These restrictions translate to certain responsibilities for
38 | you if you distribute copies of the library or if you modify it.
39 |
40 | For example, if you distribute copies of the library, whether gratis
41 | or for a fee, you must give the recipients all the rights that we gave
42 | you. You must make sure that they, too, receive or can get the source
43 | code. If you link other code with the library, you must provide
44 | complete object files to the recipients, so that they can relink them
45 | with the library after making changes to the library and recompiling
46 | it. And you must show them these terms so they know their rights.
47 |
48 | We protect your rights with a two-step method: (1) we copyright the
49 | library, and (2) we offer you this license, which gives you legal
50 | permission to copy, distribute and/or modify the library.
51 |
52 | To protect each distributor, we want to make it very clear that
53 | there is no warranty for the free library. Also, if the library is
54 | modified by someone else and passed on, the recipients should know
55 | that what they have is not the original version, so that the original
56 | author's reputation will not be affected by problems that might be
57 | introduced by others.
58 |
59 | Finally, software patents pose a constant threat to the existence of
60 | any free program. We wish to make sure that a company cannot
61 | effectively restrict the users of a free program by obtaining a
62 | restrictive license from a patent holder. Therefore, we insist that
63 | any patent license obtained for a version of the library must be
64 | consistent with the full freedom of use specified in this license.
65 |
66 | Most GNU software, including some libraries, is covered by the
67 | ordinary GNU General Public License. This license, the GNU Lesser
68 | General Public License, applies to certain designated libraries, and
69 | is quite different from the ordinary General Public License. We use
70 | this license for certain libraries in order to permit linking those
71 | libraries into non-free programs.
72 |
73 | When a program is linked with a library, whether statically or using
74 | a shared library, the combination of the two is legally speaking a
75 | combined work, a derivative of the original library. The ordinary
76 | General Public License therefore permits such linking only if the
77 | entire combination fits its criteria of freedom. The Lesser General
78 | Public License permits more lax criteria for linking other code with
79 | the library.
80 |
81 | We call this license the "Lesser" General Public License because it
82 | does Less to protect the user's freedom than the ordinary General
83 | Public License. It also provides other free software developers Less
84 | of an advantage over competing non-free programs. These disadvantages
85 | are the reason we use the ordinary General Public License for many
86 | libraries. However, the Lesser license provides advantages in certain
87 | special circumstances.
88 |
89 | For example, on rare occasions, there may be a special need to
90 | encourage the widest possible use of a certain library, so that it becomes
91 | a de-facto standard. To achieve this, non-free programs must be
92 | allowed to use the library. A more frequent case is that a free
93 | library does the same job as widely used non-free libraries. In this
94 | case, there is little to gain by limiting the free library to free
95 | software only, so we use the Lesser General Public License.
96 |
97 | In other cases, permission to use a particular library in non-free
98 | programs enables a greater number of people to use a large body of
99 | free software. For example, permission to use the GNU C Library in
100 | non-free programs enables many more people to use the whole GNU
101 | operating system, as well as its variant, the GNU/Linux operating
102 | system.
103 |
104 | Although the Lesser General Public License is Less protective of the
105 | users' freedom, it does ensure that the user of a program that is
106 | linked with the Library has the freedom and the wherewithal to run
107 | that program using a modified version of the Library.
108 |
109 | The precise terms and conditions for copying, distribution and
110 | modification follow. Pay close attention to the difference between a
111 | "work based on the library" and a "work that uses the library". The
112 | former contains code derived from the library, whereas the latter must
113 | be combined with the library in order to run.
114 |
115 | GNU LESSER GENERAL PUBLIC LICENSE
116 | TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
117 |
118 | 0. This License Agreement applies to any software library or other
119 | program which contains a notice placed by the copyright holder or
120 | other authorized party saying it may be distributed under the terms of
121 | this Lesser General Public License (also called "this License").
122 | Each licensee is addressed as "you".
123 |
124 | A "library" means a collection of software functions and/or data
125 | prepared so as to be conveniently linked with application programs
126 | (which use some of those functions and data) to form executables.
127 |
128 | The "Library", below, refers to any such software library or work
129 | which has been distributed under these terms. A "work based on the
130 | Library" means either the Library or any derivative work under
131 | copyright law: that is to say, a work containing the Library or a
132 | portion of it, either verbatim or with modifications and/or translated
133 | straightforwardly into another language. (Hereinafter, translation is
134 | included without limitation in the term "modification".)
135 |
136 | "Source code" for a work means the preferred form of the work for
137 | making modifications to it. For a library, complete source code means
138 | all the source code for all modules it contains, plus any associated
139 | interface definition files, plus the scripts used to control compilation
140 | and installation of the library.
141 |
142 | Activities other than copying, distribution and modification are not
143 | covered by this License; they are outside its scope. The act of
144 | running a program using the Library is not restricted, and output from
145 | such a program is covered only if its contents constitute a work based
146 | on the Library (independent of the use of the Library in a tool for
147 | writing it). Whether that is true depends on what the Library does
148 | and what the program that uses the Library does.
149 |
150 | 1. You may copy and distribute verbatim copies of the Library's
151 | complete source code as you receive it, in any medium, provided that
152 | you conspicuously and appropriately publish on each copy an
153 | appropriate copyright notice and disclaimer of warranty; keep intact
154 | all the notices that refer to this License and to the absence of any
155 | warranty; and distribute a copy of this License along with the
156 | Library.
157 |
158 | You may charge a fee for the physical act of transferring a copy,
159 | and you may at your option offer warranty protection in exchange for a
160 | fee.
161 |
162 | 2. You may modify your copy or copies of the Library or any portion
163 | of it, thus forming a work based on the Library, and copy and
164 | distribute such modifications or work under the terms of Section 1
165 | above, provided that you also meet all of these conditions:
166 |
167 | a) The modified work must itself be a software library.
168 |
169 | b) You must cause the files modified to carry prominent notices
170 | stating that you changed the files and the date of any change.
171 |
172 | c) You must cause the whole of the work to be licensed at no
173 | charge to all third parties under the terms of this License.
174 |
175 | d) If a facility in the modified Library refers to a function or a
176 | table of data to be supplied by an application program that uses
177 | the facility, other than as an argument passed when the facility
178 | is invoked, then you must make a good faith effort to ensure that,
179 | in the event an application does not supply such function or
180 | table, the facility still operates, and performs whatever part of
181 | its purpose remains meaningful.
182 |
183 | (For example, a function in a library to compute square roots has
184 | a purpose that is entirely well-defined independent of the
185 | application. Therefore, Subsection 2d requires that any
186 | application-supplied function or table used by this function must
187 | be optional: if the application does not supply it, the square
188 | root function must still compute square roots.)
189 |
190 | These requirements apply to the modified work as a whole. If
191 | identifiable sections of that work are not derived from the Library,
192 | and can be reasonably considered independent and separate works in
193 | themselves, then this License, and its terms, do not apply to those
194 | sections when you distribute them as separate works. But when you
195 | distribute the same sections as part of a whole which is a work based
196 | on the Library, the distribution of the whole must be on the terms of
197 | this License, whose permissions for other licensees extend to the
198 | entire whole, and thus to each and every part regardless of who wrote
199 | it.
200 |
201 | Thus, it is not the intent of this section to claim rights or contest
202 | your rights to work written entirely by you; rather, the intent is to
203 | exercise the right to control the distribution of derivative or
204 | collective works based on the Library.
205 |
206 | In addition, mere aggregation of another work not based on the Library
207 | with the Library (or with a work based on the Library) on a volume of
208 | a storage or distribution medium does not bring the other work under
209 | the scope of this License.
210 |
211 | 3. You may opt to apply the terms of the ordinary GNU General Public
212 | License instead of this License to a given copy of the Library. To do
213 | this, you must alter all the notices that refer to this License, so
214 | that they refer to the ordinary GNU General Public License, version 2,
215 | instead of to this License. (If a newer version than version 2 of the
216 | ordinary GNU General Public License has appeared, then you can specify
217 | that version instead if you wish.) Do not make any other change in
218 | these notices.
219 |
220 | Once this change is made in a given copy, it is irreversible for
221 | that copy, so the ordinary GNU General Public License applies to all
222 | subsequent copies and derivative works made from that copy.
223 |
224 | This option is useful when you wish to copy part of the code of
225 | the Library into a program that is not a library.
226 |
227 | 4. You may copy and distribute the Library (or a portion or
228 | derivative of it, under Section 2) in object code or executable form
229 | under the terms of Sections 1 and 2 above provided that you accompany
230 | it with the complete corresponding machine-readable source code, which
231 | must be distributed under the terms of Sections 1 and 2 above on a
232 | medium customarily used for software interchange.
233 |
234 | If distribution of object code is made by offering access to copy
235 | from a designated place, then offering equivalent access to copy the
236 | source code from the same place satisfies the requirement to
237 | distribute the source code, even though third parties are not
238 | compelled to copy the source along with the object code.
239 |
240 | 5. A program that contains no derivative of any portion of the
241 | Library, but is designed to work with the Library by being compiled or
242 | linked with it, is called a "work that uses the Library". Such a
243 | work, in isolation, is not a derivative work of the Library, and
244 | therefore falls outside the scope of this License.
245 |
246 | However, linking a "work that uses the Library" with the Library
247 | creates an executable that is a derivative of the Library (because it
248 | contains portions of the Library), rather than a "work that uses the
249 | library". The executable is therefore covered by this License.
250 | Section 6 states terms for distribution of such executables.
251 |
252 | When a "work that uses the Library" uses material from a header file
253 | that is part of the Library, the object code for the work may be a
254 | derivative work of the Library even though the source code is not.
255 | Whether this is true is especially significant if the work can be
256 | linked without the Library, or if the work is itself a library. The
257 | threshold for this to be true is not precisely defined by law.
258 |
259 | If such an object file uses only numerical parameters, data
260 | structure layouts and accessors, and small macros and small inline
261 | functions (ten lines or less in length), then the use of the object
262 | file is unrestricted, regardless of whether it is legally a derivative
263 | work. (Executables containing this object code plus portions of the
264 | Library will still fall under Section 6.)
265 |
266 | Otherwise, if the work is a derivative of the Library, you may
267 | distribute the object code for the work under the terms of Section 6.
268 | Any executables containing that work also fall under Section 6,
269 | whether or not they are linked directly with the Library itself.
270 |
271 | 6. As an exception to the Sections above, you may also combine or
272 | link a "work that uses the Library" with the Library to produce a
273 | work containing portions of the Library, and distribute that work
274 | under terms of your choice, provided that the terms permit
275 | modification of the work for the customer's own use and reverse
276 | engineering for debugging such modifications.
277 |
278 | You must give prominent notice with each copy of the work that the
279 | Library is used in it and that the Library and its use are covered by
280 | this License. You must supply a copy of this License. If the work
281 | during execution displays copyright notices, you must include the
282 | copyright notice for the Library among them, as well as a reference
283 | directing the user to the copy of this License. Also, you must do one
284 | of these things:
285 |
286 | a) Accompany the work with the complete corresponding
287 | machine-readable source code for the Library including whatever
288 | changes were used in the work (which must be distributed under
289 | Sections 1 and 2 above); and, if the work is an executable linked
290 | with the Library, with the complete machine-readable "work that
291 | uses the Library", as object code and/or source code, so that the
292 | user can modify the Library and then relink to produce a modified
293 | executable containing the modified Library. (It is understood
294 | that the user who changes the contents of definitions files in the
295 | Library will not necessarily be able to recompile the application
296 | to use the modified definitions.)
297 |
298 | b) Use a suitable shared library mechanism for linking with the
299 | Library. A suitable mechanism is one that (1) uses at run time a
300 | copy of the library already present on the user's computer system,
301 | rather than copying library functions into the executable, and (2)
302 | will operate properly with a modified version of the library, if
303 | the user installs one, as long as the modified version is
304 | interface-compatible with the version that the work was made with.
305 |
306 | c) Accompany the work with a written offer, valid for at
307 | least three years, to give the same user the materials
308 | specified in Subsection 6a, above, for a charge no more
309 | than the cost of performing this distribution.
310 |
311 | d) If distribution of the work is made by offering access to copy
312 | from a designated place, offer equivalent access to copy the above
313 | specified materials from the same place.
314 |
315 | e) Verify that the user has already received a copy of these
316 | materials or that you have already sent this user a copy.
317 |
318 | For an executable, the required form of the "work that uses the
319 | Library" must include any data and utility programs needed for
320 | reproducing the executable from it. However, as a special exception,
321 | the materials to be distributed need not include anything that is
322 | normally distributed (in either source or binary form) with the major
323 | components (compiler, kernel, and so on) of the operating system on
324 | which the executable runs, unless that component itself accompanies
325 | the executable.
326 |
327 | It may happen that this requirement contradicts the license
328 | restrictions of other proprietary libraries that do not normally
329 | accompany the operating system. Such a contradiction means you cannot
330 | use both them and the Library together in an executable that you
331 | distribute.
332 |
333 | 7. You may place library facilities that are a work based on the
334 | Library side-by-side in a single library together with other library
335 | facilities not covered by this License, and distribute such a combined
336 | library, provided that the separate distribution of the work based on
337 | the Library and of the other library facilities is otherwise
338 | permitted, and provided that you do these two things:
339 |
340 | a) Accompany the combined library with a copy of the same work
341 | based on the Library, uncombined with any other library
342 | facilities. This must be distributed under the terms of the
343 | Sections above.
344 |
345 | b) Give prominent notice with the combined library of the fact
346 | that part of it is a work based on the Library, and explaining
347 | where to find the accompanying uncombined form of the same work.
348 |
349 | 8. You may not copy, modify, sublicense, link with, or distribute
350 | the Library except as expressly provided under this License. Any
351 | attempt otherwise to copy, modify, sublicense, link with, or
352 | distribute the Library is void, and will automatically terminate your
353 | rights under this License. However, parties who have received copies,
354 | or rights, from you under this License will not have their licenses
355 | terminated so long as such parties remain in full compliance.
356 |
357 | 9. You are not required to accept this License, since you have not
358 | signed it. However, nothing else grants you permission to modify or
359 | distribute the Library or its derivative works. These actions are
360 | prohibited by law if you do not accept this License. Therefore, by
361 | modifying or distributing the Library (or any work based on the
362 | Library), you indicate your acceptance of this License to do so, and
363 | all its terms and conditions for copying, distributing or modifying
364 | the Library or works based on it.
365 |
366 | 10. Each time you redistribute the Library (or any work based on the
367 | Library), the recipient automatically receives a license from the
368 | original licensor to copy, distribute, link with or modify the Library
369 | subject to these terms and conditions. You may not impose any further
370 | restrictions on the recipients' exercise of the rights granted herein.
371 | You are not responsible for enforcing compliance by third parties with
372 | this License.
373 |
374 | 11. If, as a consequence of a court judgment or allegation of patent
375 | infringement or for any other reason (not limited to patent issues),
376 | conditions are imposed on you (whether by court order, agreement or
377 | otherwise) that contradict the conditions of this License, they do not
378 | excuse you from the conditions of this License. If you cannot
379 | distribute so as to satisfy simultaneously your obligations under this
380 | License and any other pertinent obligations, then as a consequence you
381 | may not distribute the Library at all. For example, if a patent
382 | license would not permit royalty-free redistribution of the Library by
383 | all those who receive copies directly or indirectly through you, then
384 | the only way you could satisfy both it and this License would be to
385 | refrain entirely from distribution of the Library.
386 |
387 | If any portion of this section is held invalid or unenforceable under any
388 | particular circumstance, the balance of the section is intended to apply,
389 | and the section as a whole is intended to apply in other circumstances.
390 |
391 | It is not the purpose of this section to induce you to infringe any
392 | patents or other property right claims or to contest validity of any
393 | such claims; this section has the sole purpose of protecting the
394 | integrity of the free software distribution system which is
395 | implemented by public license practices. Many people have made
396 | generous contributions to the wide range of software distributed
397 | through that system in reliance on consistent application of that
398 | system; it is up to the author/donor to decide if he or she is willing
399 | to distribute software through any other system and a licensee cannot
400 | impose that choice.
401 |
402 | This section is intended to make thoroughly clear what is believed to
403 | be a consequence of the rest of this License.
404 |
405 | 12. If the distribution and/or use of the Library is restricted in
406 | certain countries either by patents or by copyrighted interfaces, the
407 | original copyright holder who places the Library under this License may add
408 | an explicit geographical distribution limitation excluding those countries,
409 | so that distribution is permitted only in or among countries not thus
410 | excluded. In such case, this License incorporates the limitation as if
411 | written in the body of this License.
412 |
413 | 13. The Free Software Foundation may publish revised and/or new
414 | versions of the Lesser General Public License from time to time.
415 | Such new versions will be similar in spirit to the present version,
416 | but may differ in detail to address new problems or concerns.
417 |
418 | Each version is given a distinguishing version number. If the Library
419 | specifies a version number of this License which applies to it and
420 | "any later version", you have the option of following the terms and
421 | conditions either of that version or of any later version published by
422 | the Free Software Foundation. If the Library does not specify a
423 | license version number, you may choose any version ever published by
424 | the Free Software Foundation.
425 |
426 | 14. If you wish to incorporate parts of the Library into other free
427 | programs whose distribution conditions are incompatible with these,
428 | write to the author to ask for permission. For software which is
429 | copyrighted by
--------------------------------------------------------------------------------
/README.markdown:
--------------------------------------------------------------------------------
1 | ## Welcome to Simple RSS
2 |
3 | Simple RSS is a simple, flexible, extensible, and liberal RSS and Atom reader
4 | for Ruby. It is designed to be backwards compatible with the standard RSS
5 | parser, but will never do RSS generation.
6 |
7 | ## Download
8 |
9 | * gem install simple-rss
10 | * https://github.com/cardmagic/simple-rss
11 | * git clone git@github.com:cardmagic/simple-rss.git
12 |
13 | ### Usage
14 | The API is similar to Ruby's standard RSS parser:
15 |
16 | require 'rubygems'
17 | require 'simple-rss'
18 | require 'open-uri'
19 |
20 | rss = SimpleRSS.parse open('http://slashdot.org/index.rdf')
21 |
22 | rss.channel.title # => "Slashdot"
23 | rss.channel.link # => "http://slashdot.org/"
24 | rss.items.first.link # => "http://books.slashdot.org/article.pl?sid=05/08/29/1319236&from=rss"
25 |
26 | But since the parser can read Atom feeds as easily as RSS feeds, there are optional aliases that allow more atom like reading:
27 |
28 | rss.feed.title # => "Slashdot"
29 | rss.feed.link # => "http://slashdot.org/"
30 | rss.entries.first.link # => "http://books.slashdot.org/article.pl?sid=05/08/29/1319236&from=rss"
31 |
32 | The parser does not care about the correctness of the XML as it does not use an XML library to read the information. Thus it is flexible and allows for easy extending via:
33 |
34 | SimpleRSS.feed_tags << :some_new_tag
35 | SimpleRSS.item_tags << :"item+myrel" # this will extend SimpleRSS to be able to parse RSS items or ATOM entries that have a rel specified, common in many blogger feeds
36 | SimpleRSS.item_tags << :"feedburner:origLink" # this will extend SimpleRSS to be able to parse RSS items or ATOM entries that have a specific pre-tag specified, common in many feedburner feeds
37 | SimpleRSS.item_tags << :"media:content#url" # this will grab the url attribute of the media:content tag
38 |
39 | ## Authors
40 |
41 | * Lucas Carlson (mailto:lucas@rufy.com)
42 | * Herval Freire (mailto:hervalfreire@gmail.com)
43 |
44 | Inspired by [Blagg](http://www.raelity.org/lang/perl/blagg) from Rael Dornfest.
45 |
46 | This library is released under the terms of the GNU LGPL.
47 |
48 |
--------------------------------------------------------------------------------
/Rakefile:
--------------------------------------------------------------------------------
1 | require "rubygems"
2 | require "bundler/setup"
3 | require "rake"
4 | require "rake/testtask"
5 | require "rdoc/task"
6 | require "rubygems/package_task"
7 | require "./lib/simple-rss"
8 |
9 | PKG_VERSION = SimpleRSS::VERSION
10 | PKG_NAME = "simple-rss".freeze
11 | PKG_FILE_NAME = "#{PKG_NAME}-#{PKG_VERSION}".freeze
12 | RUBY_FORGE_PROJECT = "simple-rss".freeze
13 | RUBY_FORGE_USER = ENV["RUBY_FORGE_USER"] || "cardmagic"
14 | RELEASE_NAME = "#{PKG_NAME}-#{PKG_VERSION}".freeze
15 |
16 | PKG_FILES = FileList[
17 | "lib/*", "bin/*", "test/**/*", "[A-Z]*", "Rakefile", "html/**/*"
18 | ]
19 |
20 | desc "Default Task"
21 | task default: [:test]
22 |
23 | # Run the unit tests
24 | desc "Run all unit tests"
25 | Rake::TestTask.new("test") do |t|
26 | t.libs << %w[lib test]
27 | t.pattern = "test/*/*_test.rb"
28 | t.verbose = true
29 | end
30 |
31 | # Make a console, useful when working on tests
32 | desc "Generate a test console"
33 | task :console do
34 | verbose(false) { sh "irb -I lib/ -r 'simple-rss'" }
35 | end
36 |
37 | # Genereate the RDoc documentation
38 | desc "Create documentation"
39 | Rake::RDocTask.new("doc") do |rdoc|
40 | rdoc.title = "Simple RSS - A Flexible RSS and Atom reader for Ruby"
41 | rdoc.rdoc_dir = "html"
42 | rdoc.rdoc_files.include("README.markdown")
43 | rdoc.rdoc_files.include("lib/*.rb")
44 | end
45 |
46 | # Genereate the package
47 | spec = Gem::Specification.new do |s|
48 | #### Basic information.
49 |
50 | s.name = "simple-rss"
51 | s.version = PKG_VERSION
52 | s.summary = <<-EOF
53 | A simple, flexible, extensible, and liberal RSS and Atom reader for Ruby. It is designed to be backwards compatible with the standard RSS parser, but will never do RSS generation.
54 | EOF
55 | s.description = <<-EOF
56 | A simple, flexible, extensible, and liberal RSS and Atom reader for Ruby. It is designed to be backwards compatible with the standard RSS parser, but will never do RSS generation.
57 | EOF
58 |
59 | #### Which files are to be included in this gem? Everything! (Except CVS directories.)
60 |
61 | s.files = PKG_FILES
62 |
63 | #### Load-time details: library and application (you will need one or both).
64 |
65 | s.require_path = "lib"
66 |
67 | #### Author and project details.
68 |
69 | s.author = "Lucas Carlson"
70 | s.email = "lucas@rufy.com"
71 | s.homepage = "https://github.com/cardmagic/simple-rss"
72 | end
73 |
74 | Gem::PackageTask.new(spec) do |pkg|
75 | pkg.need_zip = true
76 | pkg.need_tar = true
77 | end
78 |
79 | desc "Report code statistics (KLOCs, etc) from the application"
80 | task :stats do
81 | require "code_statistics"
82 | CodeStatistics.new(
83 | %w[Library lib],
84 | %w[Units test]
85 | ).to_s
86 | end
87 |
88 | desc "Publish new documentation"
89 | task :publish do
90 | Rake::RubyForgePublisher.new("simple-rss", "cardmagic").upload
91 | end
92 |
93 | desc "Publish the release files to RubyForge."
94 | task upload: [:package] do
95 | files = ["gem", "tar.gz", "zip"].map { |ext| "pkg/#{PKG_FILE_NAME}.#{ext}" }
96 |
97 | if RUBY_FORGE_PROJECT
98 | require "net/http"
99 | require "open-uri"
100 |
101 | project_uri = "http://rubyforge.org/projects/#{RUBY_FORGE_PROJECT}/"
102 | project_data = open(project_uri, &:read)
103 | group_id = project_data[/[?&]group_id=(\d+)/, 1]
104 | raise "Couldn't get group id" unless group_id
105 |
106 | # This echos password to shell which is a bit sucky
107 | if ENV["RUBY_FORGE_PASSWORD"]
108 | password = ENV["RUBY_FORGE_PASSWORD"]
109 | else
110 | print "#{RUBY_FORGE_USER}@rubyforge.org's password: "
111 | password = STDIN.gets.chomp
112 | end
113 |
114 | login_response = Net::HTTP.start("rubyforge.org", 80) do |http|
115 | data = [
116 | "login=1",
117 | "form_loginname=#{RUBY_FORGE_USER}",
118 | "form_pw=#{password}"
119 | ].join("&")
120 | http.post("/account/login.php", data)
121 | end
122 |
123 | cookie = login_response["set-cookie"]
124 | raise "Login failed" unless cookie
125 | headers = { "Cookie" => cookie }
126 |
127 | release_uri = "http://rubyforge.org/frs/admin/?group_id=#{group_id}"
128 | release_data = open(release_uri, headers, &:read)
129 | package_id = release_data[/[?&]package_id=(\d+)/, 1]
130 | raise "Couldn't get package id" unless package_id
131 |
132 | first_file = true
133 | release_id = ""
134 |
135 | files.each do |filename|
136 | basename = File.basename(filename)
137 | file_ext = File.extname(filename)
138 | file_data = File.open(filename, "rb", &:read)
139 |
140 | puts "Releasing #{basename}..."
141 |
142 | release_response = Net::HTTP.start("rubyforge.org", 80) do |http|
143 | release_date = Time.now.strftime("%Y-%m-%d %H:%M")
144 | type_map = {
145 | ".zip" => "3000",
146 | ".tgz" => "3110",
147 | ".gz" => "3110",
148 | ".gem" => "1400"
149 | }; type_map.default = "9999"
150 | type = type_map[file_ext]
151 | boundary = "rubyqMY6QN9bp6e4kS21H4y0zxcvoor"
152 |
153 | query_hash = if first_file
154 | {
155 | "group_id" => group_id,
156 | "package_id" => package_id,
157 | "release_name" => RELEASE_NAME,
158 | "release_date" => release_date,
159 | "type_id" => type,
160 | "processor_id" => "8000", # Any
161 | "release_notes" => "",
162 | "release_changes" => "",
163 | "preformatted" => "1",
164 | "submit" => "1"
165 | }
166 | else
167 | {
168 | "group_id" => group_id,
169 | "release_id" => release_id,
170 | "package_id" => package_id,
171 | "step2" => "1",
172 | "type_id" => type,
173 | "processor_id" => "8000", # Any
174 | "submit" => "Add This File"
175 | }
176 | end
177 |
178 | query = "?" + query_hash.map do |(name, value)|
179 | [name, URI.encode(value)].join("=")
180 | end.join("&")
181 |
182 | data = [
183 | "--" + boundary,
184 | "Content-Disposition: form-data; name=\"userfile\"; filename=\"#{basename}\"",
185 | "Content-Type: application/octet-stream",
186 | "Content-Transfer-Encoding: binary",
187 | "", file_data, ""
188 | ].join("\x0D\x0A")
189 |
190 | release_headers = headers.merge(
191 | "Content-Type" => "multipart/form-data; boundary=#{boundary}"
192 | )
193 |
194 | target = first_file ? "/frs/admin/qrs.php" : "/frs/admin/editrelease.php"
195 | http.post(target + query, data, release_headers)
196 | end
197 |
198 | if first_file
199 | release_id = release_response.body[/release_id=(\d+)/, 1]
200 | raise("Couldn't get release id") unless release_id
201 | end
202 |
203 | first_file = false
204 | end
205 | end
206 | end
207 |
--------------------------------------------------------------------------------
/install.rb:
--------------------------------------------------------------------------------
1 | require "rbconfig"
2 | require "find"
3 | require "ftools"
4 |
5 | include Config
6 |
7 | # this was adapted from rdoc's install.rb by ways of Log4r
8 |
9 | $sitedir = CONFIG["sitelibdir"]
10 | unless $sitedir
11 | version = CONFIG["MAJOR"] + "." + CONFIG["MINOR"]
12 | $libdir = File.join(CONFIG["libdir"], "ruby", version)
13 | $sitedir = $LOAD_PATH.find { |x| x =~ /site_ruby/ }
14 | if !$sitedir
15 | $sitedir = File.join($libdir, "site_ruby")
16 | elsif $sitedir !~ Regexp.quote(version)
17 | $sitedir = File.join($sitedir, version)
18 | end
19 | end
20 |
21 | makedirs = %w[shipping]
22 | makedirs.each { |f| File.makedirs(File.join($sitedir, *f.split(/\//))) }
23 |
24 | Dir.chdir("lib")
25 | begin
26 | require "rubygems"
27 | require "rake"
28 | rescue LoadError
29 | puts
30 | puts "Please install Gem and Rake from http://rubyforge.org/projects/rubygems and http://rubyforge.org/projects/rake"
31 | puts
32 | exit(-1)
33 | end
34 |
35 | files = FileList["**/*"]
36 |
37 | # File::safe_unlink *deprecated.collect{|f| File.join($sitedir, f.split(/\//))}
38 | files.each do |f|
39 | File.install(f, File.join($sitedir, *f.split(/\//)), 0o644, true)
40 | end
41 |
--------------------------------------------------------------------------------
/lib/simple-rss.rb:
--------------------------------------------------------------------------------
1 | require "cgi"
2 | require "time"
3 |
4 | class SimpleRSS
5 | VERSION = "1.3.3".freeze
6 |
7 | attr_reader :items, :source
8 | alias entries items
9 |
10 | @@feed_tags = %i[
11 | id
12 | title subtitle link
13 | description
14 | author webMaster managingEditor contributor
15 | pubDate lastBuildDate updated dc:date
16 | generator language docs cloud
17 | ttl skipHours skipDays
18 | image logo icon rating
19 | rights copyright
20 | textInput feedburner:browserFriendly
21 | itunes:author itunes:category
22 | ]
23 |
24 | @@item_tags = %i[
25 | id
26 | title link link+alternate link+self link+edit link+replies
27 | author contributor
28 | description summary content content:encoded comments
29 | pubDate published updated expirationDate modified dc:date
30 | category guid
31 | trackback:ping trackback:about
32 | dc:creator dc:title dc:subject dc:rights dc:publisher
33 | feedburner:origLink
34 | media:content#url media:content#type media:content#height media:content#width media:content#duration
35 | media:title media:thumbnail#url media:thumbnail#height media:thumbnail#width
36 | media:credit media:credit#role
37 | media:category media:category#scheme
38 | ]
39 |
40 | def initialize(source, options={})
41 | @source = source.respond_to?(:read) ? source.read : source.to_s
42 | @items = []
43 | @options = {}.update(options)
44 |
45 | parse
46 | end
47 |
48 | def channel
49 | self
50 | end
51 | alias feed channel
52 |
53 | class << self
54 | def feed_tags
55 | @@feed_tags
56 | end
57 |
58 | def feed_tags=(ft)
59 | @@feed_tags = ft
60 | end
61 |
62 | def item_tags
63 | @@item_tags
64 | end
65 |
66 | def item_tags=(it)
67 | @@item_tags = it
68 | end
69 |
70 | # The strict attribute is for compatibility with Ruby's standard RSS parser
71 | def parse(source, options={})
72 | new source, options
73 | end
74 | end
75 |
76 | private
77 |
78 | def parse
79 | raise SimpleRSSError, "Poorly formatted feed" unless @source =~ %r{<(channel|feed).*?>.*?(channel|feed)>}mi
80 |
81 | # Feed's title and link
82 | feed_content = Regexp.last_match(1) if @source =~ %r{(.*?)<(rss:|atom:)?(item|entry).*?>.*?(rss:|atom:)?(item|entry)>}mi
83 |
84 | @@feed_tags.each do |tag|
85 | if feed_content && feed_content =~ %r{<(rss:|atom:)?#{tag}(.*?)>(.*?)(rss:|atom:)?#{tag}>}mi
86 | nil
87 | elsif feed_content && feed_content =~ %r{<(rss:|atom:)?#{tag}(.*?)\/\s*>}mi
88 | nil
89 | elsif @source =~ %r{<(rss:|atom:)?#{tag}(.*?)>(.*?)(rss:|atom:)?#{tag}>}mi
90 | nil
91 | elsif @source =~ %r{<(rss:|atom:)?#{tag}(.*?)\/\s*>}mi
92 | nil
93 | end
94 |
95 | next unless Regexp.last_match(2) || Regexp.last_match(3)
96 | tag_cleaned = clean_tag(tag)
97 | instance_variable_set("@#{tag_cleaned}", clean_content(tag, Regexp.last_match(2), Regexp.last_match(3)))
98 | self.class.class_eval("attr_reader :#{tag_cleaned}")
99 | end
100 |
101 | # RSS items' title, link, and description
102 | @source.scan(%r{<(rss:|atom:)?(item|entry)([\s][^>]*)?>(.*?)(rss:|atom:)?(item|entry)>}mi) do |match|
103 | item = {}
104 | @@item_tags.each do |tag|
105 | if tag.to_s.include?("+")
106 | tag_data = tag.to_s.split("+")
107 | tag = tag_data[0]
108 | rel = tag_data[1]
109 | if match[3] =~ %r{<(rss:|atom:)?#{tag}(.*?)rel=['"]#{rel}['"](.*?)>(.*?)(rss:|atom:)?#{tag}>}mi
110 | nil
111 | elsif match[3] =~ %r{<(rss:|atom:)?#{tag}(.*?)rel=['"]#{rel}['"](.*?)/\s*>}mi
112 | nil
113 | end
114 | item[clean_tag("#{tag}+#{rel}")] = clean_content(tag, Regexp.last_match(3), Regexp.last_match(4)) if Regexp.last_match(3) || Regexp.last_match(4)
115 | elsif tag.to_s.include?("#")
116 | tag_data = tag.to_s.split("#")
117 | tag = tag_data[0]
118 | attrib = tag_data[1]
119 | if match[3] =~ %r{<(rss:|atom:)?#{tag}(.*?)#{attrib}=['"](.*?)['"](.*?)>(.*?)(rss:|atom:)?#{tag}>}mi
120 | nil
121 | elsif match[3] =~ %r{<(rss:|atom:)?#{tag}(.*?)#{attrib}=['"](.*?)['"](.*?)/\s*>}mi
122 | nil
123 | end
124 | item[clean_tag("#{tag}_#{attrib}")] = clean_content(tag, attrib, Regexp.last_match(3)) if Regexp.last_match(3)
125 | else
126 | if match[3] =~ %r{<(rss:|atom:)?#{tag}(.*?)>(.*?)(rss:|atom:)?#{tag}>}mi
127 | nil
128 | elsif match[3] =~ %r{<(rss:|atom:)?#{tag}(.*?)/\s*>}mi
129 | nil
130 | end
131 | item[clean_tag(tag)] = clean_content(tag, Regexp.last_match(2), Regexp.last_match(3)) if Regexp.last_match(2) || Regexp.last_match(3)
132 | end
133 | end
134 | def item.method_missing(name, *_args)
135 | self[name]
136 | end
137 | @items << item
138 | end
139 | end
140 |
141 | def clean_content(tag, attrs, content)
142 | content = content.to_s
143 | case tag
144 | when :pubDate, :lastBuildDate, :published, :updated, :expirationDate, :modified, :'dc:date'
145 | begin
146 | Time.parse(content)
147 | rescue StandardError
148 | unescape(content)
149 | end
150 | when :author, :contributor, :skipHours, :skipDays
151 | unescape(content.gsub(/<.*?>/, ""))
152 | else
153 | content.empty? && "#{attrs} " =~ /href=['"]?([^'"]*)['" ]/mi ? Regexp.last_match(1).strip : unescape(content)
154 | end
155 | end
156 |
157 | def clean_tag(tag)
158 | tag.to_s.tr(":", "_").intern
159 | end
160 |
161 | def unescape(content)
162 | if content =~ /([^-_.!~*'()a-zA-Z\d;\/?:@&=+$,\[\]]%)/
163 | CGI.unescape(content)
164 | else
165 | content
166 | end.gsub(/()/, "").strip
167 | end
168 | end
169 |
170 | class SimpleRSSError < StandardError
171 | end
172 |
--------------------------------------------------------------------------------
/simple-rss.gemspec:
--------------------------------------------------------------------------------
1 | Gem::Specification.new do |s|
2 | s.name = "simple-rss"
3 | s.version = "1.3.3"
4 | s.version = "#{s.version}-alpha-#{ENV['TRAVIS_BUILD_NUMBER']}" if ENV["TRAVIS"]
5 | s.date = "2015-08-17"
6 | s.summary = "A simple, flexible, extensible, and liberal RSS and Atom reader for Ruby. It is designed to be backwards compatible with the standard RSS parser, but will never do RSS generation."
7 | s.email = "lucas@rufy.com"
8 | s.homepage = "http://github.com/cardmagic/simple-rss"
9 | s.description = "A simple, flexible, extensible, and liberal RSS and Atom reader for Ruby. It is designed to be backwards compatible with the standard RSS parser, but will never do RSS generation."
10 | s.authors = ["Lucas Carlson"]
11 | s.files = ["install.rb", "lib", "lib/simple-rss.rb", "LICENSE", "Rakefile", "README.markdown", "simple-rss.gemspec", "test", "test/base", "test/base/base_test.rb", "test/data", "test/data/atom.xml", "test/data/not-rss.xml", "test/data/rss09.rdf", "test/data/rss20.xml", "test/test_helper.rb"]
12 | s.rubyforge_project = "simple-rss"
13 | s.add_development_dependency "rake"
14 | s.add_development_dependency "rdoc"
15 | s.add_development_dependency "test-unit"
16 | end
17 |
--------------------------------------------------------------------------------
/test/base/base_test.rb:
--------------------------------------------------------------------------------
1 | require "test_helper"
2 | class BaseTest < Test::Unit::TestCase
3 | def setup
4 | @rss09 = SimpleRSS.parse open(File.dirname(__FILE__) + "/../data/rss09.rdf")
5 | @rss20 = SimpleRSS.parse open(File.dirname(__FILE__) + "/../data/rss20.xml")
6 | @rss20_utf8 = SimpleRSS.parse open(File.dirname(__FILE__) + "/../data/rss20_utf8.xml")
7 | @media_rss = SimpleRSS.parse open(File.dirname(__FILE__) + "/../data/media_rss.xml")
8 | @atom = SimpleRSS.parse open(File.dirname(__FILE__) + "/../data/atom.xml")
9 | end
10 |
11 | def test_channel
12 | assert_equal @rss09, @rss09.channel
13 | assert_equal @rss20, @rss20.channel
14 | assert_equal @atom, @atom.feed
15 | end
16 |
17 | def test_items
18 | assert_kind_of Array, @rss09.items
19 | assert_kind_of Array, @rss20.items
20 | assert_kind_of Array, @atom.entries
21 | end
22 |
23 | def test_rss09
24 | assert_equal 10, @rss09.items.size
25 | assert_equal "Slashdot", @rss09.title
26 | assert_equal "http://slashdot.org/", @rss09.channel.link
27 | assert_equal "http://books.slashdot.org/article.pl?sid=05/08/29/1319236&from=rss", @rss09.items.first.link
28 | assert_equal "http://books.slashdot.org/article.pl?sid=05/08/29/1319236&from=rss", @rss09.items.first[:link]
29 | assert_equal Time.parse("Wed Aug 24 13:33:34 UTC 2005"), @rss20.items.first.pubDate
30 | assert_equal Time.parse("Fri Sep 09 02:52:31 PDT 2005"), @rss09.channel.dc_date
31 | end
32 |
33 | def test_media_rss
34 | assert_equal 20, @media_rss.items.size
35 | assert_equal "Uploads from herval", @media_rss.title
36 | assert_equal "http://www.flickr.com/photos/herval/", @media_rss.channel.link
37 | assert_equal "http://www.flickr.com/photos/herval/4671960608/", @media_rss.items.first.link
38 | assert_equal "http://www.flickr.com/photos/herval/4671960608/", @media_rss.items.first[:link]
39 | assert_equal "http://farm5.static.flickr.com/4040/4671960608_10cb945d5c_o.jpg", @media_rss.items.first.media_content_url
40 | assert_equal "image/jpeg", @media_rss.items.first.media_content_type
41 | assert_equal "3168", @media_rss.items.first.media_content_height
42 | assert_equal "4752", @media_rss.items.first.media_content_width
43 | assert_equal "Woof?", @media_rss.items.first.media_title
44 | assert_equal "http://farm5.static.flickr.com/4040/4671960608_954d2297bc_s.jpg", @media_rss.items.first.media_thumbnail_url
45 | assert_equal "75", @media_rss.items.first.media_thumbnail_height
46 | assert_equal "75", @media_rss.items.first.media_thumbnail_width
47 | assert_equal "herval", @media_rss.items.first.media_credit
48 | assert_equal "photographer", @media_rss.items.first.media_credit_role
49 | assert_equal "pets frodo", @media_rss.items.first.media_category
50 | assert_equal "urn:flickr:tags", @media_rss.items.first.media_category_scheme
51 | end
52 |
53 | def test_rss20
54 | assert_equal 10, @rss20.items.size
55 | assert_equal "Technoblog", @rss20.title
56 | assert_equal "http://tech.rufy.com", @rss20.channel.link
57 | assert_equal "http://feeds.feedburner.com/rufytech?m=68", @rss20.items.first.link
58 | assert_equal "http://feeds.feedburner.com/rufytech?m=68", @rss20.items.first[:link]
59 | assert_equal "This is an XML content feed. It is intended to be viewed in a newsreader or syndicated to another site.", @rss20.channel.feedburner_browserFriendly
60 | end
61 |
62 | def test_atom
63 | assert_equal 1, @atom.entries.size
64 | assert_equal "dive into mark", @atom.title
65 | assert_equal "http://example.org/", @atom.feed.link
66 | assert_equal "http://example.org/2005/04/02/atom", @atom.entries.first.link
67 | assert_equal "http://example.org/2005/04/02/atom", @atom.entries.first[:link]
68 | end
69 |
70 | def test_bad_feed
71 | assert_raise(SimpleRSSError) { SimpleRSS.parse(open(File.dirname(__FILE__) + "/../data/not-rss.xml")) }
72 | end
73 |
74 | def test_rss_utf8
75 | assert_equal 2, @rss20_utf8.items.size
76 | assert_equal "SC5 Blog", @rss20_utf8.title
77 | assert_equal Encoding::UTF_8, @rss20_utf8.title.encoding
78 | item = @rss20_utf8.items.first
79 | assert_equal "Mitä asiakkaamme ajattelevat meistä?", item.title
80 | assert_equal Encoding::UTF_8, item.title.encoding
81 | end
82 | end
83 |
--------------------------------------------------------------------------------
/test/data/atom.xml:
--------------------------------------------------------------------------------
1 |
2 | [Update: The Atom draft is finished.]
51 | x = s.startswith('Go')
52 | x = s.endswith('Go')
53 |
54 | So I made:
55 |
56 | class String
57 | def starts_with?(str)
58 | self.index( str ) == 0
59 | end
60 |
61 | def ends_with?(str)
62 | self.rindex( str ) == self.length - str.length
63 | end
64 | end
65 |
66 | So you can do this:
67 |
68 | some_string.starts_with? 'Foo' || some_string.ends_with? 'bar.'
69 |
70 |
71 |
109 | if some_object in [1, 2, 3]:
110 | do_something
111 |
112 | So I wrote this:
113 |
114 | class Object
115 | def in?(collection)
116 | collection.respond_to?(:include?) ? collection.include?(self) : false
117 | end
118 | end
119 |
120 | So you can now do:
121 |
122 | if some_object.in? [1, 2, 3]
123 | do_something
124 | end
125 |
126 |
127 | Background
142 |Paul Graham started a VC for mini startups called Y Combinator. They gave 9 groups $6,000-10,000 PER PERSON to work on any website they wanted for 3 months. My entry was Web Collaborator. During my summer, I created Print Promotion, worked on a top secret project with Adaptive Path that will soon change the way you feel about blogging, and am now working with O’Reilly on an amazingly innovative project. Quite productive for 3 months.
143 |Conclusion
144 |In that same time, 2 of the 9 groups (groups consisted of at least 2-3 people) came up with the following:
145 |What do they all have in common?
151 |What a waste of over $30,000 for the above web sites. Some of the sites made during the 24 hours of Rails Day were better than what these guys came up with. 24 HOURS! I am sorry Paul Graham and Co, but if this is what you have to show, I am totally unimpressed (though I still want the money to work on some ideas of mine :) ).
159 |As a friend pointed out, “the key criterion here seems to be ‘would be fun to code’, not ‘people will want to use’ or ‘will make money’”. Which is terribly ironic since Paul constantly harps on people to focus on the later. Another case of do what I say, not what I do.
160 |Update: Maybe 3 of 9 isn’t as big a sample as I thought. I just came across another one: ClickFacts. It seems that ClickFacts has attempted to assert itself as an expert on ad fraud. To me though, this seems like they were thinking “what would Google buy?”, which is better than the 3 mentioned above but to me it seems cheep and shallow. Just my impression.
161 |This account says that “at least half of the startups in the program are seriously cool” so maybe I have just seen the bad half. 162 |
163 | 164 |I was shot at OSCON. Thanks Duncan!
192 |
193 |
The room is packed with people even sitting on the floor to get a peak.
214 |Unlike many of the other talks, many people are taking pictures of this one… mainly of the audience. I guess they find it as interesting as I do that people are crawling over themselves to get to this talk.
215 |
268 |
269 | employees.each do |e|
270 | e.do_something
271 | end
272 |
273 | managers = employees.select {|e| e.manager?}
274 |
275 | offices = employees.collect {|e| e.office}
276 |
277 | sorted_employees = employees.sort_by {|e| e.lastname}
278 |
279 |
290 |
291 | def high_paid_employees(employees, limit)
292 | employees.collect{|e| e.salary > limit}
293 | end
294 |
295 |
300 |
301 | def stack_closure
302 | stack = []
303 | push = lambda {|x| stack.push(x)}
304 | pop = lambda {stack.pop}
305 | pop = lambda {stack[-1]}
306 | return push, pop, top
307 | end
308 |
309 | pusher, popper, topper = stack_closures()
310 | pusher.call(10)
311 | pusher.call(20)
312 | popper.call # => 20
313 | topper.call # => 10
314 |
315 |
327 |
328 | # C
329 |
330 | for (int i=0; i<3; i++) {
331 | do_something();
332 | }
333 |
334 | # Ruby
335 |
336 | 3.times do
337 | do_something
338 | end
339 |
340 |
346 |
347 | (setq new-list (mapcar (lambda (e) (do-process e)) list))
348 |
349 |
&
in the argument listeach
, upto
, downto
)Bad way:
373 |
374 |
375 | f = open(path)
376 | begin
377 | ... something with f ...
378 | ensure
379 | f.close
380 | end
381 |
382 |
Good way
384 |
385 |
386 | open(path) do |f|
387 | ... something with f ...
388 | end
389 |
390 |
Conditionals (select, detect, reject, collect, find_all, find, delete_if)
392 |
393 |
394 | result = []
395 | art.each do |x| if x%2 0; push x; end; end
396 | ary.collect{|x| x%2 0}
397 |
398 |
Callbacks
400 | Structure (like XML generation via builder)
401 | Enumarable
402 | ** require 'enumerator'; include Enumerable
to get several methods for free by defining the each method (18 methods including reject, select, max, etc. for free)
403 |
404 |
405 | ary = [4,2,1]
406 | ary.to_enum(:each_with_index).reject { |x,i| i%2==0 } # => [[4,0], [1,3]]
407 |
408 |
lambda
which is too long and clumbsy, being a unicode operator)Idea that failed: “Popular Power”
490 |Worked with Flickr, delious, odea, etc.
500 | Flickr
Bloglines
512 |37signals
519 |Odeo and Delicious
524 |Provisional Patent ~ $900
531 |I don’t think anyone would argue that the following languages couldn’t be used to scale a website since they have all been used in commercial web applications: C, C++, Java, PHP, Perl, Python, Lisp. If all of those languages have been used to build “scalable” websites, then why would anyone think that Ruby couldn’t scale? What would have to be so fundamentally wrong with Ruby that make people so hesitant? Is it because it is interpreted? So are PHP, Perl, and Python. Is it because there are no extremely high traffic sites built with Ruby to date? It was just the other day that no extremely high traffic sites were built in PHP or Python either.
642 |No, scalability is not about the language. To ask if a programming language can scale or not is equivalent to asking if a certain written language can be used to write an epic novel. Very very few mature modern languages can’t scale for web sites (I concede that BASIC might be one of them). Similar discussion has happened here.
643 |Scalability (with regard to web sites) is a set of design patterns and practices, a set of ideas used to implement robustness which include: statelessness, share-nothingness, and horizontal distribution. If you want to know whether a given website will scale to millions of users, check to see if it uses these foundations. Almost all the giant websites these days use these them: Google, Amazon, Ebay, Livejournal etc.
644 |Given this information, one might restate the vague and senseless question of “Does Ruby on Rails scale?” into more tangible questions:
645 |As soon as you ask this more refined subset of questions however, you quickly realize that you’ve been heading down the wrong path by asking if a web framework “scales”. These questions simply don’t have one clear answer. Is Rails stateless? You can make a Rails app statefull or stateless. Does Rails scale horizontally? You can make it scale horizontally if you know what you are doing.
652 |Realizing that the question was phrased incorrectly, let’s attempt it once again:
653 |The answer to all of these is a resounding no. Abstracting out the root of these questions, we finally arrive at a single question with a single answer:
660 |Question: Does anything in Rails prevent you from implementing the design patterns used to scale websites for many users?Answer: No.
661 |This is exactly what David Hansson means by saying it’s boring to scale with Ruby on Rails. This is also why I can’t imagine a test you can do against a framework to see if it can scale. You can’t do any test that looks for a positive outcome because the scalability of a website is highly dependent on how the site was implemented. You can however look for any roadblocks to the common design patterns, and approached this way you can even ask people familiar with the framework your questions and get back reasonable answers. 662 |
663 | 664 |
696 |
697 | def run(command, answer='')
698 | IO.popen('-', 'r+') do |io|
699 | if io.nil?
700 | Process.setsid
701 | exec command
702 | else
703 | io.puts answer
704 | return io.readlines
705 | end
706 | end
707 | end
708 |
709 |
Hope this helps anybody looking for the answer. An example of how to use this code:
711 |
712 |
714 | run('sudo whoami', user_password) # returns 'root'
713 |
Some ideas that would be great include adding continuations and being able to have a self-containted file (as in the example that follows) for those times when you really only want a couple controllers and a couple actions.
731 |
732 |
771 |
733 | (load 'lisp-on-rails')
734 |
735 | (model Person
736 | (has-many :employees)
737 | (belongs-to :company)
738 | )
739 |
740 | (model Teenager (Person)
741 | (has-many :skateboards)
742 | )
743 |
744 | (controller people
745 | (scaffold :people)
746 | )
747 |
748 | (controller foo
749 | (action bar
750 | (set 'person (Person find :first by :id (params :id)))
751 |
752 | (redirect-to :action you :id (person :name))
753 | )
754 |
755 | (action you
756 | (render :text (params :id))
757 | )
758 |
759 | (continuation registration
760 | (set 'person (Person new
761 | :name (get :name)
762 | :email (get :email))
763 | )
764 | (redirect-to :action bar :id (person :id))
765 | )
766 | )
767 |
768 | (start-server)
769 |
770 |
mysql -v :user foo :password bar :host rufy.com :port 3306796 |
For me, this is much easier to type than what I would currently need to do:
797 |mysql -v --user foo --password bar --host rufy.com --port 3306798 |
The difference between — and : is huge for me for two reasons:
799 |Plus, if everyone used colons like this it would be a lot easier to explain symbols in Ruby and Lisp to the uninitiated.
804 |I hate it that -pPassword specifies the password and -P 3306 specifies the port. I hate that -h specifies the host and –help calls help. I like flags without data (ps -aux for example). Flags with data are inconsistent, cumbersome and a steep learning curve for Unix beginners. I think they should be abolished. If flags with data were abolished, there would be no reason for -h to return anything but help, since if it wanted data you would use :h.
805 |Along with smart auto-completion that getopt_long() currently provides, you could do this:
806 |mysql -v :u foo :pa bar :h rufy.com :po 3306807 |
Which is a couple characters longer, yet light-years easier to explain and remember than the way you have to do it now:
808 |mysql -v -u foo -pbar -h rufy.com -P 3306809 |
Anyone know how I can alias a colon to work along side the double-dash in getopt_long()? 810 |
811 | 812 |The post Mitä asiakkaamme ajattelevat meistä? appeared first on SC5 Blog.
33 | ]]>The post Tribute to Jyväskylä, City of Lights appeared first on SC5 Blog.
56 | ]]>