Node.js系のコミュニティを支援してそうな
会社をまとめてみる
Nodesummit: http://nodesummit.com/sponsors/
Nodevember sponsors: http://nodevember.org/sponsors
Node.js Knockout Sponsors: http://nodeknockout.com/sponsors
Node.js系のコミュニティを支援してそうな
会社をまとめてみる
Nodesummit: http://nodesummit.com/sponsors/
Nodevember sponsors: http://nodevember.org/sponsors
Node.js Knockout Sponsors: http://nodeknockout.com/sponsors
| /* | |
| SafariHack | |
| ========== | |
| Use with SIMBL or compatible extension like EasySIMBL. Only tested on OS X 10.10. | |
| LICENSE | |
| ------- | |
| Copyright (c) 2014 Yoshimasa Niwa |
| dependencies: | |
| cache_directories: | |
| - mongodb-linux-x86_64-2.6.4 | |
| pre: | |
| - if [[ ! -d mongodb-linux-x86_64-2.6.4 ]]; then wget http://downloads.mongodb.org/linux/mongodb-linux-x86_64-2.6.4.tgz && tar xvzf mongodb-linux-x86_64-2.6.4.tgz; fi | |
| - sudo /etc/init.d/mongodb stop | |
| - sudo cp mongodb-linux-x86_64-2.6.4/bin/* /usr/bin | |
| - sudo /etc/init.d/mongodb start |
| 更新: | 2024-10-08 |
|---|---|
| 作者: | @voluntas |
| バージョン: | 2024.1 |
| URL: | https://voluntas.github.io/ |
概要
| #!/bin/bash | |
| base_dir=`pwd` | |
| wget https://mecab.googlecode.com/files/mecab-0.996.tar.gz | |
| tar zxfv mecab-0.996.tar.gz | |
| cd mecab-0.996 | |
| ./configure --enable-utf8-only | |
| make | |
| make check |
| #!/bin/sh | |
| GIT='git' | |
| if test `uname` = "Darwin" ; then | |
| SED_OPT='-E' | |
| OPEN='open' | |
| else | |
| SED_OPT='-r' | |
| OPEN='' |
tl;dr IdotabaのGemfileは"全プレ"になりました。ご笑納ください。→ Gemfile
rebuild.fmのep36でお知らせさせていただきました、Idobataの最新版Gemfileプレゼントをお届けいたします。 過日はIdobata会議01への多数のご参加ありがとうございました。おかげさまで盛況なミートアップとなりました。 (当日会場を提供いただいたEngine Yardさまのブログにて、Idobata会議01当日の様子がまとめられています。ありがとうございます!)
| language: objective-c | |
| cache: | |
| directories: | |
| - vendor/bundle | |
| - Pods | |
| install: | |
| - bundle install --path=vendor/bundle --binstubs=vendor/bin | |
| - bundle exec pod install | |
| script: | |
| - '[ ! -z $(echo ${TRAVIS_BRANCH} | grep "^release.*$") ] && CONFIG=release || CONFIG=adhoc' |
| require "rubygems/version" | |
| require "rake/clean" | |
| require "date" | |
| require 'time' | |
| require "json" | |
| require "open3" | |
| # Application info | |
| APP_NAME = "Ubiregi2" | |
| SDK = "iphoneos" |