Core Audioについて書かれた本は多くないので期待してたけど、自分の知りたかった項目についての記述はなかった。Core AudioのAPIは非常に広範囲に渡っているので仕方がないとは思うけどちょっと残念。
著者のBlog記事の方が、場合によっては参考になったりする。
サンプルコードを以下のサイトからダウンロードできるので、ざっと見てみて自分の関心のある項目が書かれているようなら購入してもいいかも。
$ su - git
$ ssh-keygen -t rsa -N ''Ruby 1.9.2
$ bash -s stable < <(curl -s https://raw.github.com/wayneeseguin/rvm/master/binscripts/rvm-installer)
$ source ~/.bash_login
$ rvm install 1.9.2 --with-gcc=clangGitolite
$ cd
$ git clone git://github.com/sitaramc/gitolite
$ gitolite/src/gl-system-install
$ export PATH=/Users/git/bin:$PATH
$ ln -s .ssh/id_rsa.pub GitlabAdmin.pub
$ gl-setup -q ~/GitlabAdmin.pub
$ ssh localhost
PTY allocation request failed on channel 0 # <= こんな風になればOK
$ git clone git@localhost:gitolite-adminGitLab
$ cd gitlabhqエラーになったので、必要なモジュールをインストール
$ bundle
$ brew update再度Bundle実行
$ brew install icu4c
$ bundle設定ファイルを用意
$ bundle install --without development test
$ cp config/database.yml.example config/database.ymlセットアップ
$ cp config/gitlab.yml.example config/gitlab.yml
$ vi config/gitlab.yml # base_pathを/Users/git/repositories/に変更
$ bundle exec rake db:setup RAILS_ENV=productionエラーになるので、redisをインストール&手動起動
$ brew install redisセットアップ
$ redis-server /usr/local/etc/redis.conf
$ bundle exec rake db:seed_fu RAILS_ENV=production起動
== Seed from /Users/git/gitlabhq/db/fixtures/production/001_admin.rb
Administrator account created:
login.........admin@local.host
password......5iveL!fe
$ rails s -e production -p 8080http://localhost:8080にアクセス