Tbpgr Blog

Employee Experience Engineer tbpgr(てぃーびー) のブログ

2014-09-05から1日間の記事一覧

Grunt

概要 JavaScriptのタスクランナーGrunt 内容 項目 内容 基礎 http://d.hatena.ne.jp/tbpg/20140905/1409925604 Gruntfile http://d.hatena.ne.jp/tbpg/20140905/1409925670 参照 Grunt Official http://gruntjs.com/

Gruntfile

概要 Gruntfile の設定に関して ファイル Gruntfile は Gruntfile.js か Gruntfile.coffee として作成します。 構成 ・ wapper 関数 ・ プロジェクト、タスクの設定 ・ Pluginのロード ・ カスタムタスク からなります。 wapper 関数 module.exports = (grun…

Grunt 基礎

概要 JavaScript のタスクランナー Grunt の基礎。 目的 Grunt は ・ minification ・ compilation ・ unit testing ・ linting ・ etc...など、開発中に何度も繰り返す作業を簡単なものにし、 その労力をゼロに使づけます。 Gruntの特徴 巨大なエコシステム…

Ruby | Numeric | coerce

概要 Numeric#coerce(other) -> [Numeric] 詳細 self と other が同じクラスになるよう、自身か other を変換し [other, self] という配列にして返却。 Number クラスのサブクラスを新たに定義する際に、実装が必要となる。 デフォルトは Float に変換。coer…

Ruby | Numeric | div

概要 Numeric#div(other) -> Integer 詳細 self を other で割った整数の商 q を返却。div は内部的には Numeric の継承先で実装される 「/」メソッドを 呼び出している。 サンプルコード p 3.div(2) p 3 / 2 p 4.div(2) p 2.div(4) class EvenNumber < Nume…