16 lines
285 B
Ruby
Executable File
16 lines
285 B
Ruby
Executable File
#!/usr/bin/env ruby
|
|
begin
|
|
require File.expand_path('../../.bundle/environment', __FILE__)
|
|
rescue LoadError
|
|
# Fallback on rubygems
|
|
require "rubygems"
|
|
end
|
|
|
|
require 'git-style-binary/command'
|
|
|
|
GitStyleBinary.primary do
|
|
version "Somewhere between 0 and 0.1"
|
|
|
|
run { educate }
|
|
end
|