PIO-87 Fix doc licensing issues- Is this just PIO-60, PIO-62 and PIO-63? If yes, this ticket should be closed as duplication.
- PIO-86 Maintain a working docker container
- Maybe this topic shouldn't be related with specific PIO version.
- PIO-85 Add a method to make engine IDs settable and used with all workflow phases
- ???
- PIO-82 Improve debugging experience in IntelliJ/Eclipse when developing templates
- ???
This file contains hidden or 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
function peco-git-checkout() { | |
local BRANCH=`git branch -a | peco` | |
if [[ -z "$BRANCH" ]]; then | |
return | |
fi | |
if [[ "$BRANCH" =~ remotes/([^/]*)/(.*) ]]; then | |
git checkout -b ${BASH_REMATCH[2]} ${BASH_REMATCH[1]}/${BASH_REMATCH[2]} | |
else | |
git checkout $BRANCH | |
fi |
This file contains hidden or 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
open-github() { | |
open "https://github.com/search?q=$1+in%3Aname&type=Repositories" | |
} |
This file contains hidden or 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
function peco-sbt-new() { | |
local TEMPLATE=`curl https://github.com/foundweekends/giter8/wiki/giter8-templates -s | grep "\.g8<" | sed -e "s/</ /g" -e "s/>/ /g" | awk '{print $3}' | peco | head -n 1` | |
if [[ -z "$TEMPLATE" ]]; then | |
return | |
fi | |
sbt new $TEMPLATE | |
} |
原文はこちら: https://www.playframework.com/documentation/2.6.x/Highlights26
アプリケーションではplay.api.Play.current
/ play.Play.application()
でグローバルアプリケーションにアクセスできるけど非推奨。以下のようにして禁止することもできる。
play.allowGlobalApplication=false
This file contains hidden or 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 com.example.service; | |
import static org.junit.Assert.*; | |
import static org.mockito.Mockito.*; | |
import java.util.Collections; | |
import com.example.repository.CustomerRepository; | |
import org.junit.Test; | |
import org.junit.runner.RunWith; | |
import org.springframework.beans.factory.annotation.Autowired; |
The main goal of Scalatra 2.6.x is to decrease future maintenance efforts and costs, since there are not enough active committers to maintain the existing huge codebase. To achieve this goal, I propose the followings:
- Follow the Scala standards (e.g. Twirl instead of Scalate, ScalaTest instead of Specs2)
- Deprecate modules that are not used much or not maintained enough
More specific tasks:
This file contains hidden or 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 akka.stream.alpakka.elasticsearch.javadsl | |
import spray.json._ | |
import scala.collection.mutable | |
/** | |
* Helpers to use spray-json in Java. | |
*/ | |
object SprayJsonSupport { |
title | layout | author | date | |
---|---|---|---|---|
Scalatra 2.5.1 is out |
news |
Naoki Takezoe |
takezoen |
2017-06-01 |
The Scalatra team is pleased to announce the release of version 2.5.1 of the framework. This is a maintenance release which fixes some Swagger2 support bugs in 2.5.0.
Hello | World |
Hello | World |
Hello | World |