rspec-formatter-git_auto_commit 0.0.1

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 rspec-git-commit-formatter.gemspec
4
+ gemspec
data/LICENSE ADDED
@@ -0,0 +1,22 @@
1
+ Copyright (c) 2012 joker1007
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,48 @@
1
+ # Rspec::Formatter::GitAutoCommit
2
+
3
+ Commits your code automatically, Every time run RSpec (if file changed).
4
+
5
+ This gem is inspired by [guard-notifier-git\_auto\_commit](https://github.com/tomykaira/guard-notifier-git_auto_commit)
6
+
7
+ Git log example:
8
+ ```
9
+ efc829c [green] 101 examples, 0 failures in 9.66 seconds
10
+ 8ccd44a [red] 79 examples, 61 failures in 19.02 seconds
11
+ 6b2d17a [green] 79 examples, 0 failures in 33.43 seconds
12
+ ```
13
+
14
+ ## Installation
15
+
16
+ Add this line to your application's Gemfile:
17
+
18
+ gem 'rspec-formatter-git_auto_commit'
19
+
20
+ And then execute:
21
+
22
+ $ bundle
23
+
24
+ Or install it yourself as:
25
+
26
+ $ gem install rspec-formatter-git_auto_commit
27
+
28
+ ## Usage
29
+
30
+ ```sh
31
+ rspec --format RSpec::Formatter::GitAutoCommit spec
32
+ ```
33
+
34
+ or
35
+
36
+ write .rspec.
37
+ ```
38
+ --format d
39
+ --format RSpec::Formatter::GitAutoCommit
40
+ ```
41
+
42
+ ## Contributing
43
+
44
+ 1. Fork it
45
+ 2. Create your feature branch (`git checkout -b my-new-feature`)
46
+ 3. Commit your changes (`git commit -am 'Added some feature'`)
47
+ 4. Push to the branch (`git push origin my-new-feature`)
48
+ 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 @@
1
+ require "rspec/formatter/git_auto_commit"
@@ -0,0 +1,42 @@
1
+ require "rspec/core/formatters/base_text_formatter"
2
+
3
+ module RSpec
4
+ module Formatter
5
+ class GitAutoCommit < RSpec::Core::Formatters::BaseTextFormatter
6
+ VERSION = "0.0.1"
7
+
8
+ GIT_PROG = ENV["GIT_BIN"] || "git"
9
+
10
+ def dump_summary(duration, example_count, failure_count, pending_count)
11
+ state = failure_count == 0 ? "[green]" : "[red]"
12
+ summary = summary_line(example_count, failure_count, pending_count)
13
+ duration = "in #{format_duration(duration)}"
14
+ commit_message = [state, summary, duration].join(" ")
15
+
16
+ unless failed_examples.empty?
17
+ commit_message << "\n\nFailed Examples:\n\n"
18
+ failed_examples.each_with_index do |example, index|
19
+ commit_message << "#{short_padding}#{index.next}) #{example.full_description}\n\n"
20
+ end
21
+ end
22
+
23
+ system("#{GIT_PROG} add -u")
24
+ commit_message << "\n\n"
25
+ commit_message << `#{GIT_PROG} diff --cached`
26
+
27
+ commit_message << "\n\n"
28
+ commit_message << "File Status:\n"
29
+ commit_message << `#{GIT_PROG} status -s`
30
+
31
+ File.popen("#{GIT_PROG} commit -F -", "r+") do |fd|
32
+ fd.write commit_message
33
+ fd.close
34
+ end
35
+
36
+ log = `#{GIT_PROG} log --oneline -n 1`
37
+ output.puts "\nAuto committed.\n"
38
+ output.puts colorise_summary(log)
39
+ end
40
+ end
41
+ end
42
+ end
@@ -0,0 +1,20 @@
1
+ # -*- encoding: utf-8 -*-
2
+ require File.expand_path('../lib/rspec/formatter/git_auto_commit', __FILE__)
3
+
4
+ Gem::Specification.new do |gem|
5
+ gem.authors = ["joker1007"]
6
+ gem.email = ["kakyoin.hierophant@gmail.com"]
7
+ gem.description = %q{RSpec git auto commit formatter}
8
+ gem.summary = %q{RSpec git auto commit formatter}
9
+ gem.homepage = ""
10
+
11
+ gem.add_dependency('rspec', '~>2.11.0')
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 = "rspec-formatter-git_auto_commit"
18
+ gem.require_paths = ["lib"]
19
+ gem.version = RSpec::Formatter::GitAutoCommit::VERSION
20
+ end
metadata ADDED
@@ -0,0 +1,91 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: rspec-formatter-git_auto_commit
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ prerelease:
6
+ platform: ruby
7
+ authors:
8
+ - joker1007
9
+ autorequire:
10
+ bindir: bin
11
+ cert_chain: []
12
+ date: 2012-10-22 00:00:00.000000000 Z
13
+ dependencies:
14
+ - !ruby/object:Gem::Dependency
15
+ name: rspec
16
+ requirement: !ruby/object:Gem::Requirement
17
+ none: false
18
+ requirements:
19
+ - - ~>
20
+ - !ruby/object:Gem::Version
21
+ version: 2.11.0
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: 2.11.0
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: RSpec git auto commit formatter
47
+ email:
48
+ - kakyoin.hierophant@gmail.com
49
+ executables: []
50
+ extensions: []
51
+ extra_rdoc_files: []
52
+ files:
53
+ - .gitignore
54
+ - Gemfile
55
+ - LICENSE
56
+ - README.md
57
+ - Rakefile
58
+ - lib/rspec-formatter-git_auto_commit.rb
59
+ - lib/rspec/formatter/git_auto_commit.rb
60
+ - rspec-formatter-git_auto_commit.gemspec
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: 4368888585587308104
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: 4368888585587308104
85
+ requirements: []
86
+ rubyforge_project:
87
+ rubygems_version: 1.8.23
88
+ signing_key:
89
+ specification_version: 3
90
+ summary: RSpec git auto commit formatter
91
+ test_files: []