This file contains 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
article, | |
aside, | |
details, | |
figcaption, | |
figure, | |
footer, | |
header, | |
hgroup, | |
main, | |
nav, |
This file contains 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
if you.最初の週? | |
you.すること = 学習 | |
elsif interns.学習週? | |
you.すること = 学習 | |
else | |
you.すること = 作業 | |
end |
This file contains 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 File.expand_path('../../config/boot', __FILE__) | |
require 'rails/all' | |
Bundler.require(*Rails.groups) | |
require 'sass' | |
require 'sass/exec' | |
target_files = ARGV.select {|x| x[-5..-1] == '.sass'} |
This file contains 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
# Description: | |
# Hubot GitHub Notification for each channel | |
# | |
# Commands: | |
# hubot github_notification on <branch> - コミットを通知するブランチを追加 | |
# hubot github_notification off <branch> - 指定のブランチのコミットを通知しないように | |
# hubot github_notification ls - 現在のchannelで設定されているブランチの一覧 | |
# | |
# Author: | |
# @nomnel |
OlderNewer