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
if ENV['CIRCLE_ARTIFACTS'] | |
require 'simplecov' | |
dir = File.join('..', '..', '..', ENV['CIRCLE_ARTIFACTS'], 'coverage') | |
SimpleCov.coverage_dir(dir) | |
end |
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
git log e015e8e..master --merges --ancestry-path --reverse --oneline | head -n1 | awk '{print substr($5, 2)}' |
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
{ | |
"Seti_ClosedFolder_same": true, | |
"Seti_SB_bright": true, | |
"Seti_SB_med": true, | |
"Seti_no_bar_undertabs": true, | |
"Seti_sb_small_padding": true, | |
"Seti_sb_tree_small": true, | |
"Seti_tabs_small": true, | |
"auto_indent": true, | |
"color_scheme": "Packages/Seti_UI/Scheme/Seti_monokai.tmTheme", |
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
class StringEditor | |
def concat_header(file) | |
open(file, 'r+') do |f| | |
f.puts "header\n#{open(file).read}" | |
end | |
end | |
def split | |
system "split -a 1 -l 1 hoge.txt hogehoge_" |
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
options = options.inject({}) { |accu, (key, value)| accu[key.to_sym] = value; accu } |
NewerOlder