Drop bin/lineprof

Related to: 8bf074a67b

I don't use this anymore.
This commit is contained in:
Takashi Kokubun 2016-12-31 14:43:21 +09:00
parent 2669cd5c03
commit 311c046c65
1 changed files with 0 additions and 48 deletions

View File

@ -1,48 +0,0 @@
#!/usr/bin/env ruby
require 'bundler/setup'
require 'hamlit'
require 'lineprof'
require 'tempfile'
require 'thor'
class CLI < Thor
desc 'render HAML', 'Benchmark render'
def render(file)
haml = File.read(file)
compiled = Hamlit::Engine.new.call(haml)
code = [
'require "lineprof"',
'require "hamlit"',
'Lineprof.profile(/./) do',
'100.times do',
compiled,
'end',
'end',
].join("\n")
file = Tempfile.create('compiled')
file.write(code)
file.close
system("bundle exec ruby #{file.path}")
end
desc 'compile HAML', 'Benchmark compile'
def compile(file)
haml = File.read(file)
Lineprof.profile(/./) do
100.times { Hamlit::Engine.new.call(haml) }
end
end
private
def method_missing(*args)
return super if args.length > 1
render(args.first.to_s)
end
end
CLI.start