hurricane 0.0.0

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.
@@ -0,0 +1,5 @@
1
+ README.rdoc
2
+ lib/**/*.rb
3
+ bin/*
4
+ features/**/*.feature
5
+ LICENSE
@@ -0,0 +1,21 @@
1
+ ## MAC OS
2
+ .DS_Store
3
+
4
+ ## TEXTMATE
5
+ *.tmproj
6
+ tmtags
7
+
8
+ ## EMACS
9
+ *~
10
+ \#*
11
+ .\#*
12
+
13
+ ## VIM
14
+ *.swp
15
+
16
+ ## PROJECT::GENERAL
17
+ coverage
18
+ rdoc
19
+ pkg
20
+
21
+ ## PROJECT::SPECIFIC
data/LICENSE ADDED
@@ -0,0 +1,20 @@
1
+ Copyright (c) 2009 Daniel Tamiosso
2
+
3
+ Permission is hereby granted, free of charge, to any person obtaining
4
+ a copy of this software and associated documentation files (the
5
+ "Software"), to deal in the Software without restriction, including
6
+ without limitation the rights to use, copy, modify, merge, publish,
7
+ distribute, sublicense, and/or sell copies of the Software, and to
8
+ permit persons to whom the Software is furnished to do so, subject to
9
+ the following conditions:
10
+
11
+ The above copyright notice and this permission notice shall be
12
+ included in all copies or substantial portions of the Software.
13
+
14
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
15
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
16
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
17
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
18
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
19
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
20
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
@@ -0,0 +1,21 @@
1
+ = Hurricane: a simple WordPress eXtended RSS file parser
2
+
3
+ Hurricane is a tiny tool to parser WordPress eXtended RSS file.
4
+
5
+ == Example
6
+
7
+ @blog = Hurricane.from(FILE)
8
+
9
+ == Features
10
+
11
+ Few (really!) features. Just what I needed until this moment:
12
+
13
+ * Blog title
14
+ * Blog link
15
+ * Blog description
16
+ * Blog creation date
17
+ * Blog categories
18
+ * Posts titles
19
+ * Posts links
20
+ * Posts creation dates
21
+ * Posts descriptions
@@ -0,0 +1,53 @@
1
+ require 'rubygems'
2
+ require 'rake'
3
+
4
+ begin
5
+ require 'jeweler'
6
+ Jeweler::Tasks.new do |gem|
7
+ gem.name = "hurricane"
8
+ gem.summary = "Hurricane is a tiny tool to parser WordPress eXtended RSS file."
9
+ gem.description = "Hurricane is a tiny tool to parser WordPress eXtended RSS file."
10
+ gem.email = "email@danieltamiosso.com"
11
+ gem.homepage = "http://github.com/danieltamiosso/hurricane"
12
+ gem.authors = ["Daniel Tamiosso"]
13
+ gem.add_development_dependency "bacon", ">= 0"
14
+ # gem is a Gem::Specification... see http://www.rubygems.org/read/chapter/20 for additional settings
15
+ end
16
+ Jeweler::GemcutterTasks.new
17
+ rescue LoadError
18
+ puts "Jeweler (or a dependency) not available. Install it with: gem install jeweler"
19
+ end
20
+
21
+ require 'rake/testtask'
22
+ Rake::TestTask.new(:spec) do |spec|
23
+ spec.libs << 'lib' << 'spec'
24
+ spec.pattern = 'spec/**/*_spec.rb'
25
+ spec.verbose = true
26
+ end
27
+
28
+ begin
29
+ require 'rcov/rcovtask'
30
+ Rcov::RcovTask.new do |spec|
31
+ spec.libs << 'spec'
32
+ spec.pattern = 'spec/**/*_spec.rb'
33
+ spec.verbose = true
34
+ end
35
+ rescue LoadError
36
+ task :rcov do
37
+ abort "RCov is not available. In order to run rcov, you must: sudo gem install spicycode-rcov"
38
+ end
39
+ end
40
+
41
+ task :spec => :check_dependencies
42
+
43
+ task :default => :spec
44
+
45
+ require 'rake/rdoctask'
46
+ Rake::RDocTask.new do |rdoc|
47
+ version = File.exist?('VERSION') ? File.read('VERSION') : ""
48
+
49
+ rdoc.rdoc_dir = 'rdoc'
50
+ rdoc.title = "hurricane #{version}"
51
+ rdoc.rdoc_files.include('README*')
52
+ rdoc.rdoc_files.include('lib/**/*.rb')
53
+ end
data/VERSION ADDED
@@ -0,0 +1 @@
1
+ 0.0.0
@@ -0,0 +1,41 @@
1
+ require 'hpricot'
2
+
3
+ class Hurricane
4
+ def self.from(file)
5
+ blog = Blog.new
6
+ doc = Hpricot::XML(file)
7
+ (doc/:channel).each do |info|
8
+ blog.title = (info/:title)[0].inner_html
9
+ blog.description = (info/:description).inner_html
10
+ blog.link = (info/:link)[0].inner_html
11
+ blog.created_at = (info/'pubDate')[0].inner_html
12
+
13
+ (info/'wp:category'/'wp:category_nicename').each do |category|
14
+ blog.categories << category.inner_html
15
+ end
16
+
17
+ (info/:item).each do |item|
18
+ post = Post.new
19
+ post.title = (item/:title).inner_html
20
+ post.link = (item/:link).inner_html
21
+ post.created_at = (item/'pubDate').inner_html
22
+ post.description = (item/'content:encoded').inner_html.gsub('<![CDATA[', '').gsub(']]>', '')
23
+ blog.posts << post
24
+ end
25
+
26
+ end
27
+ blog
28
+ end
29
+ end
30
+
31
+ class Blog
32
+ def initialize
33
+ @categories = Array.new
34
+ @posts = Array.new
35
+ end
36
+ attr_accessor :title, :link, :description, :created_at, :categories, :posts
37
+ end
38
+
39
+ class Post
40
+ attr_accessor :title, :link, :created_at, :description
41
+ end
@@ -0,0 +1,51 @@
1
+ require 'spec_helper'
2
+
3
+ describe 'Hurricane' do
4
+
5
+ FILE = File.open('./wordpress.2010-07-12.xml', 'r')
6
+ @blog = Hurricane.from(FILE)
7
+
8
+ it 'should be offer blog title' do
9
+ @blog.title.should.equal 'Daniel Tamiosso'
10
+ end
11
+
12
+ it 'should be offer blog link' do
13
+ @blog.link.should.equal 'http://danieltamiosso.com'
14
+ end
15
+
16
+ it 'should be offer blog description' do
17
+ @blog.description.should.equal 'Only me'
18
+ end
19
+
20
+ it 'should be offer blog created date' do
21
+ @blog.created_at.should.equal 'Wed, 15 Jul 2009 23:32:34 +0000'
22
+ end
23
+
24
+ it 'should be offer blog categories' do
25
+ @blog.categories.should.include? 'agil'
26
+ @blog.categories.should.include? 'boas-praticas'
27
+ @blog.categories.should.include? 'desenvolvimento'
28
+ @blog.categories.should.include? 'design'
29
+ end
30
+
31
+ it 'should be offer post list' do
32
+ @blog.posts.size.should.equal 2
33
+ end
34
+
35
+ it 'should be get a post with title' do
36
+ @blog.posts.first.title.should.equal 'Ou uma coisa ou outra: Command and Query Separation'
37
+ end
38
+
39
+ it 'should be get a post with link' do
40
+ @blog.posts.first.link.should.equal 'http://danieltamiosso.com/2009/07/09/ou-uma-coisa-ou-outra-command-and-query/'
41
+ end
42
+
43
+ it 'should be get a post with created date' do
44
+ @blog.posts.first.created_at.should.equal 'Thu, 09 Jul 2009 16:50:14 +0000'
45
+ end
46
+
47
+ it 'should be get a post with description' do
48
+ @blog.posts.first.description.should.equal 'Texto do post.'
49
+ end
50
+
51
+ end
@@ -0,0 +1,8 @@
1
+ require 'rubygems'
2
+ require 'bacon'
3
+
4
+ $LOAD_PATH.unshift(File.dirname(__FILE__))
5
+ $LOAD_PATH.unshift(File.join(File.dirname(__FILE__), '..', 'lib'))
6
+ require 'hurricane'
7
+
8
+ Bacon.summary_on_exit
metadata ADDED
@@ -0,0 +1,74 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: hurricane
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.0
5
+ platform: ruby
6
+ authors:
7
+ - Daniel Tamiosso
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+
12
+ date: 2010-07-23 00:00:00 -03:00
13
+ default_executable:
14
+ dependencies:
15
+ - !ruby/object:Gem::Dependency
16
+ name: bacon
17
+ type: :development
18
+ version_requirement:
19
+ version_requirements: !ruby/object:Gem::Requirement
20
+ requirements:
21
+ - - ">="
22
+ - !ruby/object:Gem::Version
23
+ version: "0"
24
+ version:
25
+ description: Hurricane is a tiny tool to parser WordPress eXtended RSS file.
26
+ email: email@danieltamiosso.com
27
+ executables: []
28
+
29
+ extensions: []
30
+
31
+ extra_rdoc_files:
32
+ - LICENSE
33
+ - README.rdoc
34
+ files:
35
+ - .document
36
+ - .gitignore
37
+ - LICENSE
38
+ - README.rdoc
39
+ - Rakefile
40
+ - VERSION
41
+ - lib/hurricane.rb
42
+ - spec/hurricane_spec.rb
43
+ - spec/spec_helper.rb
44
+ has_rdoc: true
45
+ homepage: http://github.com/danieltamiosso/hurricane
46
+ licenses: []
47
+
48
+ post_install_message:
49
+ rdoc_options:
50
+ - --charset=UTF-8
51
+ require_paths:
52
+ - lib
53
+ required_ruby_version: !ruby/object:Gem::Requirement
54
+ requirements:
55
+ - - ">="
56
+ - !ruby/object:Gem::Version
57
+ version: "0"
58
+ version:
59
+ required_rubygems_version: !ruby/object:Gem::Requirement
60
+ requirements:
61
+ - - ">="
62
+ - !ruby/object:Gem::Version
63
+ version: "0"
64
+ version:
65
+ requirements: []
66
+
67
+ rubyforge_project:
68
+ rubygems_version: 1.3.5
69
+ signing_key:
70
+ specification_version: 3
71
+ summary: Hurricane is a tiny tool to parser WordPress eXtended RSS file.
72
+ test_files:
73
+ - spec/hurricane_spec.rb
74
+ - spec/spec_helper.rb