Skip to content

Instantly share code, notes, and snippets.

View tenderlove's full-sized avatar
©️
 ​[object Object] :trollface:

Aaron Patterson tenderlove

©️
 ​[object Object] :trollface:
View GitHub Profile
class A
def self.needs thing = nil
(@things ||= []) << thing if thing
@things
end
end
class B < A
needs :awesome
needs :america
require 'nokogiri'
require 'test/unit'
class AssertSelectorTest < Test::Unit::TestCase
def setup
@doc = Nokogiri::HTML(<<-eohtml)
<html>
<body>
<p>Hello world!</p>
</body>
=begin
Pivotal Tracker API client (note: super-not-ready)
USAGE
Finding a project:
project = PivotalTracker::Projet.find(1)
#!/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
We couldn’t find that file to show.
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>
We couldn’t find that file to show.
require 'rubygems'
require 'yaml'
SEATTLERB = [
'aaron patterson',
'alex volmer',
'andy smith',
'damon danieli',
'dave myron',
'eric hodel',
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
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'))