Class: RspecProfiling::VCS::Git

Inherits:
Object
  • Object
show all
Defined in:
lib/rspec_profiling/vcs/git.rb

Instance Method Summary collapse

Instance Method Details

#shaObject



6
7
8
# File 'lib/rspec_profiling/vcs/git.rb', line 6

def sha
  `git rev-parse HEAD`
end

#timeObject



10
11
12
# File 'lib/rspec_profiling/vcs/git.rb', line 10

def time
  Time.parse `git show -s --format=%ci #{sha}`
end