This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#/bin/sh -e | |
BASE_DIR=$(cd $(dirname $0) && pwd) | |
PROCESSED=$BASE_DIR/.processed | |
SCRIPTS=$BASE_DIR/scripts | |
[ ! -d $SCRIPTS ] && echo "ERROR: scripts not found" && exit 1 | |
[ ! -d $PROCESSED ] && mkdir $PROCESSED | |
for it in $(ls -l $SCRIPTS); do |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package repositories | |
import javax.inject.Inject | |
import scala.concurrent.ExecutionContext.Implicits.global | |
import scala.concurrent.Future | |
import play.api.db.slick.{DatabaseConfigProvider, HasDatabaseConfigProvider} | |
import com.google.inject.ImplementedBy |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[neocomplete] foldmethod=expr |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React, {Component} from 'react'; | |
import RaisedButton from 'material-ui/RaisedButton'; | |
import TextField from 'material-ui/TextField'; | |
import Dialog from 'material-ui/Dialog'; | |
import FlatButton from 'material-ui/FlatButton'; | |
export default class Component extends Component { | |
constructor(props, context) { | |
super(props, context); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
build: | |
steps: | |
# ... | |
# `git` `openssh-client` がないboxの場合は事前にインストール | |
- script: | |
name: package install | |
code: | | |
yum install -y git openssh-client | |
# see http://devcenter.wercker.com/docs/git/submodules | |
- add-ssh-key: |
OlderNewer