Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Donation/superfeedr #11

Merged
merged 5 commits into from
Aug 25, 2014
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
*.swp
*.gem
2 changes: 1 addition & 1 deletion COPYING
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Copyright (C) 2012 David Moreno <[email protected]>
Copyright (C) 2008-2014 David Moreno <[email protected]>

Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
Expand Down
8 changes: 8 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
* 0.9.4 - Sun Aug 3 13:51:09 CEST 2014
- Enhancements to the spec.
- Updated years on license notes

* 0.9.3 - Sun Aug 3 13:48:01 CEST 2014
- Rebuild of the gem to get rid of Hpricot.
- Appropriate build on Nokogiri.

* 0.9.2 - Sat Dec 7 18:32:17 CET 2013
- Up to date bits and pieces.

Expand Down
19 changes: 12 additions & 7 deletions README.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -5,22 +5,22 @@ Feedbag is Ruby's favorite auto-discovery tool/library!

### Quick synopsis

>> require "feedbag"
=> true
>> Feedbag.find "damog.net/blog"
>> require "feedbag"
=> true
>> Feedbag.find "damog.net/blog"
=> ["http://damog.net/blog/index.rss", "http://damog.net/blog/tags/feed", "http://damog.net/blog/tags/rfeed"]
>> Feedbag.feed? "perl.org"
=> false
>> Feedbag.feed?("http://jobs.perl.org/rss/standard.rss")
>> Feedbag.feed?("http://jobs.perl.org/rss/standard.rss")
=> true

### Installation

$ gem install feedbag
$ gem install feedbag

Or just grab feedbag.rb and use it on your own project:

$ wget http://github.com/damog/feedbag/raw/master/lib/feedbag.rb
$ wget http://github.com/damog/feedbag/raw/master/lib/feedbag.rb

You can also use the command line tool for quick queries, if you install the gem:

Expand All @@ -39,7 +39,12 @@ You can also use the command line tool for quick queries, if you install the gem

[David Moreno](http://damog.net/) <[[email protected]](mailto:[email protected])>.

### Donations

![Superfeedr](http://damog.net/files/misc/superfeedr_150.png)

[Superfeedr](http://superfeedr.com) has kindly financially [supported](https://github.com/damog/feedbag/issues/9) the development of Feedbag.

### Copyright

This is free software. See [COPYING](http://github.com/damog/feedbag/master/COPYING) for more information.

11 changes: 6 additions & 5 deletions feedbag.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,22 +2,23 @@

Gem::Specification.new do |s|
s.name = %q{feedbag}
s.version = "0.9.2"
s.version = "0.9.4"
s.homepage = "http://github.com/damog/feedbag"
s.rubyforge_project = "feedbag"
s.licenses = ["MIT"]

s.authors = ["David Moreno", "Derek Willis"]
s.date = %q{2013-12-07}
s.date = %q{2014-08-03}
s.description = %q{Ruby's favorite feed auto-discoverty tool}
s.email = %q{[email protected]}
s.extra_rdoc_files = ["README.markdown", "COPYING"]
s.files = ["lib/feedbag.rb", "benchmark/rfeedfinder_benchmark.rb", "bin/feedbag"]
s.has_rdoc = true
s.rdoc_options = ["--main", "README.markdown"]
s.summary = %q{Ruby's favorite feed auto-discovery tool}
s.add_dependency("nokogiri")
s.add_development_dependency "shoulda"
s.add_development_dependency "mocha", "~> 0.12.0"
s.add_dependency('nokogiri', '~> 0')
s.add_development_dependency 'shoulda', '~> 0'
s.add_development_dependency 'mocha', '~> 0.12', '>= 0.12.0'
s.bindir = 'bin'
s.default_executable = %q{feedbag}
s.executables = ["feedbag"]
Expand Down
2 changes: 1 addition & 1 deletion lib/feedbag.rb
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/bin/ruby

# Copyright (c) 2012 David Moreno <[email protected]>
# Copyright (c) 2008-2014 David Moreno <[email protected]>
#
# Permission is hereby granted, free of charge, to any person obtaining
# a copy of this software and associated documentation files (the
Expand Down