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
diff -uprN cairo-1.14.6.orig/src/cairo-ft-font.c cairo-1.14.6/src/cairo-ft-font.c | |
--- cairo-1.14.6.orig/src/cairo-ft-font.c 2016-09-24 22:45:56.000000000 +0900 | |
+++ cairo-1.14.6/src/cairo-ft-font.c 2016-09-24 22:51:12.000000000 +0900 | |
@@ -2258,7 +2258,7 @@ _cairo_ft_scaled_glyph_init (void *abs | |
* Moreover, none of our backends and compositors currently support | |
* color glyphs. As such, this is currently disabled. | |
*/ | |
- /* load_flags |= FT_LOAD_COLOR; */ | |
+ load_flags |= FT_LOAD_COLOR; | |
#endif |
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
# -*- coding: utf-8 -*- | |
AfterStep do |scenario| | |
unless $html_validator | |
FileUtils.rm_rf W3cHtmlValidator::BASE_TMP_DIR | |
FileUtils.mkdir_p W3cHtmlValidator::BASE_TMP_DIR | |
FileUtils.touch File.join(W3cHtmlValidator::BASE_TMP_DIR, "dummy.txt") | |
$html_validator = W3cHtmlValidator.new | |
end | |
$html_validator.validate page.html, current_url |
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
# -*- coding: utf-8 -*- | |
require 'spork' | |
require 'socket' | |
Spork.prefork do | |
require 'cucumber/rails' | |
# read environment variables | |
desired_capabilities = { | |
browserName: (ENV['SELENIUM_DESIRED_BROWSER_NAME'] or "firefox"), |
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/sh | |
# -*- coding: utf-8 -*- | |
# チケット番号付加フック。bleis-hookのパクり | |
# | |
# レポジトリの.git/hooks/commit-msgにコピって、chmod 755 .git/hooks/commit-msg としてください | |
# | |
# ticket/チケット番号 | |
# | |
# とか | |
# |
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/sh | |
# -*- coding: utf-8 -*- | |
# ブランチ名に、ここで指定した文字が含まれる場合、この文字に続く数値がチケット番号であるとする | |
# 例えば PREFIX=ticket- とし、 ticket-123 というブランチで作業した場合、123がチケット番号とする | |
PREFIX=ticket/ | |
commit_msg_path=$1 | |
# ブランチ名を取得 |