Class: RakeCommit::Commit
- Inherits:
-
Object
- Object
- RakeCommit::Commit
- Defined in:
- lib/rake_commit/commit.rb
Instance Method Summary collapse
Instance Method Details
#commit ⇒ Object
17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 |
# File 'lib/rake_commit/commit.rb', line 17 def commit = { :collapse_commits => true, :incremental => false, :prompt_exclusions => [] } if File.exists?(".rake_commit") defaults = File.read(".rake_commit") = (Shellwords.split(defaults), ) end = (ARGV, ) if git_svn? RakeCommit::GitSvn.new([:prompt_exclusions]).commit elsif git? RakeCommit::Git.new([:collapse_commits], [:incremental], [:prompt_exclusions], [:precommit]).commit else RakeCommit::Svn.new([:prompt_exclusions]).commit end end |
#git? ⇒ Boolean
7 8 9 10 |
# File 'lib/rake_commit/commit.rb', line 7 def git? `git rev-parse` $?.success? end |
#git_svn? ⇒ Boolean
12 13 14 15 |
# File 'lib/rake_commit/commit.rb', line 12 def git_svn? `git svn info 2> /dev/null` $?.success? end |
#parse_options(args, options) ⇒ Object
39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 |
# File 'lib/rake_commit/commit.rb', line 39 def (args, ) parser = OptionParser.new do |opts| opts. = "Usage: rake_commit [OPTIONS]" opts.on("-h", "--help", "Show this message") do puts opts exit end opts.on("-i", "--incremental", "Prompt for a local commit") do [:incremental] = true end opts.on("-n", "--no-collapse", "Run the build and push without collapsing commits") do [:collapse_commits] = false end opts.on("-w", "--without-prompt PROMPT", "Skips the given prompt (author, feature, message)") do |prompt_exclusion| [:prompt_exclusions] << prompt_exclusion end opts.on("-p", "--precommit SCRIPT", "command to run before commiting changes") do |command| [:precommit] = command end end parser.parse(args) end |