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
[npaessel@dhcp213] 0022:~/lab/mysystem ( master ) $ cat ~/.gitconfig | grep -i email | |
email = [email protected] | |
[npaessel@dhcp213] 0022:~/lab/mysystem ( master ) $ git config --list | grep -i email | |
[email protected] |
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
<or> | |
<match path="project"> otrunk </match> | |
<match path="project"> sds </match> | |
<match path="project"> diy </match> | |
<match path="project"> rigse </match> | |
<match path="project"> rites_portal </match> | |
<match path="project"> mysystem </match> | |
<match path="project"> mysystem-sinatra </match> | |
</or> |
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
<match path="project"> reips-build </match> |
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
<or> | |
<match path="project"> otrunk </match> | |
<match path="project"> sds </match> | |
<match path="project"> diy </match> | |
<match path="project"> rigse </match> | |
<match path="project"> rites_portal </match> | |
<match path="project"> mysystem </match> | |
<match path="project"> mysystem-sinatra </match> | |
<match path="project"> reips-build </match> | |
</or> |
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 | |
# | |
# timesheet.rb <month to display> | |
# | |
# Displays a list of the subject lines for all commits by an author | |
# in one month. Defaults to the current month. You can specify a | |
# different month in many different ways. | |
# | |
# timesheet.rb last month | |
# timesheet.rb 1 => last January |
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
Installed: mysql-devel.i386 0:5.0.77-3.el5 | |
Updated: mysql.i386 0:5.0.77-3.el5 mysql-server.i386 0:5.0.77-3.el5 | |
Complete! | |
[npaessel@otto] 0022:/web/rites.concord.org/current ( deploy ) $ ls -la /usr/include/mysql | |
total 504 | |
drwxr-xr-x 2 root root 4096 Oct 8 17:46 . | |
drwxr-xr-x 60 root root 12288 Oct 8 17:46 .. | |
-rw-r--r-- 1 root root 4684 Jul 16 19:29 chardefs.h | |
-rw-r--r-- 1 root root 4050 Jul 16 19:29 decimal.h | |
-rw-r--r-- 1 root root 3866 Jul 16 19:29 errmsg.h |
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
Accept defaults? (y/n) y | |
To complete setup of the RITES Investigations Rails application setup: | |
MRI Ruby: | |
rake gems:install | |
RAILS_ENV=production rake db:migrate:reset | |
RAILS_ENV=production rake rigse:setup:new_rites_app | |
JRuby: |
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
/** | |
* Arrow 'plugin' for Raphael | |
**/ | |
Raphael.fn.arrow = function(startx,starty,endx,endy,len,angle,color) { | |
color = typeof(color) != 'undefined' ? color : "#888"; | |
var theta = Math.atan2((endy-starty),(endx-startx)); | |
var baseAngleA = theta + angle * Math.PI/180; | |
var baseAngleB = theta - angle * Math.PI/180; |
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
(npaessel@R2D2)-(jobs:0)-(~/lab/ruby/rigse) | |
(! 9036)-> rake spec SPEC=spec/routing/dataservice/bundle_contents_routing_spec.rb | |
(in /Users/npaessel/lab/ruby/rigse) | |
running Admin::Project.create_or_update_default_project_from_settings_yml | |
loading test environment | |
running Admin::Project.create_or_update_default_project_from_settings_yml | |
You have a nil object when you didn't expect it! | |
The error occurred while evaluating nil.maven_jnlp_families | |
the database or some required models in the database don't exist ... run migrations, load a database schema, or create resources | |
not running Admin::Project.create_or_update_default_project_from_settings_yml |
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
require 'rubygems' | |
require 'spork' | |
Spork.prefork do | |
ENV["RAILS_ENV"] ||= 'test' | |
require File.dirname(__FILE__) + "/../config/environment" | |
require 'spec/autorun' | |
require 'spec/rails' | |
Spec::Runner.configure do |config| |