From 5cafea7e345c6cee7661d177b67a8283c933af34 Mon Sep 17 00:00:00 2001 From: Harald Eilertsen Date: Thu, 28 May 2015 22:37:44 +0200 Subject: Fix require statements. Using require_relative, so will only run on Ruby 1.9.3 or better. --- lib/rss2html.rb | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'lib') diff --git a/lib/rss2html.rb b/lib/rss2html.rb index b069459..df1b75b 100644 --- a/lib/rss2html.rb +++ b/lib/rss2html.rb @@ -14,6 +14,6 @@ # You should have received a copy of the GNU Affero General Public License # along with this program. If not, see . -require 'rss2html/version' -require 'rss2html/feed' -require 'rss2html/feed_item' +require_relative 'rss2html/version' +require_relative 'rss2html/feed' +require_relative 'rss2html/feed_item' -- cgit v1.2.3