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
development: | |
adapter: mysql2 | |
encoding: utf8 | |
database: my_database | |
username: root | |
password: |
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
#!/bin/bash | |
declare -a podlist=( `cat "pods.csv" `) | |
cd /srv/projektstuff/data/dev/diaspora/diaspora | |
declare -a remotes=( `git remote` ) | |
rm result.csv | |
touch result.csv | |
echo "pod, fork, branch, commit id" >> result.csv | |
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 "bundler" | |
dia = '/var/www/vhosts/diaspora' | |
Dir.chdir dia | |
def allm obj | |
obj.methods.sort.each { |m| | |
puts m | |
} |
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
#!/bin/bash | |
for gem in `gem list|cut -d" " -f 1` | |
do | |
gem specification $gem name | |
gem specification $gem description | |
done |