git_bpf 0.0.1 → 0.0.2

Sign up to get free protection for your applications and to get access to all the features.
data/README.md CHANGED
@@ -53,6 +53,7 @@ _Requires git >= 1.7.10.x_
53
53
  ### Install git-bpf-init script
54
54
 
55
55
  git_bpf is packaged as a Ruby Gem and hosted on [RubyGems]
56
+
56
57
  gem install git_bpf
57
58
 
58
59
  ### Usage
@@ -1,5 +1,4 @@
1
1
  #!/usr/bin/env ruby
2
2
 
3
- puts "POST-CHECKOUT.rb"
4
3
  # Pull latest conflict resolutions.
5
4
  `git share-rerere pull`
@@ -1,3 +1,3 @@
1
1
  module GitBpf
2
- VERSION = "0.0.1"
2
+ VERSION = "0.0.2"
3
3
  end
metadata CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
5
5
  segments:
6
6
  - 0
7
7
  - 0
8
- - 1
9
- version: 0.0.1
8
+ - 2
9
+ version: 0.0.2
10
10
  platform: ruby
11
11
  authors:
12
12
  - tnightingale
@@ -61,7 +61,6 @@ files:
61
61
  - bin/_git-bpf
62
62
  - bin/git-bpf-init
63
63
  - git_bpf.gemspec
64
- - lib/git-bpf.rb
65
64
  - lib/git_bpf.rb
66
65
  - lib/git_bpf/commands/init.rb
67
66
  - lib/git_bpf/commands/recreate-branch.rb
data/lib/git-bpf.rb DELETED
@@ -1,4 +0,0 @@
1
- #!/usr/bin/env ruby
2
- base_path = File.dirname(__FILE__)
3
- $LOAD_PATH.unshift(base_path) unless $LOAD_PATH.include?(base_path)
4
-