Skip to content

Commit

Permalink
Minor require change
Browse files Browse the repository at this point in the history
  • Loading branch information
grempe committed Aug 27, 2008
1 parent 365808b commit 152c3a8
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions lib/rapleaf.rb
@@ -1,6 +1,10 @@
%w[ base64 cgi openssl digest/sha1 net/http builder ostruct ].each { |f| require f }
%w[ base64 cgi openssl digest/sha1 net/http builder ostruct ].each do |f|
require f
end

Dir[File.join(File.dirname(__FILE__), 'rapleaf/**/*.rb')].sort.each { |lib| require lib }
Dir[File.join(File.dirname(__FILE__), 'rapleaf/**/*.rb')].sort.each do |lib|
require lib
end

module Rapleaf

Expand Down

0 comments on commit 152c3a8

Please sign in to comment.