tl;dr IdotabaのGemfileは"全プレ"になりました。ご笑納ください。→ Gemfile
rebuild.fmのep36でお知らせさせていただきました、Idobataの最新版Gemfileプレゼントをお届けいたします。 過日はIdobata会議01への多数のご参加ありがとうございました。おかげさまで盛況なミートアップとなりました。 (当日会場を提供いただいたEngine Yardさまのブログにて、Idobata会議01当日の様子がまとめられています。ありがとうございます!)
tl;dr IdotabaのGemfileは"全プレ"になりました。ご笑納ください。→ Gemfile
rebuild.fmのep36でお知らせさせていただきました、Idobataの最新版Gemfileプレゼントをお届けいたします。 過日はIdobata会議01への多数のご参加ありがとうございました。おかげさまで盛況なミートアップとなりました。 (当日会場を提供いただいたEngine Yardさまのブログにて、Idobata会議01当日の様子がまとめられています。ありがとうございます!)
module.exports = (grunt) -> | |
grunt.initConfig | |
sprite: | |
common: | |
files: | |
'assets/img': 'assets/img/common/*.*' | |
options: | |
name: 'common' |
var $ = require('NodObjC'); | |
$.import('Cocoa'); | |
var installNSBundleHook = function() { | |
var cls = $.NSBundle; | |
if (cls) { | |
var bundleIdentifier = cls.getInstanceMethod('bundleIdentifier'); | |
bundleIdentifier.setImplementation(function(val) { |
#!/bin/bash | |
# | |
# consul Manage the consul agent | |
# | |
# chkconfig: 2345 95 95 | |
# description: Consul is a tool for service discovery and configuration | |
# processname: consul | |
# config: /etc/consul.conf | |
# pidfile: /var/run/consul.pid |
stubbornella: Why do people hate promises so much? [http://twitter.com/stubbornella/status/443905863049158656]
stubbornella: なんでみんなpromiseそんなに嫌いなの?
substack: @stubbornella chaining DSLs are cumbersome and promises turn verbs into nouns, java-style [http://twitter.com/substack/status/443934916581920768]
substack: chaining DSLは複雑だし、promiseは動詞を名刺にしないといけないよね、javaっぽい。
※ chaining DSL例
ここに全部書いてます
brew install autoconf | |
brew install automake | |
brew install libtool | |
brew install nasm | |
brew install apple-gcc42 | |
cd /usr/local/src/ | |
git clone [email protected]:mozilla/mozjpeg.git | |
cd mozjpeg/ | |
git checkout v1.0 |
I needed a newer version of ImageMagick than is available on the yum packages on Amazon Linux. I tried using the remi repo but it failed with dependency errors. Here is what I did to install ImageMagick with support for PNG, JPG, and TIFF.
download the most recent package
wget http://www.imagemagick.org/download/ImageMagick.tar.gz
uncomress the package
class SimpleSearchForm | |
include ActiveAttr::Model | |
class_attribute :_search_model | |
class_attribute :_like_attributes | |
class_attribute :_equal_attributes | |
class_attribute :_join_tables | |
self._like_attributes = [] | |
self._equal_attributes = [] |