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
GEM | |
remote: https://rubygems.org/ | |
specs: | |
amq-protocol (2.0.1) | |
ast (2.3.0) | |
basquiat (1.3.2) | |
multi_json | |
naught | |
bunny (2.3.1) | |
amq-protocol (>= 2.0.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
[2014-07-16 17:48:10] /home/dev/.rvm/wrappers/ruby-2.1.2@rubinius/rake | |
current path: /home/dev/.rvm/src/rbx-2.2.10 | |
PATH=/home/dev/.rvm/bin:/usr/local/sbin:/usr/local/bin:/usr/bin:/opt/java/bin:/opt/java/db/bin:/opt/java/jre/bin:/usr/bin/core_perl | |
command(3): /home/dev/.rvm/wrappers/ruby-2.1.2@rubinius/rake install --trace | |
** Invoke install (first_time) | |
** Invoke build:build (first_time) | |
** Invoke build:llvm (first_time) | |
** Execute build:llvm | |
sh -c "/home/dev/.rvm/src/rbx-2.2.10/vendor/llvm/configure --build=x86_64-unknown-linux-gnu --host=x86_64-unknown-linux-gnu --enable-optimized --disable-assertions --enable-targets=host,cpp" | |
checking for x86_64-unknown-linux-gnu-clang... gcc |
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
<?xml version="1.0" standalone='no'?><!--*-nxml-*--> | |
<!DOCTYPE service-group SYSTEM "avahi-service.dtd"> | |
<!-- $Id$ --> | |
<!-- | |
This file is part of avahi. | |
avahi is free software; you can redistribute it and/or modify it | |
under the terms of the GNU Lesser General Public License as |
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
//Never let a System.DBNull bite ya! | |
public static T ConvertDBNull<T>(Object obj) | |
{ | |
return obj == System.DBNull.Value ? default(T) : (T)obj; | |
} |
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 is a sample RoR template to be used on my projects. | |
run "echo Nothing Here Right Now > README" | |
if yes?("Use rbates nifty layout?") | |
generate :nifty_layout | |
end | |
gem 'mislav-will_paginate', :lib => 'will_paginate', :source => 'http://gems.github.com' | |
gem 'redcloth', :lib => 'RedColth' |