This file contains hidden or 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
cd | |
mkdir tmp | |
cd tmp | |
wget http://geolite.maxmind.com/download/geoip/api/c/GeoIP.tar.gz | |
wget http://geolite.maxmind.com/download/geoip/database/GeoLiteCity.dat.gz | |
tar zxvf GeoIP.tar.gz | |
cd GeoIP-1.4.6 | |
./configure --prefix /opt/GeoIP | |
make | |
make check |
This file contains hidden or 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
module CustomMatchers | |
class HaveActiveRecordTimestamps | |
def description | |
"have the active record timestamp columns created_at and updated_at" | |
end | |
def initialize() | |
end |
NewerOlder