Sha256: 94414de14934b69e329cab6bafa6578a0294ef01bb4eee333d11e80b8c67ff3e

Contents?: true

Size: 319 Bytes

Versions: 1

Compression:

Stored size: 319 Bytes

Contents

# coding: utf-8

module Githelp
  def changed(since)
    files(true).find_all { |file|
      `git log --oneline --since='#{since}' #{file} | wc` !~ /  0  /
    }
  end
  
  def unchanged(since)
    files(true).find_all { |file|
      `git log --oneline --since='#{since}' #{file} | wc` =~ /  0  /
    }
  end
end

  


Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
githelp-0.1.0 lib/githelp/changes.rb