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 'toto' | |
require 'config/environment' | |
#point to your rails apps /public directory | |
use Rack::Static, :urls => ['/stylesheets', '/javascripts', '/images', '/favicon.ico'], :root => 'public' | |
use Rack::ShowExceptions | |
use Rack::CommonLogger |
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
//Recommended Blueprint configuration with scoping and semantic layout: | |
+blueprint-utilities | |
+blueprint-debug | |
+blueprint-typography | |
//+blueprint-scaffolding | |
+sticky-footer(20px, "#container", "#root_footer", "#footer" ) | |
body#site | |
#container | |
+container |
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
%body#site | |
#container | |
#header | |
%h1 Foobar | |
#loading= image_tag("ajax-loader.gif") | |
#sidebar | |
#content= yield | |
#root_footer | |
#footer © 2010 Foobar O-Rama |
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
set :application, "foo" | |
set :repository, "[email protected]:foo/foobar.git" | |
set :scm, :git | |
role :web, "dev.foo.com" # Your HTTP server, Apache/etc | |
role :app, "dev.foo.com" # This may be the same as your `Web` server | |
role :db, "dev.foo.com", :primary => true # This is where Rails migrations will run |
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
cap deploy:update | |
* executing `deploy:update' | |
** transaction: start | |
* executing `deploy:update_code' | |
executing locally: "git ls-remote [email protected]:foo/foobar.git HEAD" | |
* executing "git clone -q [email protected]:foo/foobar.git dev/releases/20100527171357 && cd dev/releases/20100527171357 && git checkout -q -b deploy 6aa26ee969e86d6a7d7009e0d32b433de046b7d1 && (echo 6aa26ee969e86d6a7d7009e0d32b433de046b7d1 > dev/releases/20100527171357/REVISION)" | |
servers: ["dev.foo.com"] | |
[dev.foo.com] executing command | |
** [dev.foo.com :: err] sh: dev/releases/20100527171357/REVISION: No such file or directory | |
command finished |
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 'mechanize' | |
BASE = 'http://manure.myshopify.com/admin' | |
LOGIN = '/auth/login' | |
USER = '[email protected]' | |
PWD = 'moo-moo' | |
agent = Mechanize.new | |
page = agent.get(BASE+LOGIN) | |
form = page.forms.first | |
form.login = USER |
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
development: | |
adapter: postgresql | |
database: urbanaut_dev | |
username: uta | |
password: foo | |
test: | |
adapter: postgresql | |
database: urbanaut_test | |
username: uta |
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
// --------------------------------------------------------- | |
// POST to cart/update.js returns the cart in JSON. | |
// To clear a particular attribute, set its value to an empty string. | |
// Receives attributes as a hash or array. Look at comments below. | |
// --------------------------------------------------------- | |
Shopify.updateCartAttributes = function(data, callback) { | |
var params = { | |
type: 'POST', | |
url: '/cart/update.js', | |
data: data, |
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
SHELL = /bin/sh | |
#### Start of system configuration section. #### | |
srcdir = . | |
topdir = /usr/lib/ruby/1.8/x86_64-linux | |
hdrdir = $(topdir) | |
VPATH = $(srcdir):$(topdir):$(hdrdir) | |
exec_prefix = $(prefix) | |
prefix = $(DESTDIR)/usr |
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
[main] | |
cachedir=/var/cache/yum | |
keepcache=0 | |
debuglevel=2 | |
logfile=/var/log/yum.log | |
distroverpkg=redhat-release | |
tolerant=1 | |
exactarch=1 | |
obsoletes=1 | |
gpgcheck=1 |
OlderNewer