This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class A | |
def self.needs thing = nil | |
(@things ||= []) << thing if thing | |
@things | |
end | |
end | |
class B < A | |
needs :awesome | |
needs :america |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require 'nokogiri' | |
require 'test/unit' | |
class AssertSelectorTest < Test::Unit::TestCase | |
def setup | |
@doc = Nokogiri::HTML(<<-eohtml) | |
<html> | |
<body> | |
<p>Hello world!</p> | |
</body> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
=begin | |
Pivotal Tracker API client (note: super-not-ready) | |
USAGE | |
Finding a project: | |
project = PivotalTracker::Projet.find(1) | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env ruby | |
require 'rubygems' | |
require 'open-uri' | |
require 'nokogiri' | |
require 'benchmark' | |
content = open("http://railstips.org/assets/2008/8/9/timeline.xml").read | |
N = 100 | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def test_namespace_as_hash | |
xml = Nokogiri::XML.parse(<<-eoxml) | |
<root> | |
<car xmlns:part="http://general-motors.com/"> | |
<part:tire>Michelin Model XGV</part:tire> | |
</car> | |
<bicycle xmlns:part="http://schwinn.com/"> | |
<part:tire>I'm a bicycle tire!</part:tire> | |
</bicycle> | |
</root> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require 'rubygems' | |
require 'yaml' | |
SEATTLERB = [ | |
'aaron patterson', | |
'alex volmer', | |
'andy smith', | |
'damon danieli', | |
'dave myron', | |
'eric hodel', |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
total gem count: 399 | |
unique gem count: 90 | |
2004-12: 1 | |
2005-2: 2 | |
2005-4: 3 | |
2005-5: 3 | |
2005-6: 3 | |
2005-7: 4 | |
2005-10: 2 | |
2005-11: 3 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require 'nokogiri' | |
require 'open-uri' | |
### | |
# Get the number of gem downloads | |
# Usage: script.rb <gem_name> | |
# | |
# ruby script.rb nokogiri # => 1189 | |
# | |
doc = Nokogiri::HTML(open('http://gems.rubyforge.org/stats.html')) |