Terence Lee
Contact details
- Twitter: @hone02
- Website or Blog: http://hone.heroku.com
- Company: Example Ltd. http://www.heroku.com
#!/usr/bin/env ruby | |
## disconnect | |
# ./disconnect.rb -u yourusername | |
# | |
# This is a command-line utility for the bulk-downloading of run data from | |
# the connect.garmin.com web application, which has lackluster export | |
# capabilities. | |
# |
class NewCard | |
attr_reader :cardname | |
def initialize(name, life, damage) | |
@cardname = name | |
@life = life | |
@damage = damage | |
end | |
def card |
things = Thing.order("id DESC").limit(100) | |
while things.any? | |
things.each do |thing| | |
# stuff | |
end | |
things = Thing.order("id DESC").limit(100).where(["id < ?", things.last.id]) | |
end |
mislav-will_paginate -s http://gems.github.com | |
libxml-ruby | |
rest-client -s http://gems.github.com | |
plist | |
aws-s3 | |
htmlentities | |
paperclip | |
wireframe-apn_on_rails | |
configatron | |
geokit |
.gems | |
rails --version 2.3.4 | |
aws-s3 | |
warden --ignore-depedencies | |
bcrypt-ruby | |
devise --ignore-dependencies | |
validatable | |
RedCloth | |
json |
require 'optparse' | |
require 'scanner/scanner' | |
module SC | |
class SimpleCompilerError < RuntimeError | |
end | |
class CommandOptionError < RuntimeError | |
end |
require 'optparse' | |
require 'scanner/scanner' | |
module SC | |
class SimpleCompilerError < RuntimeError | |
end | |
class CommandOptionError < RuntimeError | |
end |