Skip to content

Commit

Permalink
Rename spring-mvc to spring, haskell-servant to haskell. Fix slim tar…
Browse files Browse the repository at this point in the history
…gets.
  • Loading branch information
cliffano committed Jul 23, 2017
1 parent 3ad6e04 commit 7933717
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 13 deletions.
18 changes: 9 additions & 9 deletions conf/commands.json
Expand Up @@ -221,17 +221,17 @@
"sinatra-gen": {
"desc": "Generate Sinatra client"
},
"foobar-clean": {
"desc": "Delete the generated foobar client"
"slim-clean": {
"desc": "Delete the generated Slim client"
},
"slim-gen": {
"desc": "Generate XYZ client"
"desc": "Generate Slim client"
},
"foobar-clean": {
"desc": "Delete the generated foobar client"
"spring-clean": {
"desc": "Delete the generated Spring client"
},
"spring-mvc-gen": {
"desc": "Generate XYZ client"
"spring-gen": {
"desc": "Generate Spring client"
},
"dynamic-html-clean": {
"desc": "Delete the generated Dynamic HTML client"
Expand Down Expand Up @@ -299,10 +299,10 @@
"clojure-gen": {
"desc": "Generate Clojure client"
},
"haskell-servant-clean": {
"haskell-clean": {
"desc": "Delete the generated Haskell Servant client"
},
"haskell-servant-gen": {
"haskell-gen": {
"desc": "Generate Haskell Servant client"
}
}
Expand Down
8 changes: 4 additions & 4 deletions conf/tasks.yml
Expand Up @@ -102,9 +102,9 @@ sinatra:
slim:
clean: "rm -rf {outDir}"
gen: "{swaggerCodegen} generate --lang slim --input-spec {apiSpec} --output {outDir} --config {confFile}"
spring-mvc:
spring:
clean: "rm -rf {outDir}"
gen: "{swaggerCodegen} generate --lang spring-mvc --input-spec {apiSpec} --output {outDir} --config {confFile}"
gen: "{swaggerCodegen} generate --lang spring --input-spec {apiSpec} --output {outDir} --config {confFile}"
dynamic-html:
clean: "rm -rf {outDir}"
gen: "{swaggerCodegen} generate --lang dynamic-html --input-spec {apiSpec} --output {outDir} --config {confFile}"
Expand Down Expand Up @@ -138,6 +138,6 @@ CsharpDotNet2:
clojure:
clean: "rm -rf {outDir}"
gen: "{swaggerCodegen} generate --lang clojure --input-spec {apiSpec} --output {outDir} --config {confFile}"
haskell-servant:
haskell:
clean: "rm -rf {outDir}"
gen: "{swaggerCodegen} generate --lang haskell-servant --input-spec {apiSpec} --output {outDir} --config {confFile}"
gen: "{swaggerCodegen} generate --lang haskell --input-spec {apiSpec} --output {outDir} --config {confFile}"

0 comments on commit 7933717

Please sign in to comment.