Skip to content

Instantly share code, notes, and snippets.

@grimrose
grimrose / build.gradle
Created November 2, 2013 17:55
GradleからJRubyを使う為に挑戦した結果
apply plugin: 'java'
repositories {
mavenCentral()
}
buildscript {
repositories { mavenCentral() }
dependencies { gradleApi() }
}
@grimrose
grimrose / yokohama_groovy_20.md
Last active December 29, 2015 05:39
#yokohamagroovy #20
@grimrose
grimrose / stac2013.md
Last active December 29, 2015 20:59
#stac2013

システムテスト自動化カンファレンス2013

よりよいテスト自動化のためにちょっと考えてみませんか? ―スコープ、ROI、プロセスを中心に―

  • 答えを探すためのポイントとは
  • よいテスト自動化とは
    • 自動化の目的
    • 注意すればスムーズに達成できそう?
  • だた自動化するだけでは、よい自動化とはならない。
  • 自動化するには、単に手動の置き換えだけでは足りない。
@grimrose
grimrose / yokohama_devtesting_2.md
Last active January 4, 2016 11:39
#devtesting #2
@grimrose
grimrose / yokohama_groovy_21.md
Last active January 4, 2016 13:29
#yokohamagroovy #21
@grimrose
grimrose / build.gradle
Last active August 29, 2015 13:57
#yokohamagroovy #22
buildscript {
repositories {
mavenLocal()
mavenCentral()
}
dependencies {
classpath group: 'com.danveloper', name: 'provisioning-gradle-plugin', version: '0.1-SNAPSHOT'
}
}
@grimrose
grimrose / vertx_client.rb
Created March 19, 2014 16:07
Vert.xからfluent-plugin-websocketへ繋げる為のVert.x client #shibuyarb
require "vertx"
client = Vertx::HttpClient.new
client.host = 'localhost'
client.port = 9000
client.connect_web_socket('/') do |websocket|
websocket.data_handler do |buffer|
puts "received: #{buffer}"
res ={:status => 'ok', :data => buffer}
@grimrose
grimrose / HelloWorldServer.scala
Created March 24, 2014 11:57
#yurufuwa_scala
import org.vertx.scala.core.http.HttpServerRequest
import org.vertx.scala.platform.Verticle
import java.util.Date
import org.vertx.scala.core.json.Json
class HelloWorldServer extends Verticle {
override def start() {
vertx.createHttpServer().requestHandler {