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
snakeToCamel: (s) -> | |
s.replace(/(_\w)/g, (m) -> return m[1].toUpperCase() ) | |
snakeToUpperCamel: (s) -> | |
s.charAt(0).toUpperCase() + s.slice(1).replace(/(_\w)/g, (m) -> return m[1].toUpperCase() ) |
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 play.PlayRunHook | |
import sbt._ | |
import Keys._ | |
import play.Play.autoImport._ | |
import play.PlayImport.PlayKeys.playRunHooks | |
import java.net.InetSocketAddress | |
object ApplicationBuild extends Build { | |
import Grunt.GruntTasks |
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
/* | |
* This file was generated by the Gradle 'init' task. | |
* | |
* This generated file contains a sample Scala library project to get you started. | |
* For more details take a look at the Scala plugin chapter in the Gradle | |
* user guide available at https://docs.gradle.org/5.0/userguide/scala_plugin.html | |
*/ | |
plugins { | |
// Apply the scala plugin to add support for Scala |