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
| source 'https://rubygems.org' | |
| gem 'mackerel-client' |
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
| # A Ruby implementation to confirm when assignments happen. | |
| # Inspired by https://ericlippert.com/2019/01/18/indexer-error-cases/ | |
| # Prints | |
| # A | |
| # B | |
| # C | |
| # catch | |
| def a |
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
| import os | |
| import json | |
| from optparse import OptionParser | |
| import http.client | |
| BITRISE_URL = 'api.bitrise.io' | |
| BASE_PATH = '/v0.1' | |
| class BitriseApp: | |
| def __init__(self, slug, repo_slug): |
OlderNewer