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/env ruby | |
require 'json' | |
heroku_app_name = ARGV[0] | |
ssm_path = ARGV[1] | |
profile = 'oneaws-suzuri' | |
region = 'ap-northeast-1' | |
if heroku_app_name.nil? || ssm_path.nil? |
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
{ | |
"editor.fontFamily": "'Source Han Code JP', Menlo, Monaco, 'Courier New', monospace", | |
"editor.fontSize": 12, | |
"editor.tabSize": 2, | |
"editor.minimap.enabled": false, | |
"editor.wordWrap": "on", | |
"editor.formatOnType": true, | |
"editor.formatOnPaste": true, | |
"editor.cursorBlinking": "smooth", | |
"editor.renderWhitespace": "boundary", |
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
--- | |
format_version: 1.2.0 | |
default_step_lib_source: https://github.com/bitrise-io/bitrise-steplib.git | |
trigger_map: | |
- push_branch: "*" | |
workflow: primary | |
- pull_request_source_branch: "*" | |
workflow: primary | |
workflows: | |
primary: |
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
#!/bin/bash | |
# /usr/localをPATHに追加 | |
echo 'export PATH="/usr/local/bin:/usr/local/sbin:$PATH"' >> ~/.bash_profile | |
source ~/.bash_profile | |
# Command line toolsをインストール | |
xcode-select --install | |
# Homebrewをインストール |
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
$(document).on 'page:change', -> | |
# Universal Analytics | |
if window.ga? | |
ga('set', 'location', location.href.split('#')[0]) | |
ga('send', 'pageview') | |
# Classic Analytics | |
if window._gaq? | |
_gaq.push(['_trackPageview']) |