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
| # Generate files: | |
| # | |
| # ``` | |
| # ruby client_auth_test.rb dir | |
| # ``` | |
| # | |
| # Run Apache HTTP server: | |
| # | |
| # ``` | |
| # apachectl -d dir -f httpd.conf -X |
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
| #!/usr/bin/env ruby | |
| require 'rbconfig' | |
| require 'shellwords' | |
| require 'yaml' | |
| require 'tmpdir' | |
| def get_output(cmd) | |
| IO.popen(cmd, 'r', &:read) | |
| 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
| data=[ | |
| # [ id, input, expected ], | |
| [ -1, "4", "4" ], | |
| [ 0, "4*5+6&7|8", "44" ], | |
| [ 1, "15*5", "75" ], | |
| [ 2, "15+5", "20" ], | |
| [ 3, "15&5", "5" ], | |
| [ 4, "15|5", "15" ], | |
| [ 5, "30*15*5", "2250" ], | |
| [ 6, "30*15+5", "600" ], |
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 --git a/Library/Formula/groonga.rb b/Library/Formula/groonga.rb | |
| index 386e7ca..94e0a41 100644 | |
| --- a/Library/Formula/groonga.rb | |
| +++ b/Library/Formula/groonga.rb | |
| @@ -39,7 +39,7 @@ class Groonga < Formula | |
| --prefix=#{prefix} | |
| --with-zlib | |
| --disable-zeromq | |
| - --with-mruby | |
| + --enable-mruby |
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
| with→enableの間違いを直すとonig-sourceの中身をbuildしてくれなくてコケるという流れ。 | |
| いきなりmake installでなく、いったんmakeすれば回避できるみたい。 | |
| diff --git a/Library/Formula/groonga.rb b/Library/Formula/groonga.rb | |
| index 66a643d..441bddc 100644 | |
| --- a/Library/Formula/groonga.rb | |
| +++ b/Library/Formula/groonga.rb | |
| @@ -28,7 +28,7 @@ class Groonga < Formula | |
| --prefix=#{prefix} | |
| --with-zlib |
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
| #!/usr/bin/env ruby | |
| # encoding: utf-8 | |
| # | |
| # Requirements: | |
| # * groonga command | |
| # * jq command <http://stedolan.github.io/jq/> | |
| # * pry 0.10.x | |
| # | |
| # Configuration: | |
| # * ~/.groonga-pryrc |
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
| # usage: | |
| # ruby manual_import_migrations.rb ../path/to/project/db/migrate/**/*.rb | |
| require 'optparse' | |
| require 'fileutils' | |
| require 'ripper' | |
| def omit_pos(token) | |
| if token.size == 3 && | |
| token[-1].is_a?(Array) && token[-1].size == 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
| require 'action_view' | |
| require 'ruby-beautify' | |
| require 'ripper' | |
| require 'tmpdir' | |
| require 'fileutils' | |
| require 'optparse' | |
| def check_syntax(path, options = {}) | |
| erb = content(path) | |
| code = ruby_code(erb) |
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 'rubygems' | |
| require 'fileutils' | |
| require 'open-uri' | |
| require 'pathname' | |
| task :bundler do | |
| require 'bundler/setup' | |
| Bundler.require(:default) | |
| require 'jekyll' | |
| require './_libs/post_editor' |
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 'tilt' | |
| module Sprockets | |
| class RemoveFontFaceExceptTheFirstOne < Tilt::Template | |
| def prepare | |
| end | |
| def evaluate(context, locals, &block) | |
| found = false | |
| data.gsub(/^@font-face {[^}]*}/) do |