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
POST /redmine/issues?key=${API_KEY} | |
Content-Type: application/json | |
{ | |
"issue":{ | |
"project_id":${PROJECT_ID}, | |
"subject":${SUBJECT}, | |
"description":${DESCRIPTION}, | |
"tracker_id":${TRACKER_ID} | |
} |
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
aapt dump badging $APK_NAME | grep "package: name" | sed "s/[^']*'\([^']*\)'.*/\1/" |
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
# -*- encoding: utf-8 -*- | |
# -sで指定したディレクトリにある画像をリサイズして-dで指定したディレクトリに出力するよ。 | |
# 今のとこサイズは決め打ちだけどいじりたかったらopt.onに追加してね。 | |
require 'pathname' | |
require 'fileutils' | |
require 'RMagick' | |
require 'optparse' |
NewerOlder