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
#how i'd imagine this working, and how to just deal with the ticket obj, although just tested and this doesn't quite work. will see if i can fix it tomorrow | |
class Ticket < Sequel::Model | |
set_schema do | |
foreign_key :ticket_detail_id, :table => :ticket_detail | |
# integer :ticket_detail_version | |
end | |
is(:versioned_fact, {:dimensions => [TicketDetail]}) | |
one_to_many :ticket_details | |
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
# | |
# Ruby/ProgressBar - a text progress bar library | |
# | |
# Copyright (C) 2001-2005 Satoru Takabayashi <[email protected]> | |
# All rights reserved. | |
# This is free software with ABSOLUTELY NO WARRANTY. | |
# | |
# You can redistribute it and/or modify it under the terms | |
# of Ruby's license. | |
# |
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
From f81121312509f757694e1af7b19a7f7bf5f9cdac Mon Sep 17 00:00:00 2001 | |
From: Matthew Ford <[email protected]> | |
Date: Fri, 7 Nov 2008 15:00:41 +0000 | |
Subject: [PATCH] avoid calling destroy on nil | |
--- | |
dm-tags/lib/dm-tags/dm_tags.rb | 2 +- | |
1 files changed, 1 insertions(+), 1 deletions(-) | |
diff --git a/dm-tags/lib/dm-tags/dm_tags.rb b/dm-tags/lib/dm-tags/dm_tags.rb |
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
after "deploy:update_code", "deploy:write_sha1" | |
namespace :deploy do | |
desc "write sha1 to file" | |
task :write_sha1 do | |
run "cd #{latest_release} && git show-ref --heads --hash=7 > #{latest_release}/config/HEAD" | |
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
## Rails development best practices | |
# An #RMM alternative, open and collaborative set of development practices we can adhere to. | |
* Distributed Version Control over relying on the File System | |
* Business Logic in the Models over being spread throughout the MVC layers | |
* RESTful Architecture over overloaded controllers | |
* KISS - Short methods with descriptive names | |
* Tests/Specs covering each layer of MVC and the whole stack | |
* Document the setup procedure (freeze dependancies where possible) |
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
function linkify(s) { | |
var entities = { | |
'"' : '"', | |
'&' : '&', | |
'<' : '<', | |
'>' : '>' | |
}; | |
return s.replace(/[A-Za-z]+:\/\/[A-Za-z0-9-_]+\.[A-Za-z0-9-_:%&\?\/.=]+/g, function(m) { | |
return m.link(m); |
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
Ruby: | |
http://tryruby.hobix.com/ | |
http://pragprog.com/titles/ltp2/learn-to-program-2nd-edition | |
http://poignantguide.net/ruby/ | |
Rails: | |
http://guides.rubyonrails.org/ | |
http://pragprog.com/titles/rails3/agile-web-development-with-rails-third-edition | |
The Rails Way - http://www.amazon.com/Rails-Way-Addison-Wesley-Professional-Ruby/dp/0321445619 | |
http://pragprog.com/titles/achbd/the-rspec-book |
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
Moved to http://github.com/matthewford/agile_debugging_rails/ |
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
From 6ce245386ef213c903fcb5fb9b1ba7a6d0c7ee6d Mon Sep 17 00:00:00 2001 | |
From: Matthew Ford <[email protected]> | |
Date: Sun, 1 Aug 2010 18:03:20 -0700 | |
Subject: [PATCH] update zinter and zunion to zinterstore and zunionstore | |
--- | |
lib/redis-client.js | 4 ++-- | |
test/test.js | 4 ++-- | |
2 files changed, 4 insertions(+), 4 deletions(-) |
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
<!-- include jQuery and jCheck and default styles --> | |
<link rel="stylesheet" type="text/css" href="/stylesheets/jcheck.css" /> | |
<script type="text/javascript" src="/javascripts/jquery-1.4.2.min.js"></script> | |
<script type="text/javascript" src="/javascripts/jcheck-0.7.1.min.js"></script> | |
<!-- Define Form Validation --> | |
<script type="text/javascript"> | |
var f = $("#user_new").jcheck({field_prefix: "user"}); | |
f.validates_format_of("email", {"with": "email"}); | |
f.validates_confirmation_of("password"); |
OlderNewer