This file contains hidden or 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
Failures: | |
1) Mongoid inclusion criteria | |
Failure/Error: @criteria.selector.should == {"$in" => {:from_id => [from_port.id, to_port.id]}} | |
expected: {"$in"=>{:from_id=>["6055df90-0572-012f-2043-388d1201202c", "60562bc0-0572-012f-2043-388d1201202c"]}}, | |
got: {:from_id=>"{\"$in\"=>[\"6055df90-0572-012f-2043-388d1201202c\", \"60562bc0-0572-012f-2043-388d1201202c\"]}"} (using ==) | |
Diff: | |
@@ -1,5 +1,3 @@ | |
-{"$in"=> | |
- {:from_id=> |
This file contains hidden or 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
irb(main):062:0> base.in(:from_id => port_ids) | |
=> #<Mongoid::Criteria | |
selector: {:from_id=>"$in0d06b030-04d8-012f-18e7-388d1201202c5b932da1-04d8-012f-b944-388d1201202c"}, | |
options: {}, | |
class: Ccom::PortConnection, | |
embedded: false> | |
# that's a jacked up selector | |
# now not using the _id on the field name |
This file contains hidden or 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 parse_git_dirty { | |
[[ $(git status 2> /dev/null | tail -n1) != "nothing to commit (working directory clean)" ]] && echo "*" | |
} | |
function parse_git_branch { | |
git branch --no-color 2> /dev/null | sed -e '/^[^*]/d' -e "s/* \(.*\)/[\1$(parse_git_dirty)]/" | |
} | |
# Black 0;30 Dark Gray 1;30 | |
# Blue 0;34 Light Blue 1;34 | |
# Green 0;32 Light Green 1;32 |
This file contains hidden or 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
#!/usr/bin/env ruby | |
number_of_words = ARGV[0].to_i | |
number_of_words ||= 4 | |
dictionary = File.read('/usr/share/dict/web2a').split | |
words = [] | |
until words.length == number_of_words do | |
word = dictionary[rand(dictionary.size)] |
This file contains hidden or 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 is in SpecHelper.js */ | |
$(function() { | |
beforeEach(function() { | |
this.addMatchers({ | |
toRequest: function(expectedRequest) { | |
var actualRequest, name, value; | |
actualRequest = this.actual; | |
for (name in expectedRequest) { | |
value = expectedRequest[name]; |
This file contains hidden or 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
case "$GEM_HOME" in | |
*jruby*) | |
# -J-Djruby.reify.classes=true | |
# JRUBY_OPTS="-J-Djruby.reify.classes=true -J-Xmx512M -J-XX:MaxPermSize=256m -J-XX:+UseConcMarkSweepGC -J-XX:+CMSClassUnloadingEnabled" ; export JRUBY_OPTS | |
JRUBY_OPTS="-J-Xmx1024m -J-XX:MaxPermSize=256m " ; export JRUBY_OPTS | |
;; | |
esac |
This file contains hidden or 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 7b7505ad8836f6fa9e613a29534bb9536defea44 Mon Sep 17 00:00:00 2001 | |
From: Doug Alcorn <[email protected]> | |
Date: Wed, 11 May 2011 16:59:45 -0400 | |
Subject: [PATCH] updating the few attribute types from value_class number to | |
measure [#13103329] | |
--- | |
3-XML-Ref-Data/CCOM Reference Data.xml | 12 ++++++------ | |
1 files changed, 6 insertions(+), 6 deletions(-) |
This file contains hidden or 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
$ bundle | |
/Users/dalcorn/.rvm/gems/jruby-1.5.6@mimosa2/bin/bundle: line 9: require: command not found | |
/Users/dalcorn/.rvm/gems/jruby-1.5.6@mimosa2/bin/bundle: line 11: version: command not found | |
/Users/dalcorn/.rvm/gems/jruby-1.5.6@mimosa2/bin/bundle: line 13: syntax error near unexpected token `(' | |
/Users/dalcorn/.rvm/gems/jruby-1.5.6@mimosa2/bin/bundle: line 13: `if ARGV.first =~ /^_(.*)_$/ and Gem::Version.correct? $1 then' | |
$ which bundle | |
/Users/dalcorn/.rvm/gems/jruby-1.5.6@mimosa2/bin/bundle | |
$ ls -l `which bundle` | |
-rwxr-xr-x 1 dalcorn staff 410 Feb 24 15:09 /Users/dalcorn/.rvm/gems/jruby-1.5.6@mimosa2/bin/bundle* | |
$ head `which bundle` |
This file contains hidden or 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 Person | |
include ActiveModel::MassAssignmentSecurity | |
attr_accessor :name, :birthday, :handsomeness | |
attr_protected :handsomeness | |
def initialize(params = {}) | |
self.attributes = params | |
end |
This file contains hidden or 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
Factory.define(:kit) do |f| | |
f.association :primary_palette, :factory => :palette # association doesn't match class name | |
f.association :secondary_palette, :factory => :palette | |
f.association :user, :factory => :user | |
f.sequence(:name) { |i| "Kit#{i}" } | |
f.bg_images { |images| [images.association(:attachment)] } # has_many assoc | |
f.default false | |
f.display_fonts { [Factory(:font), Factory(:font)] } | |
f.body_font { Factory(:font) } | |
end |