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
| type: object | |
| description: "Hoge" | |
| properties: | |
| code: | |
| type: string | |
| example: "102-0073" | |
| address: | |
| type: string | |
| example: "東京都千代田区九段北" |
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
| openapi: "3.0.0" | |
| info: | |
| version: "0.0.1" | |
| title: "Example API" | |
| license: | |
| name: "Apache 2.0" | |
| url: "http://www.apache.org/licenses/LICENSE-2.0.html" | |
| servers: | |
| - url: https://api.example.net/ | |
| - url: http://localhost:8080/ |
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
| version: "3.3" | |
| services: | |
| swagger-ui: | |
| image: swaggerapi/swagger-ui | |
| container_name: "swagger-ui" | |
| ports: | |
| - "8082:8080" | |
| volumes: | |
| - ./:/swagger |
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
| FROM node:alpine | |
| RUN npm install -g swagger-merger watch | |
| CMD ["swagger-merger"] |
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
| #!/usr/bin/php | |
| <?php | |
| # Git Prepare Commit Message Hook Script | |
| # | |
| # Location: <repository>/.git/hooks/prepare-commit-msg | |
| # | |
| # This script will automatically add the correct | |
| # Pivotal Ticket ID to the beginning of each commit message | |
| # When the branch ID is starts with the Pivotal Message ID. | |
| # It can be overridden if specified in the message. |
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
| # Titanium builder | |
| alias ti='/Users/XXXXXX/Library/Application\ Support/Titanium/mobilesdk/osx/1.8.2/android/builder.py' | |
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
| " Common ------------------------------- | |
| set nocompatible " vim | |
| colorscheme Metroid " カラースキーマの設定 | |
| set background=light " 背景色の傾向(カラースキーマがそれに併せて色の明暗を変えてくれる) | |
| " File --------------------------------- | |
| set autoread " 更新時自動再読込み | |
| set hidden " 編集中でも他のファイルを開けるようにする | |
| set noswapfile " スワップファイルを作らない | |
| set nobackup " バックアップを取らない |
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
| // リサイズ処理 | |
| $(window).resize((function(){ | |
| var w = document.body.clientWidth; | |
| var h = document.body.clientHeight; | |
| return function(e){ | |
| var currentW = document.body.clientWidth; | |
| var currentH = document.body.clientHeight; | |
| if (w === currentW && h === currentH) { | |
| return; |
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
| # /hotels | |
| # /hotels.json | |
| def show | |
| options = { | |
| :apikey => EAN3_CONFIG["apikey"], | |
| :secret => EAN3_CONFIG["secret"], | |
| :cid => EAN3_CONFIG["cid"], | |
| :minorRev => 12, | |
| :locale => "ja_JP", | |
| :currencyCode => "JPY", |
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
| colorscheme darkblue |
NewerOlder