Skip to content

Commit

Permalink
recovering compatibility with ruby-1.8.7-p352
Browse files Browse the repository at this point in the history
  • Loading branch information
cocoa committed Sep 16, 2012
1 parent fd3aadc commit 5758e6e
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 5 deletions.
3 changes: 2 additions & 1 deletion benchmark/rfeedfinder_benchmark.rb
@@ -1,5 +1,6 @@
require 'rubygems'

require "benchmark"
#require "rubygems"

sites = [
"log.damog.net",
Expand Down
4 changes: 3 additions & 1 deletion bin/feedbag
@@ -1,6 +1,8 @@
#!/usr/bin/env ruby

require "feedbag"
require 'rubygems'
require 'feedbag'


def usage
%Q{
Expand Down
1 change: 1 addition & 0 deletions lib/feedbag.rb
Expand Up @@ -21,6 +21,7 @@
# OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
# WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

require 'rubygems'
require "hpricot"
require "open-uri"
require "net/http"
Expand Down
5 changes: 2 additions & 3 deletions test/test_helper.rb
@@ -1,9 +1,8 @@
require 'test/unit'

require 'rubygems'

require 'test/unit'
require 'active_support'
require 'active_support/test_case'

require 'mocha'

require File.dirname(__FILE__) + '/../lib/feedbag'

0 comments on commit 5758e6e

Please sign in to comment.