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
# Common pattern for including instance and class level modules | |
module SomeModule | |
def self.included(my_class) | |
my_class.extend ClassMethods | |
end | |
module ClassMethods | |
def some_class_method(*args) | |
# do something at class level | |
puts args.inspect |
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
# Free RESTful interface for your Ruby objects with Rackable | |
# http://github.com/madx/rackable/tree/master | |
# | |
# + Free HTTP caching with rack-cache | |
# http://github.com/rtomayko/rack-cache/tree/master | |
require 'rackable' | |
require 'rack/cache' | |
APP_ROOT = File.dirname(__FILE__) |
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
# This module allows you to prepend a version prefix to your Sinatra URLs | |
# Example: | |
# | |
# require 'rubygems' | |
# require 'sinatra/base' | |
# | |
# class App < Sinatra::Base | |
# register Versioned | |
# | |
# set :version, 'v1' |
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
# Put this in an initializer (config/initializers/common_scopes.rb) or library file. | |
# | |
module CommonScopes | |
module ClassMethods | |
# Sort given fields ASC or DESC | |
# | |
# Example: | |
# | |
# class Post < ActiveRecord::Base |
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
# USAGE :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: | |
# require 'rack/versioner' | |
# V1 = Proc.new do |env| | |
# body = "Hello world from V1" | |
# [200, {"Content-Type" => "text/html", "Content-Length" => body.size.to_s}, [body]] | |
# end | |
# | |
# V2 = Proc.new do |env| | |
# body = "Hello world from V2" |
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
# Create a unique, non-numeric ID for your ActiveRecord objects | |
require 'uuid' # http://github.com/assaf/uuid/ | |
class User < ActiveRecord::Base | |
sluggable_finder :hashed_slug #creates slug from custom attribute and stores it in "slug" field | |
def hashed_slug #we define the custom attribute | |
UUID.new.generate | |
end |
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
/* Jquery plugin for quick Comet long polling connections | |
Nothing special about this (just a recursive Ajax call). | |
The key is having the server hold connections open until there's data to push back to the client. | |
This can be done with Nginx and the nginx_http_push_module (http://github.com/slact/nginx_http_push_module) | |
---------------------------------------------------------------------------*/ | |
(function($){ | |
$.comet = function(url, success_callback, error_callback){ | |
error_callback = error_callback || function(a,b,c){alert('Error '+b)}; | |
$.ajax({ | |
type: "GET", |
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
/* | |
var getName = function(){return 'My name is '+this.name}; | |
var Person = function(name){ | |
this.name = name; | |
}; | |
var Joe = new Person('Joe'); | |
var joeName = getName.bind(Joe); |
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
<!DOCTYPE html> | |
<html> | |
<head> | |
<style type="text/css" media="screen"> | |
body { | |
padding:1em;margin:0; | |
} | |
.line.close { | |
color:red; | |
} |
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 'sinatra/base' | |
# SINATRA APP ::::::::::::::::::::::::::::::::::::: | |
# | |
class BooticProxy < Sinatra::Base | |
# POST /mi-tienda/to/tugar/product # => push new product/property to Tugar | |
# This would be a JSON representation of a Bootic product, something like: | |
# { |