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
Linux mydomain 2.6.24-19-xen #1 SMP Wed Aug 20 21:08:51 UTC 2008 x86_64 GNU/Linux | |
postfix | |
2.5.1 | |
alias_database = hash:/etc/aliases | |
alias_maps = hash:/etc/aliases | |
append_dot_mydomain = no | |
biff = no | |
config_directory = /etc/postfix | |
inet_interfaces = all |
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 File.dirname(__FILE__) + '/../spec_helper' | |
def check_redirects | |
[:new, :create, :edit, :update, :delete].each do |action| | |
it "#{action} should redirect" do | |
get action | |
response.should be_redirect | |
end | |
end | |
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
1) | |
ActiveRecord::RecordInvalid in 'Page should create a new instance given valid attributes' | |
Validation failed: | |
/Library/Ruby/Gems/1.8/gems/activerecord-2.1.1/lib/active_record/validations.rb:923:in `save_without_dirty!' | |
/Library/Ruby/Gems/1.8/gems/activerecord-2.1.1/lib/active_record/dirty.rb:83:in `save_without_transactions!' | |
/Library/Ruby/Gems/1.8/gems/activerecord-2.1.1/lib/active_record/transactions.rb:110:in `save!' | |
/Library/Ruby/Gems/1.8/gems/activerecord-2.1.1/lib/active_record/connection_adapters/abstract/database_statements.rb:66:in `transaction' | |
/Library/Ruby/Gems/1.8/gems/activerecord-2.1.1/lib/active_record/transactions.rb:79:in `transaction' | |
/Library/Ruby/Gems/1.8/gems/activerecord-2.1.1/lib/active_record/transactions.rb:98:in `transaction' | |
/Library/Ruby/Gems/1.8/gems/activerecord-2.1.1/lib/active_record/transactions.rb:110:in `save!' |
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
qrush@q-mini ~/D/r/sparkplug> rake spec:models | |
(in /Users/qrush/Dev/rails/sparkplug) | |
...................................................................... | |
Finished in 0.777263 seconds | |
70 examples, 0 failures | |
qrush@q-mini ~/D/r/sparkplug> rake spec:controllers | |
(in /Users/qrush/Dev/rails/sparkplug) | |
................................................................................................................................................................................................................................... |
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
class Post < ActiveRecord::Base | |
belongs_to :user | |
belongs_to :category | |
validates_presence_of :title, :content, :user_id, :category_id | |
def to_param | |
"#{id}-#{title.slugify}" | |
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
[gitosis] | |
[group nw] | |
writable = aquinas | |
members = @gitosis-admin rails@newman | |
[group gitosis-admin] | |
writable = personal gitosis-admin config | |
members = qrush@q-laptop [email protected] [email protected] |
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 'populator' | |
module Populate | |
def spawn_models | |
p 'ok, wtf: ' + ENV["RAILS_ENV"] | |
[Post, Category, Page].each(&:delete_all) | |
Category.populate 10 do |category| | |
category.name = Populator.words(1..3).titleize |
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
# Returns a new string with the characters from <i>self</i> in reverse order. | |
# | |
# "stressed".reverse #=> "desserts" | |
def reverse | |
self.dup.reverse! | |
end | |
# Reverses <i>self</i> in place. | |
def reverse! | |
return self if @bytes <= 1 |
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
name = [] | |
[:first_name, :middle_name, :last_name].each do |param| | |
name << params[:user][param] if params[:user][param] | |
end | |
params[:user][:name] = name.map(&:strip).reject(&:blank?).join(" ") |
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 PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" | |
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> | |
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> | |
<head> | |
<meta http-equiv="content-type" content="text/html; charset=UTF-8" /> | |
<title>The College Driver</title> | |
<link href="http://thecollegedriver.com/stylesheets/application.css" media="screen" rel="stylesheet" type="text/css" /> | |
</head> | |
<body> |