該当する各社の対応欄に企業名を書いてください。備考があれば適宜カッコ書きしてください。
- 定時前に帰宅させてくれるホワイトな会社を気軽に作りたい
- 定時前に帰宅させてくれるホワイトな会社がホワイトアピールできる場があれば良いな
module.exports = (robot) => { | |
const okashi = [ | |
'ちろるちょこ', | |
'ポテチ', | |
'スコーン', | |
'チョコあんぱん', | |
'コアラのマーチ', | |
'うまい棒', | |
'おせんべい' | |
]; |
const request = require('request'); | |
module.exports = (robot) => { | |
robot.hear(/六曜/, (msg) => { | |
request.get({ | |
url: 'http://api.sekido.info/qreki?output=json', | |
headers: { | |
'User-Agent': 'Hubot' |
module.exports = (robot) => { | |
robot.hear(/tech.vasily.jp/, (msg) => { | |
// 1つの画像を9つに分解しSlackに登録、botがSlackに投稿する際に以下のように並べる事で大きな画像にする | |
msg.send(":goto1::goto2::goto3:\n:goto4::goto5::goto6: < 序盤、中盤、終盤、スキがないと思います\n:goto7::goto8::goto9:"); | |
}); | |
robot.hear(/(馬鹿|バカ|ばか)に、?してい?るんですか/, (msg) => { | |
msg.send(":goto1::goto2::goto3:\n:goto4::goto5::goto6: < してないです!いい記事だなぁと思って、つい。\n:goto7::goto8::goto9:"); | |
}); | |
}; |
const request = require('request'); | |
module.exports = (robot) => { | |
// Slackへの全ての投稿を監視 | |
robot.catchAll((msg) => { | |
// チャンネル名で絞り込み | |
if (msg.envelope.room === 'Channel name to monitor.') { |
module.exports = (robot) => { | |
const kekka = [ | |
'大吉', | |
'中吉', | |
'凶' | |
]; | |
robot.hear(/^デプロイ占い$/, (msg) => { | |
msg.send(msg.random(kekka)); | |
}); |
Feature: Setting feature | |
Scenario: ログインし「スタッフオススメコーデ」が画面内に表示されるまでスクロール | |
When I press "ログイン" | |
Then I see "Google+でログイン" | |
Then I see "Facebookでログイン" | |
Then I see "Twitterでログイン" | |
Then I enter text "TEST_ACCOUNT_USER_ID" into field with id "account_form" | |
Then I enter text "TEST_ACCOUNT_PASSWORD" into field with id "password_form" | |
Then I press view with id "login_button" |
android { | |
signingConfigs { | |
release { | |
storeFile file(YOUR_KEYSTORE_PATH) | |
storePassword "STORE_PASS" | |
keyAlias "ALIAS" | |
keyPassword "KEY_PASS" | |
} | |
} | |
buildTypes { |
async = require 'async' | |
Soracom = require 'soracom' | |
module.exports = (robot) -> | |
speed = | |
minimum: 's1.minimum' | |
slow: 's1.slow' | |
standard: 's1.standard' | |
fast: 's1.fast' |
Feature: Login feature | |
Scenario: As a valid user I can log into my app | |
When I press "Login" | |
Then I see "Hello world!" |