branches 1.0.2 → 1.1.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: fcf964383dcd940e3d555a01a5434692a2b1f7e1
4
- data.tar.gz: 7bb61ffaf20779f6e7b71f395702620cc864411d
3
+ metadata.gz: 0da5c0833785330dc1975c9e786391cd7e93fb3a
4
+ data.tar.gz: 79eab8fdb36512f6c19538c68735587b7f78c678
5
5
  SHA512:
6
- metadata.gz: 4638c8c1d6e73c3749da08fddc95dcf96104330348718cb78e854d9d398e42fa98a9cdd5e18c75b7c14d6c6d4578905ed69451db7eae97364493304ef28fe160
7
- data.tar.gz: daf459831a8b9fd3950e0194fdc37b62a2e178b8237b715a313e90b3faadaa370494dac2baabcf90a91dd8cc0bedf7f327790f6cd5b72f142fd4bd135e221c28
6
+ metadata.gz: 704ed113d908fc389fa69019775f29d47584796934309d451d8876b618eefaa5773aac66c89cbd951436efde036a355119b5d1359e95d9896f0ad1c29020f9fe
7
+ data.tar.gz: f05e72437e5a4640f9f713da261999f15c99b32af268d3e52aa3316d542ff4fb55fdeff0c984081b0a21a13e55f2f6190d08856e74753affbf784b840bedd5f6
data/bin/branches CHANGED
@@ -3,4 +3,4 @@
3
3
  require 'branches'
4
4
 
5
5
  commands = Branches::Commands.new
6
- commands.show_branches_by_date
6
+ puts commands.show_branches_by_date
data/lib/branches.rb CHANGED
@@ -3,7 +3,7 @@ require "branches/version"
3
3
  module Branches
4
4
  class Commands
5
5
  def show_branches_by_date
6
- puts %x[git for-each-ref --sort=-committerdate refs/heads/ --format='%(committerdate:short) %(refname:short)']
6
+ %x[git for-each-ref --sort=-committerdate refs/heads/ --format='%(committerdate:short) %(refname:short)']
7
7
  end
8
8
  end
9
9
  end
@@ -1,3 +1,3 @@
1
1
  module Branches
2
- VERSION = "1.0.2"
2
+ VERSION = "1.1.0"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: branches
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.2
4
+ version: 1.1.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Blake Erickson