Skip to content

Commit b0c2966

Browse files
author
Aiden Scandella
committed
First stab at new gem/binary integration
It's not hooked up yet, but we can now build a gem that installs an `overcommit` binary. That binary uses the newly-created Overcommit::CLI class, whose implementation is strikingly similar to that of `scss-lint`. I think Shane did a great job architecting that project, so I'll be following many of the same patterns. Change-Id: I9a2d7bc9c042e5c28385bca3647e4c9e4491350f Reviewed-on: https://gerrit.causes.com/22314 Tested-by: Aiden Scandella <aiden@causes.com> Reviewed-by: Shane da Silva <shane@causes.com>
1 parent 8aa90fd commit b0c2966

File tree

5 files changed

+84
-0
lines changed

5 files changed

+84
-0
lines changed

bin/overcommit

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
#!/usr/bin/env ruby
2+
3+
$: << File.expand_path('../../lib', __FILE__)
4+
5+
require 'overcommit'
6+
require 'overcommit/cli'
7+
8+
Overcommit::CLI.new(ARGV).tap do |cli|
9+
cli.parse_arguments
10+
cli.run
11+
end

lib/overcommit.rb

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
require 'overcommit/version'

lib/overcommit/cli.rb

+47
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
require 'optparse'
2+
3+
module Overcommit
4+
class CLI
5+
6+
def initialize(arguments = [])
7+
@arguments = arguments
8+
@options = {}
9+
end
10+
11+
def parse_arguments
12+
parser = OptionParser.new do |opts|
13+
opts.banner = "Usage: #{opts.program_name} [options] target"
14+
15+
opts.on_tail('-h', '--help', 'Show this message') do
16+
print_help opts.help
17+
end
18+
19+
opts.on_tail('-v', '--version', 'Show version') do
20+
puts VERSION
21+
exit 0
22+
end
23+
end
24+
25+
begin
26+
parser.parse!(@arguments)
27+
28+
# Unconsumed arguments are our targets
29+
@options[:targets] = @arguments
30+
rescue OptionParser::InvalidOption => ex
31+
print_help parser.help, ex
32+
end
33+
end
34+
35+
def run
36+
raise NotImplementedError, 'Nothing to see here yet'
37+
end
38+
39+
private
40+
41+
def print_help(message, ex = nil)
42+
puts ex, '' if ex
43+
puts message
44+
exit 0
45+
end
46+
end
47+
end

lib/overcommit/version.rb

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
module Overcommit
2+
VERSION = '0.1.0'
3+
end

overcommit.gemspec

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
$: << File.expand_path('../lib', __FILE__)
2+
require 'overcommit/version'
3+
4+
Gem::Specification.new do |s|
5+
s.name = 'overcommit'
6+
s.version = Overcommit::VERSION
7+
s.license = 'MIT'
8+
s.date = '2013-05-15'
9+
10+
s.summary = 'Opinionated git hook manager'
11+
s.description = 'Overcommit is a utility to install and extend git hooks'
12+
13+
s.authors = ['Causes Engineering']
14+
s.email = 'eng@causes.com'
15+
s.homepage = 'http://github.com/causes/overcommit'
16+
17+
s.require_paths = %w[lib]
18+
19+
s.executables = ['overcommit']
20+
21+
s.files = `git ls-files -- lib`.split("\n")
22+
end

0 commit comments

Comments
 (0)