guard-notifier-git_auto_commit 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
data/.gitignore ADDED
@@ -0,0 +1,17 @@
1
+ *.gem
2
+ *.rbc
3
+ .bundle
4
+ .config
5
+ .yardoc
6
+ Gemfile.lock
7
+ InstalledFiles
8
+ _yardoc
9
+ coverage
10
+ doc/
11
+ lib/bundler/man
12
+ pkg
13
+ rdoc
14
+ spec/reports
15
+ test/tmp
16
+ test/version_tmp
17
+ tmp
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in guard-notifier-git_auto_commit.gemspec
4
+ gemspec
data/LICENSE ADDED
@@ -0,0 +1,22 @@
1
+ Copyright (c) 2012 tomykaira
2
+
3
+ MIT License
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining
6
+ a copy of this software and associated documentation files (the
7
+ "Software"), to deal in the Software without restriction, including
8
+ without limitation the rights to use, copy, modify, merge, publish,
9
+ distribute, sublicense, and/or sell copies of the Software, and to
10
+ permit persons to whom the Software is furnished to do so, subject to
11
+ the following conditions:
12
+
13
+ The above copyright notice and this permission notice shall be
14
+ included in all copies or substantial portions of the Software.
15
+
16
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
20
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
21
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
22
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,44 @@
1
+ # Guard::Notifier::GitAutoCommit
2
+
3
+ This gem is for who forgots to commit after tests pass.
4
+
5
+ When notified from Guard, this gem commits your changes into git with build status.
6
+
7
+ Example of `git log --oneline` after some works:
8
+
9
+ a0f503f success Jasmine results 56 tests, 0 failures, 0.222 secs.
10
+ 792da9c failed Jasmine results 5 tests, 1 failures, 0.07 secs.
11
+ e762d32 failed Jasmine results 5 tests, 1 failures, 0.088 secs.
12
+ c503842 failed Jasmine results 5 tests, 1 failures, 0.073 secs.
13
+ e7ef02f success Spork RSpec successfully started
14
+
15
+ ## Installation
16
+
17
+ Add this line to your application's Gemfile:
18
+
19
+ gem 'guard-notifier-git_auto_commit', group: 'development'
20
+
21
+ And then execute:
22
+
23
+ $ bundle
24
+
25
+ Open your Guardfile, add the following at last.
26
+
27
+ require 'guard-notifier-git_auto_commit'
28
+ notification :git_auto_commit
29
+
30
+ If you want to use this with other notifiers, list them.
31
+
32
+ require 'guard-notifier-git_auto_commit'
33
+ notification :git_auto_commit
34
+ notification :notifysend
35
+
36
+ This generates untidy history. `git-rebase` is your friend.
37
+
38
+ ## Contributing
39
+
40
+ 1. Fork it
41
+ 2. Create your feature branch (`git checkout -b my-new-feature`)
42
+ 3. Commit your changes (`git commit -am 'Added some feature'`)
43
+ 4. Push to the branch (`git push origin my-new-feature`)
44
+ 5. Create new Pull Request
data/Rakefile ADDED
@@ -0,0 +1,2 @@
1
+ #!/usr/bin/env rake
2
+ require "bundler/gem_tasks"
@@ -0,0 +1,20 @@
1
+ # -*- encoding: utf-8 -*-
2
+ require File.expand_path('../lib/guard/notifiers/git_auto_commit', __FILE__)
3
+
4
+ Gem::Specification.new do |gem|
5
+ gem.authors = ["tomykaira"]
6
+ gem.email = ["tomykaira@gmail.com"]
7
+ gem.description = %q{GitAutoCommit receives guard's notification and commit with build status}
8
+ gem.summary = %q{GitAutoCommit receives guard's notification and commit with build status}
9
+ gem.homepage = ""
10
+
11
+ gem.add_dependency('guard', '~>1.2.3')
12
+ gem.add_development_dependency('rake')
13
+
14
+ gem.files = `git ls-files`.split($\)
15
+ gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
16
+ gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
17
+ gem.name = "guard-notifier-git_auto_commit"
18
+ gem.require_paths = ["lib"]
19
+ gem.version = Guard::Notifier::GitAutoCommit::VERSION
20
+ end
@@ -0,0 +1 @@
1
+ require "guard/notifiers/git_auto_commit"
@@ -0,0 +1,45 @@
1
+ require 'guard/notifier'
2
+
3
+ module Guard
4
+ module Notifier
5
+ module GitAutoCommit
6
+ VERSION = "0.1.0"
7
+
8
+ extend self
9
+
10
+ # Test if the current directory is managed using git.
11
+ #
12
+ # @param [Boolean] silent true if no error messages should be shown
13
+ # @return [Boolean] the availability status
14
+ #
15
+ def available?(silent = false)
16
+ system("git status > /dev/null 2> /dev/null")
17
+ end
18
+
19
+ # Show a system notification.
20
+ #
21
+ # @param [String] type the notification type. Either 'success', 'pending', 'failed' or 'notify'
22
+ # @param [String] title the notification title
23
+ # @param [String] message the notification message body
24
+ # @param [String] image the path to the notification image
25
+ # @param [Hash] options additional notification library options
26
+ # @option options [Boolean] sticky make the notification sticky
27
+ # @option options [String, Integer] priority specify an int or named key (default is 0)
28
+ #
29
+ def notify(type, title, message, image, options = { })
30
+ commit_message = [type, title, message].join(' ').gsub(/\r|\n/, '')
31
+ commit_message << "\n\n"
32
+ system("git add -u")
33
+ commit_message << `git diff --cached`
34
+ File.popen("git commit -F -", "r+") do |fd|
35
+ fd.write commit_message
36
+ fd.close
37
+ end
38
+ end
39
+ end
40
+ end
41
+ end
42
+
43
+ if defined?(Guard::Notifier::NOTIFIERS)
44
+ Guard::Notifier::NOTIFIERS[:git_auto_commit] = Guard::Notifier::GitAutoCommit
45
+ end
metadata ADDED
@@ -0,0 +1,91 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: guard-notifier-git_auto_commit
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ prerelease:
6
+ platform: ruby
7
+ authors:
8
+ - tomykaira
9
+ autorequire:
10
+ bindir: bin
11
+ cert_chain: []
12
+ date: 2012-07-27 00:00:00.000000000 Z
13
+ dependencies:
14
+ - !ruby/object:Gem::Dependency
15
+ name: guard
16
+ requirement: !ruby/object:Gem::Requirement
17
+ none: false
18
+ requirements:
19
+ - - ~>
20
+ - !ruby/object:Gem::Version
21
+ version: 1.2.3
22
+ type: :runtime
23
+ prerelease: false
24
+ version_requirements: !ruby/object:Gem::Requirement
25
+ none: false
26
+ requirements:
27
+ - - ~>
28
+ - !ruby/object:Gem::Version
29
+ version: 1.2.3
30
+ - !ruby/object:Gem::Dependency
31
+ name: rake
32
+ requirement: !ruby/object:Gem::Requirement
33
+ none: false
34
+ requirements:
35
+ - - ! '>='
36
+ - !ruby/object:Gem::Version
37
+ version: '0'
38
+ type: :development
39
+ prerelease: false
40
+ version_requirements: !ruby/object:Gem::Requirement
41
+ none: false
42
+ requirements:
43
+ - - ! '>='
44
+ - !ruby/object:Gem::Version
45
+ version: '0'
46
+ description: GitAutoCommit receives guard's notification and commit with build status
47
+ email:
48
+ - tomykaira@gmail.com
49
+ executables: []
50
+ extensions: []
51
+ extra_rdoc_files: []
52
+ files:
53
+ - .gitignore
54
+ - Gemfile
55
+ - LICENSE
56
+ - README.md
57
+ - Rakefile
58
+ - guard-notifier-git_auto_commit.gemspec
59
+ - lib/guard-notifier-git_auto_commit.rb
60
+ - lib/guard/notifiers/git_auto_commit.rb
61
+ homepage: ''
62
+ licenses: []
63
+ post_install_message:
64
+ rdoc_options: []
65
+ require_paths:
66
+ - lib
67
+ required_ruby_version: !ruby/object:Gem::Requirement
68
+ none: false
69
+ requirements:
70
+ - - ! '>='
71
+ - !ruby/object:Gem::Version
72
+ version: '0'
73
+ segments:
74
+ - 0
75
+ hash: 648880847
76
+ required_rubygems_version: !ruby/object:Gem::Requirement
77
+ none: false
78
+ requirements:
79
+ - - ! '>='
80
+ - !ruby/object:Gem::Version
81
+ version: '0'
82
+ segments:
83
+ - 0
84
+ hash: 648880847
85
+ requirements: []
86
+ rubyforge_project:
87
+ rubygems_version: 1.8.24
88
+ signing_key:
89
+ specification_version: 3
90
+ summary: GitAutoCommit receives guard's notification and commit with build status
91
+ test_files: []