autotest-tmux 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/.document +5 -0
- data/.gitignore +21 -0
- data/LICENSE +20 -0
- data/README.rdoc +42 -0
- data/Rakefile +45 -0
- data/VERSION +1 -0
- data/autotest-tmux.gemspec +55 -0
- data/lib/autotest/tmux.rb +149 -0
- data/spec/autotest-tmux_spec.rb +10 -0
- data/spec/spec.opts +3 -0
- data/spec/spec_helper.rb +9 -0
- metadata +76 -0
data/.document
ADDED
data/.gitignore
ADDED
data/LICENSE
ADDED
@@ -0,0 +1,20 @@
|
|
1
|
+
Copyright (c) 2010 MIKAMI Yoshiyuki
|
2
|
+
|
3
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
4
|
+
a copy of this software and associated documentation files (the
|
5
|
+
"Software"), to deal in the Software without restriction, including
|
6
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
7
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
8
|
+
permit persons to whom the Software is furnished to do so, subject to
|
9
|
+
the following conditions:
|
10
|
+
|
11
|
+
The above copyright notice and this permission notice shall be
|
12
|
+
included in all copies or substantial portions of the Software.
|
13
|
+
|
14
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
15
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
16
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
17
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
18
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
19
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
20
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/README.rdoc
ADDED
@@ -0,0 +1,42 @@
|
|
1
|
+
= autotest-tmux
|
2
|
+
|
3
|
+
http://github.com/yoshuki/autotest-tmux/
|
4
|
+
|
5
|
+
== Description
|
6
|
+
|
7
|
+
Autotest::Tmux shows autotest/autospec progress on tmux status-right.
|
8
|
+
|
9
|
+
== Features
|
10
|
+
|
11
|
+
* Screenshots aren't available yet. (but, almost same as autotest_screen[http://f.hatena.ne.jp/yoshuki/autotest_screen/].)
|
12
|
+
|
13
|
+
== Synopsis
|
14
|
+
|
15
|
+
$HOME/.autotest
|
16
|
+
require 'autotest/tmux'
|
17
|
+
# Autotest::Tmux.statusright = '"#22T" %H:%M %d-%b-%y (your statusright)'
|
18
|
+
|
19
|
+
* To prevent server information (like "set option: status-right -> ..."), you should start tmux server with -q option first.
|
20
|
+
|
21
|
+
== Requirements
|
22
|
+
|
23
|
+
* rubygems
|
24
|
+
* autotest
|
25
|
+
|
26
|
+
== Install
|
27
|
+
|
28
|
+
gem install autotest-tmux
|
29
|
+
|
30
|
+
== Note on Patches/Pull Requests
|
31
|
+
|
32
|
+
* Fork the project.
|
33
|
+
* Make your feature addition or bug fix.
|
34
|
+
* Add tests for it. This is important so I don't break it in a
|
35
|
+
future version unintentionally.
|
36
|
+
* Commit, do not mess with rakefile, version, or history.
|
37
|
+
(if you want to have your own version, that is fine but bump version in a commit by itself I can ignore when I pull)
|
38
|
+
* Send me a pull request. Bonus points for topic branches.
|
39
|
+
|
40
|
+
== Copyright
|
41
|
+
|
42
|
+
Copyright (c) 2010 MIKAMI Yoshiyuki. See LICENSE for details.
|
data/Rakefile
ADDED
@@ -0,0 +1,45 @@
|
|
1
|
+
require 'rubygems'
|
2
|
+
require 'rake'
|
3
|
+
|
4
|
+
begin
|
5
|
+
require 'jeweler'
|
6
|
+
Jeweler::Tasks.new do |gem|
|
7
|
+
gem.name = "autotest-tmux"
|
8
|
+
gem.summary = %Q{shows autotest/autospec progress on tmux status-right.}
|
9
|
+
gem.description = %Q{shows autotest/autospec progress on tmux status-right.}
|
10
|
+
gem.email = "yoshuki@saikyoline.jp"
|
11
|
+
gem.homepage = "http://github.com/yoshuki/autotest-tmux"
|
12
|
+
gem.authors = ["MIKAMI Yoshiyuki"]
|
13
|
+
gem.add_development_dependency "rspec", ">= 1.2.9"
|
14
|
+
# gem is a Gem::Specification... see http://www.rubygems.org/read/chapter/20 for additional settings
|
15
|
+
end
|
16
|
+
Jeweler::GemcutterTasks.new
|
17
|
+
rescue LoadError
|
18
|
+
puts "Jeweler (or a dependency) not available. Install it with: gem install jeweler"
|
19
|
+
end
|
20
|
+
|
21
|
+
require 'spec/rake/spectask'
|
22
|
+
Spec::Rake::SpecTask.new(:spec) do |spec|
|
23
|
+
spec.libs << 'lib' << 'spec'
|
24
|
+
spec.spec_files = FileList['spec/**/*_spec.rb']
|
25
|
+
end
|
26
|
+
|
27
|
+
Spec::Rake::SpecTask.new(:rcov) do |spec|
|
28
|
+
spec.libs << 'lib' << 'spec'
|
29
|
+
spec.pattern = 'spec/**/*_spec.rb'
|
30
|
+
spec.rcov = true
|
31
|
+
end
|
32
|
+
|
33
|
+
task :spec => :check_dependencies
|
34
|
+
|
35
|
+
task :default => :spec
|
36
|
+
|
37
|
+
require 'rake/rdoctask'
|
38
|
+
Rake::RDocTask.new do |rdoc|
|
39
|
+
version = File.exist?('VERSION') ? File.read('VERSION') : ""
|
40
|
+
|
41
|
+
rdoc.rdoc_dir = 'rdoc'
|
42
|
+
rdoc.title = "autotest-tmux #{version}"
|
43
|
+
rdoc.rdoc_files.include('README*')
|
44
|
+
rdoc.rdoc_files.include('lib/**/*.rb')
|
45
|
+
end
|
data/VERSION
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
1.0.0
|
@@ -0,0 +1,55 @@
|
|
1
|
+
# Generated by jeweler
|
2
|
+
# DO NOT EDIT THIS FILE DIRECTLY
|
3
|
+
# Instead, edit Jeweler::Tasks in Rakefile, and run the gemspec command
|
4
|
+
# -*- encoding: utf-8 -*-
|
5
|
+
|
6
|
+
Gem::Specification.new do |s|
|
7
|
+
s.name = %q{autotest-tmux}
|
8
|
+
s.version = "1.0.0"
|
9
|
+
|
10
|
+
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
11
|
+
s.authors = ["MIKAMI Yoshiyuki"]
|
12
|
+
s.date = %q{2010-04-01}
|
13
|
+
s.description = %q{shows autotest/autospec progress on tmux status-right.}
|
14
|
+
s.email = %q{yoshuki@saikyoline.jp}
|
15
|
+
s.extra_rdoc_files = [
|
16
|
+
"LICENSE",
|
17
|
+
"README.rdoc"
|
18
|
+
]
|
19
|
+
s.files = [
|
20
|
+
".document",
|
21
|
+
".gitignore",
|
22
|
+
"LICENSE",
|
23
|
+
"README.rdoc",
|
24
|
+
"Rakefile",
|
25
|
+
"VERSION",
|
26
|
+
"autotest-tmux.gemspec",
|
27
|
+
"lib/autotest/tmux.rb",
|
28
|
+
"spec/autotest-tmux_spec.rb",
|
29
|
+
"spec/spec.opts",
|
30
|
+
"spec/spec_helper.rb"
|
31
|
+
]
|
32
|
+
s.homepage = %q{http://github.com/yoshuki/autotest-tmux}
|
33
|
+
s.rdoc_options = ["--charset=UTF-8"]
|
34
|
+
s.require_paths = ["lib"]
|
35
|
+
s.rubygems_version = %q{1.3.5}
|
36
|
+
s.summary = %q{shows autotest/autospec progress on tmux status-right.}
|
37
|
+
s.test_files = [
|
38
|
+
"spec/spec_helper.rb",
|
39
|
+
"spec/autotest-tmux_spec.rb"
|
40
|
+
]
|
41
|
+
|
42
|
+
if s.respond_to? :specification_version then
|
43
|
+
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
|
44
|
+
s.specification_version = 3
|
45
|
+
|
46
|
+
if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
|
47
|
+
s.add_development_dependency(%q<rspec>, [">= 1.2.9"])
|
48
|
+
else
|
49
|
+
s.add_dependency(%q<rspec>, [">= 1.2.9"])
|
50
|
+
end
|
51
|
+
else
|
52
|
+
s.add_dependency(%q<rspec>, [">= 1.2.9"])
|
53
|
+
end
|
54
|
+
end
|
55
|
+
|
@@ -0,0 +1,149 @@
|
|
1
|
+
require 'rubygems'
|
2
|
+
require 'autotest'
|
3
|
+
|
4
|
+
##
|
5
|
+
# Autotest::Tmux shows autotest/autospec progress on tmux status-right.
|
6
|
+
#
|
7
|
+
# == Features
|
8
|
+
# * Screenshots aren't available yet. (but, almost same as autotest_screen[http://f.hatena.ne.jp/yoshuki/autotest_screen/].)
|
9
|
+
#
|
10
|
+
# == Synopsis
|
11
|
+
# $HOME/.autotest
|
12
|
+
# require 'autotest/tmux'
|
13
|
+
# # Autotest::Tmux.statusright = '"#22T" %H:%M %d-%b-%y (your statusright)'
|
14
|
+
#
|
15
|
+
# * To prevent server information (like "set option: status-right -> ..."), you should start tmux server with -q option first.
|
16
|
+
#
|
17
|
+
|
18
|
+
class Autotest::Tmux
|
19
|
+
DEFAULT_STATUSRIGHT = '"#22T" %H:%M %d-%b-%y'
|
20
|
+
DEFAULT_TMUX_CMD = 'tmux'
|
21
|
+
|
22
|
+
SCREEN_COLOR = {
|
23
|
+
:black => ['white', 'black'],
|
24
|
+
:green => ['white', 'green'],
|
25
|
+
:yellow => ['black', 'yellow'],
|
26
|
+
:red => ['white', 'red']
|
27
|
+
}
|
28
|
+
|
29
|
+
def self.message(msg=statusright, color=:black)
|
30
|
+
col = SCREEN_COLOR[color]
|
31
|
+
msg = "#[fg=#{col[0]},bg=#{col[1]}] #{msg} #[default]" unless msg == statusright
|
32
|
+
send_cmd(msg)
|
33
|
+
end
|
34
|
+
|
35
|
+
def self.clear
|
36
|
+
send_cmd('')
|
37
|
+
end
|
38
|
+
|
39
|
+
def self.run_tmux_session?
|
40
|
+
cmd = "#{tmux_cmd} has-session"
|
41
|
+
system cmd
|
42
|
+
end
|
43
|
+
|
44
|
+
def self.execute?
|
45
|
+
!($TESTING || !run_tmux_session?)
|
46
|
+
end
|
47
|
+
|
48
|
+
@statusright = @tmux_cmd = nil
|
49
|
+
def self.statusright; @statusright || DEFAULT_STATUSRIGHT.dup; end
|
50
|
+
def self.statusright=(s); @statusright = s; end
|
51
|
+
def self.tmux_cmd; @tmux_cmd || DEFAULT_TMUX_CMD.dup; end
|
52
|
+
def self.tmux_cmd=(tc); @tmux_cmd = tc; end
|
53
|
+
|
54
|
+
def self.send_cmd(msg)
|
55
|
+
cmd = "#{tmux_cmd} set status-right '#{msg.gsub("'", "\'")}'"
|
56
|
+
system cmd
|
57
|
+
nil
|
58
|
+
end
|
59
|
+
|
60
|
+
@last_message = {}
|
61
|
+
|
62
|
+
# All blocks return false, to execute each of following blocks defined in user's own ".autotest".
|
63
|
+
|
64
|
+
# Do nothing.
|
65
|
+
#Autotest.add_hook :all_good do |at, *args|
|
66
|
+
# next false
|
67
|
+
#end
|
68
|
+
|
69
|
+
Autotest.add_hook :died do |at, *args|
|
70
|
+
message "Exception occured. (#{at.class})", :red
|
71
|
+
next false
|
72
|
+
end
|
73
|
+
|
74
|
+
# Do nothing.
|
75
|
+
#Autotest.add_hook :green do |at, *args|
|
76
|
+
# next false
|
77
|
+
#end
|
78
|
+
|
79
|
+
Autotest.add_hook :initialize do |at, *args|
|
80
|
+
message "Run with #{at.class}" if execute?
|
81
|
+
next false
|
82
|
+
end
|
83
|
+
|
84
|
+
# Do nothing.
|
85
|
+
#Autotest.add_hook :interrupt do |at, *args|
|
86
|
+
# next false
|
87
|
+
#end
|
88
|
+
|
89
|
+
Autotest.add_hook :quit do |at, *args|
|
90
|
+
message if execute?
|
91
|
+
next false
|
92
|
+
end
|
93
|
+
|
94
|
+
Autotest.add_hook :ran_command do |at, *args|
|
95
|
+
next false unless execute?
|
96
|
+
|
97
|
+
output = at.results.join
|
98
|
+
|
99
|
+
case at.class.name
|
100
|
+
when 'Autotest', 'Autotest::Rails'
|
101
|
+
results = output.scan(/(\d+)\s*failures?,\s*(\d+)\s*errors?/).first
|
102
|
+
num_failures, num_errors = results.map{|r| r.to_i}
|
103
|
+
|
104
|
+
if num_failures > 0 || num_errors > 0
|
105
|
+
@last_message = {:message => "Red F:#{num_failures} E:#{num_errors}", :color => :red}
|
106
|
+
else
|
107
|
+
@last_message = {:message => 'All Green', :color => :green}
|
108
|
+
end
|
109
|
+
when 'Autotest::Rspec', 'Autotest::RailsRspec', 'Autotest::MerbRspec'
|
110
|
+
results = output.scan(/(\d+)\s*examples?,\s*(\d+)\s*failures?(?:,\s*(\d+)\s*pendings?)?/).first
|
111
|
+
num_examples, num_failures, num_pendings = results.map{|r| r.to_i}
|
112
|
+
|
113
|
+
if num_failures > 0
|
114
|
+
@last_message = {:message => "Fail F:#{num_failures} P:#{num_pendings}", :color => :red}
|
115
|
+
elsif num_pendings > 0
|
116
|
+
@last_message = {:message => "Pend F:#{num_failures} P:#{num_pendings}", :color => :yellow}
|
117
|
+
else
|
118
|
+
@last_message = {:message => 'All Green', :color => :green}
|
119
|
+
end
|
120
|
+
end
|
121
|
+
next false
|
122
|
+
end
|
123
|
+
|
124
|
+
# Do nothing.
|
125
|
+
#Autotest.add_hook :red do |at, *args|
|
126
|
+
# next false
|
127
|
+
#end
|
128
|
+
|
129
|
+
# Do nothing.
|
130
|
+
#Autotest.add_hook :reset do |at, *args|
|
131
|
+
# next false
|
132
|
+
#end
|
133
|
+
|
134
|
+
Autotest.add_hook :run_command do |at, *args|
|
135
|
+
message 'Running' if execute?
|
136
|
+
next false
|
137
|
+
end
|
138
|
+
|
139
|
+
# Do nothing.
|
140
|
+
#Autotest.add_hook :updated do |at, *args|
|
141
|
+
# next false
|
142
|
+
#end
|
143
|
+
|
144
|
+
Autotest.add_hook :waiting do |at, *args|
|
145
|
+
sleep 0.5
|
146
|
+
message @last_message[:message], @last_message[:color] if execute?
|
147
|
+
next false
|
148
|
+
end
|
149
|
+
end
|
@@ -0,0 +1,10 @@
|
|
1
|
+
require File.expand_path(File.dirname(__FILE__) + '/spec_helper')
|
2
|
+
|
3
|
+
describe Autotest::Tmux do
|
4
|
+
context 'all added hooks should be called by autotest' do
|
5
|
+
Autotest::HOOKS.keys.each do |hook|
|
6
|
+
subject { Autotest::ALL_HOOKS }
|
7
|
+
it { should include(hook) }
|
8
|
+
end
|
9
|
+
end
|
10
|
+
end
|
data/spec/spec.opts
ADDED
data/spec/spec_helper.rb
ADDED
metadata
ADDED
@@ -0,0 +1,76 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: autotest-tmux
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 1.0.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- MIKAMI Yoshiyuki
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
|
12
|
+
date: 2010-04-01 00:00:00 +09:00
|
13
|
+
default_executable:
|
14
|
+
dependencies:
|
15
|
+
- !ruby/object:Gem::Dependency
|
16
|
+
name: rspec
|
17
|
+
type: :development
|
18
|
+
version_requirement:
|
19
|
+
version_requirements: !ruby/object:Gem::Requirement
|
20
|
+
requirements:
|
21
|
+
- - ">="
|
22
|
+
- !ruby/object:Gem::Version
|
23
|
+
version: 1.2.9
|
24
|
+
version:
|
25
|
+
description: shows autotest/autospec progress on tmux status-right.
|
26
|
+
email: yoshuki@saikyoline.jp
|
27
|
+
executables: []
|
28
|
+
|
29
|
+
extensions: []
|
30
|
+
|
31
|
+
extra_rdoc_files:
|
32
|
+
- LICENSE
|
33
|
+
- README.rdoc
|
34
|
+
files:
|
35
|
+
- .document
|
36
|
+
- .gitignore
|
37
|
+
- LICENSE
|
38
|
+
- README.rdoc
|
39
|
+
- Rakefile
|
40
|
+
- VERSION
|
41
|
+
- autotest-tmux.gemspec
|
42
|
+
- lib/autotest/tmux.rb
|
43
|
+
- spec/autotest-tmux_spec.rb
|
44
|
+
- spec/spec.opts
|
45
|
+
- spec/spec_helper.rb
|
46
|
+
has_rdoc: true
|
47
|
+
homepage: http://github.com/yoshuki/autotest-tmux
|
48
|
+
licenses: []
|
49
|
+
|
50
|
+
post_install_message:
|
51
|
+
rdoc_options:
|
52
|
+
- --charset=UTF-8
|
53
|
+
require_paths:
|
54
|
+
- lib
|
55
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
56
|
+
requirements:
|
57
|
+
- - ">="
|
58
|
+
- !ruby/object:Gem::Version
|
59
|
+
version: "0"
|
60
|
+
version:
|
61
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
62
|
+
requirements:
|
63
|
+
- - ">="
|
64
|
+
- !ruby/object:Gem::Version
|
65
|
+
version: "0"
|
66
|
+
version:
|
67
|
+
requirements: []
|
68
|
+
|
69
|
+
rubyforge_project:
|
70
|
+
rubygems_version: 1.3.5
|
71
|
+
signing_key:
|
72
|
+
specification_version: 3
|
73
|
+
summary: shows autotest/autospec progress on tmux status-right.
|
74
|
+
test_files:
|
75
|
+
- spec/spec_helper.rb
|
76
|
+
- spec/autotest-tmux_spec.rb
|