2013-05-01から1ヶ月間の記事一覧

Set::extract()

http://book.cakephp.org/2.0/en/core-utility-libraries/set.html Deprecated since version 2.2: The Set class has been deprecated in 2.2 in favour of the Hash class. It offers a more consistent interface and API.

ブラウザのコンソールでxpath確認

$x('//div[@id="hoge"]')

gitのtag

git

// タグ付け % git tag -a TAG_NAME % git tag -a TAG_NAME -m 'message' // タグ一覧 % git tag -l // タグをリモートにpush % git push origin TAG_NAME // ローカルのタグをすべてサーバにpushする % git push --tags % git push origin --tags // 削除 %…