Skip to content

Commit

Permalink
Dropped Ruby 1.8.7 support as Nokogiri 1.6.0 requires Ruby >= 1.9.2.
Browse files Browse the repository at this point in the history
  • Loading branch information
arttu committed Jul 26, 2013
1 parent 7207443 commit f7f9cd0
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 22 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
@@ -1,3 +1,3 @@
rvm:
- 1.8.7
- 1.9.3
- 2.0.0
6 changes: 1 addition & 5 deletions Gemfile
@@ -1,12 +1,8 @@
source :rubygems
source 'http://rubygems.org'

gem 'nokogiri'

group :test do
gem 'rake'
gem 'rspec'
end

platform :jruby do
gem 'jruby-openssl'
end
3 changes: 2 additions & 1 deletion README.md
Expand Up @@ -6,7 +6,8 @@ Rss and Atom feed parser built on top of Nokogiri. Supports custom sanitizers.

[![Build Status](https://secure.travis-ci.org/arttu/feed_parser.png)](http://travis-ci.org/arttu/feed_parser)

FeedParser gem is tested on Ruby 1.8.7 and 1.9.3.
FeedParser gem is tested on Ruby 1.9.3 and 2.0.0.
1.8.7 should work with Nokogiri < 1.6.0.

## Install

Expand Down
15 changes: 0 additions & 15 deletions Rakefile
Expand Up @@ -18,18 +18,3 @@ end

desc "Default: Run specs"
task :default => :spec

namespace :rubies do
rvm_rubies_command = "rvm 1.8.7-p302@feed_parser,1.9.3-p194@feed_parser do"

desc "Update dependencies for all Ruby versions"
task :update_dependencies do
system("#{rvm_rubies_command} bundle install")
system("#{rvm_rubies_command} bundle update")
end

desc "Run tests with Ruby versions 1.8.7 and 1.9.3"
task :spec do
system("#{rvm_rubies_command} bundle exec rake spec")
end
end

0 comments on commit f7f9cd0

Please sign in to comment.