-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathMakefile
More file actions
30 lines (26 loc) · 793 Bytes
/
Makefile
File metadata and controls
30 lines (26 loc) · 793 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
turnkey_client: turnkey_client_inputs/public_api.swagger.json turnkey_client_inputs/config.json turnkey_client_inputs/templates/*
swagger-codegen generate \
-l ruby \
-i turnkey_client_inputs/public_api.swagger.json \
-o turnkey_client \
-c turnkey_client_inputs/config.json \
-t turnkey_client_inputs/templates \
--remove-operation-id-prefix true \
--disable-examples true
rm -rf turnkey_client/docs turnkey_client/spec
rm turnkey_client/.rubocop.yml
clean:
rm -rf turnkey_client
.PHONY: changeset
changeset:
ruby tool/changeset.rb
.PHONY: version
version:
ruby tool/changeset_version.rb $(v)
.PHONY: changelog
changelog:
ruby tool/changeset_changelog.rb
.PHONY: prepare-release
prepare-release:
ruby tool/changeset_version.rb $(v)
ruby tool/changeset_changelog.rb