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
| const Alexa = require('ask-sdk-core'); | |
| const { | |
| TwitterApi | |
| } = require('twitter-api-v2'); | |
| const twClient = new TwitterApi({ | |
| appKey: 'keyをここに入れる', | |
| appSecret: ‘keyをここに入れる ', | |
| accessToken: 'keyをここに入れる', | |
| accessSecret: 'keyをここに入れる', | |
| }); |
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 'simplecov' | |
| require 'simplecov-rcov' | |
| require 'metric_fu/metrics/rcov/simplecov_formatter' | |
| SimpleCov.formatter = SimpleCov::Formatter::MultiFormatter.new( | |
| [ | |
| SimpleCov::Formatter::RcovFormatter, | |
| SimpleCov::Formatter::MetricFu, | |
| ] | |
| ) |
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
| # 認証ログイン | |
| gem 'devise' | |
| ## 設計/リファクタリング関係 | |
| gem 'cells' | |
| gem 'cells-rails' | |
| gem 'cells-slim' | |
| gem 'reform' | |
| gem 'reform-rails' |
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
| machine: | |
| pre: | |
| - curl -sSL https://s3.amazonaws.com/circle-downloads/install-circleci-docker.sh | bash -s -- 1.10.0 | |
| services: | |
| - docker | |
| dependencies: | |
| cache_directories: | |
| - elasticsearch-2.3.4 | |
| override: |
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
| FROM ruby:2.3.1-alpine | |
| ENV BUILD_PACKAGES="curl-dev ruby-dev build-base bash git openssh nodejs" \ | |
| DEV_PACKAGES="zlib-dev libxml2-dev libxslt-dev tzdata yaml-dev postgresql-dev" \ | |
| RUBY_PACKAGES="ruby-json yaml nodejs" | |
| RUN apk update && \ | |
| apk upgrade && \ | |
| apk add --update\ | |
| $BUILD_PACKAGES \ | |
| $DEV_PACKAGES \ |
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
| function addPrefListItem() { | |
| var form = FormApp.openById('xxxxxxxxxxxxxxxxxxxxxxx'); // フォームのIDを指定 | |
| var item = form.addListItem(); | |
| item.setTitle('住所1(都道府県)') // フォームの質問のタイトル | |
| .setChoices([ | |
| item.createChoice('北海道'), | |
| item.createChoice('青森県'), | |
| item.createChoice('岩手県'), | |
| item.createChoice('宮城県'), | |
| item.createChoice('秋田県'), |