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
| // Secrets | |
| const GITHUB_REPO_TOKEN = "deactivated"; // 🔐 Be careful, visible to editors | |
| // ConfigMap | |
| const GITHUB_ORG = "featureflagextensiveconsumer" | |
| /** | |
| * Returns the GitHub search result count for a flag key in an org. | |
| * @param {string} org GitHub organization name | |
| * @param {string} flagKey LaunchDarkly flag key to search |
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
| require 'rubygems' | |
| require 'json' | |
| require 'chunky_png' | |
| PLUTIL = '/usr/bin/plutil' | |
| TEXTUREPACKER = '/usr/local/bin/TexturePacker' | |
| dir = File.join(ARGV[0], '*plist') | |
| out_dir = File.join(Dir.pwd , ARGV[1]) | |
| tmp_dir = "/tmp" |