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']) |
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
| --- | |
| 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
| { | |
| "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", |