Sha256: d34a4342b9ecd736b7407f05787d78e02520993c6d3eaffaaeb9c46ee91df2ad
Contents?: true
Size: 909 Bytes
Versions: 2
Compression:
Stored size: 909 Bytes
Contents
module Pronto class Runner include Plugin def initialize(patches, commit = nil) @patches = patches @commit = commit end def self.runners repository end def ruby_patches return [] unless @patches @ruby_patches ||= @patches.select { |patch| patch.additions > 0 } .select { |patch| ruby_file?(patch.new_file_full_path) } end def ruby_file?(path) rb_file?(path) || rake_file?(path) || ruby_executable?(path) end def repo_path @patches.first.repo.path end private def rb_file?(path) File.extname(path) == '.rb' end def rake_file?(path) File.extname(path) == '.rake' end def ruby_executable?(path) return false if File.directory?(path) line = File.open(path, &:readline) line =~ /#!.*ruby/ rescue ArgumentError, EOFError false end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
pronto-0.7.1 | lib/pronto/runner.rb |
pronto-0.7.0 | lib/pronto/runner.rb |