Skip to content
View brianjlandau's full-sized avatar

Highlights

  • Pro

Block or report brianjlandau

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Maximum 250 characters. Please don't include any personal information such as legal names or email addresses. Markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. vigetlabs/acts_as_markup vigetlabs/acts_as_markup Public

    Represent ActiveRecord Markdown, Textile, or RDoc columns as Markdown, Textile, or RDoc objects using various external libraries to convert to HTML.

    Ruby 122 19

  2. vigetlabs/cachebar vigetlabs/cachebar Public

    A simple API caching layer built on top of HTTParty and Redis

    Ruby 88 20

  3. vigetlabs/redirector vigetlabs/redirector Public

    A Rails engine that adds a piece of middleware to the top of your middleware stack that looks for redirect rules stored in your database and redirects you accordingly.

    Ruby 81 34

  4. Rails Capistrano deploy using git as... Rails Capistrano deploy using git as our deployment strategy. You'll need git version >=1.5.6.6 on your server for this to work.
    1
    # you'd obviously have more settings somewhere
    2
    set :scm,        :git
    3
    set :repository, "git@github.com:defunkt/github.git"
    4
    set :branch,     "origin/master"
    5
    set :migrate_target, :current # this tells capistrano where to run the migration. otherwise it would try to use the latest release directory (/path/to/app/releases/2012XXXXXXXXX)
  5. jmapping jmapping Public

    Forked from vigetlabs/jmapping

    jQuery plugin for creating Google Maps from semantic markup

    JavaScript 18 2

  6. Email validator based on DNS Email validator based on DNS
    1
    require 'resolv'
    2
    
                  
    3
    class EmailValidator < ActiveModel::EachValidator
    4
      def validate_each(record, attribute, value)
    5
        if Resolv::DNS.new.getresources(value.split("@").last, Resolv::DNS::Resource::IN::MX).empty?