diff options
author | Harald Eilertsen <haraldei@anduin.net> | 2015-05-28 22:37:44 +0200 |
---|---|---|
committer | Harald Eilertsen <haraldei@anduin.net> | 2015-05-28 22:37:44 +0200 |
commit | 5cafea7e345c6cee7661d177b67a8283c933af34 (patch) | |
tree | 4318aaf021f68e62487ce5983bedea68a2877873 /lib | |
parent | fdf2d13e0d2c0267b13b904c2ff1ade7aea057a9 (diff) | |
download | rss2html-5cafea7e345c6cee7661d177b67a8283c933af34.tar.gz rss2html-5cafea7e345c6cee7661d177b67a8283c933af34.tar.bz2 rss2html-5cafea7e345c6cee7661d177b67a8283c933af34.zip |
Fix require statements.
Using require_relative, so will only run on Ruby 1.9.3 or better.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/rss2html.rb | 6 |
1 files changed, 3 insertions, 3 deletions
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 <http://www.gnu.org/licenses/>. -require 'rss2html/version' -require 'rss2html/feed' -require 'rss2html/feed_item' +require_relative 'rss2html/version' +require_relative 'rss2html/feed' +require_relative 'rss2html/feed_item' |