notch8-autotest-notification 1.2.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/History.txt +38 -0
- data/License.txt +20 -0
- data/Manifest.txt +54 -0
- data/PostInstall.txt +9 -0
- data/README.txt +123 -0
- data/Rakefile +4 -0
- data/autotest-notification.gemspec +35 -0
- data/bin/an-install +76 -0
- data/bin/an-uninstall +50 -0
- data/config/hoe.rb +75 -0
- data/config/requirements.rb +15 -0
- data/images/doom/doom_0.png +0 -0
- data/images/doom/doom_1.png +0 -0
- data/images/doom/doom_2.png +0 -0
- data/images/doom/doom_3.png +0 -0
- data/images/doom/doom_4.png +0 -0
- data/images/doom/doom_5.png +0 -0
- data/images/doom/doom_6.png +0 -0
- data/images/fail.png +0 -0
- data/images/pass.png +0 -0
- data/lib/autotest_notification.rb +105 -0
- data/lib/autotest_notification/cygwin.rb +14 -0
- data/lib/autotest_notification/doom.rb +10 -0
- data/lib/autotest_notification/linux.rb +51 -0
- data/lib/autotest_notification/mac.rb +22 -0
- data/lib/autotest_notification/version.rb +9 -0
- data/lib/autotest_notification/windows.rb +11 -0
- data/script/console +10 -0
- data/script/destroy +14 -0
- data/script/generate +14 -0
- data/script/txt2html +82 -0
- data/setup.rb +1585 -0
- data/tasks/deployment.rake +34 -0
- data/tasks/environment.rake +7 -0
- data/tasks/website.rake +17 -0
- data/test/autotest_notification/test_cygwin.rb +11 -0
- data/test/autotest_notification/test_linux.rb +92 -0
- data/test/autotest_notification/test_mac.rb +21 -0
- data/test/autotest_notification/test_windows.rb +13 -0
- data/test/test_autotest_notification.rb +39 -0
- data/test/test_helper.rb +25 -0
- data/website/index.html +141 -0
- data/website/index.txt +83 -0
- data/website/javascripts/rounded_corners_lite.inc.js +285 -0
- data/website/stylesheets/screen.css +138 -0
- data/website/template.html.erb +48 -0
- metadata +133 -0
metadata
ADDED
@@ -0,0 +1,133 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: notch8-autotest-notification
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 1.2.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Carlos Brando
|
8
|
+
- Rodrigo Urubatan
|
9
|
+
- Alexandre da Silva
|
10
|
+
- "Carlos J\xC3\xBAnior"
|
11
|
+
- Davis Zanetti Cabral
|
12
|
+
- "Marcos Tapaj\xC3\xB3s"
|
13
|
+
autorequire:
|
14
|
+
bindir: bin
|
15
|
+
cert_chain: []
|
16
|
+
|
17
|
+
date: 2008-06-17 00:00:00 -07:00
|
18
|
+
default_executable:
|
19
|
+
dependencies:
|
20
|
+
- !ruby/object:Gem::Dependency
|
21
|
+
name: ZenTest
|
22
|
+
version_requirement:
|
23
|
+
version_requirements: !ruby/object:Gem::Requirement
|
24
|
+
requirements:
|
25
|
+
- - ">="
|
26
|
+
- !ruby/object:Gem::Version
|
27
|
+
version: 3.9.2
|
28
|
+
version:
|
29
|
+
description: This gem set the autotest (ZenTest) to send messages to software as Growl, LibNotify, and Snarl, displaying a window with the results.
|
30
|
+
email:
|
31
|
+
- eduardobrando@gmail.com
|
32
|
+
executables:
|
33
|
+
- an-install
|
34
|
+
- an-uninstall
|
35
|
+
extensions: []
|
36
|
+
|
37
|
+
extra_rdoc_files:
|
38
|
+
- History.txt
|
39
|
+
- License.txt
|
40
|
+
- Manifest.txt
|
41
|
+
- PostInstall.txt
|
42
|
+
- README.txt
|
43
|
+
- website/index.txt
|
44
|
+
files:
|
45
|
+
- History.txt
|
46
|
+
- License.txt
|
47
|
+
- Manifest.txt
|
48
|
+
- PostInstall.txt
|
49
|
+
- README.txt
|
50
|
+
- Rakefile
|
51
|
+
- config/hoe.rb
|
52
|
+
- config/requirements.rb
|
53
|
+
- lib/autotest_notification.rb
|
54
|
+
- lib/autotest_notification/version.rb
|
55
|
+
- lib/autotest_notification/linux.rb
|
56
|
+
- lib/autotest_notification/windows.rb
|
57
|
+
- lib/autotest_notification/cygwin.rb
|
58
|
+
- lib/autotest_notification/mac.rb
|
59
|
+
- lib/autotest_notification/doom.rb
|
60
|
+
- script/console
|
61
|
+
- script/destroy
|
62
|
+
- script/generate
|
63
|
+
- script/txt2html
|
64
|
+
- setup.rb
|
65
|
+
- tasks/deployment.rake
|
66
|
+
- tasks/environment.rake
|
67
|
+
- tasks/website.rake
|
68
|
+
- test/test_autotest_notification.rb
|
69
|
+
- test/test_helper.rb
|
70
|
+
- test/autotest_notification/test_cygwin.rb
|
71
|
+
- test/autotest_notification/test_linux.rb
|
72
|
+
- test/autotest_notification/test_windows.rb
|
73
|
+
- test/autotest_notification/test_mac.rb
|
74
|
+
- website/index.html
|
75
|
+
- website/index.txt
|
76
|
+
- website/javascripts/rounded_corners_lite.inc.js
|
77
|
+
- website/stylesheets/screen.css
|
78
|
+
- website/template.html.erb
|
79
|
+
- bin/an-install
|
80
|
+
- bin/an-uninstall
|
81
|
+
- images/pass.png
|
82
|
+
- images/fail.png
|
83
|
+
- autotest-notification.gemspec
|
84
|
+
- images/doom/doom_0.png
|
85
|
+
- images/doom/doom_1.png
|
86
|
+
- images/doom/doom_2.png
|
87
|
+
- images/doom/doom_3.png
|
88
|
+
- images/doom/doom_4.png
|
89
|
+
- images/doom/doom_5.png
|
90
|
+
- images/doom/doom_6.png
|
91
|
+
has_rdoc: true
|
92
|
+
homepage: http://github.com/carlosbrando/autotest-notification/
|
93
|
+
post_install_message: |+
|
94
|
+
|
95
|
+
For more information on autotest_notification, see http://github.com/carlosbrando/autotest-notification/
|
96
|
+
|
97
|
+
To turn on the notifier you need to run the following command:
|
98
|
+
an-install
|
99
|
+
|
100
|
+
To turn off:
|
101
|
+
an-uninstall
|
102
|
+
|
103
|
+
rdoc_options:
|
104
|
+
- --main
|
105
|
+
- README.txt
|
106
|
+
require_paths:
|
107
|
+
- lib
|
108
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
109
|
+
requirements:
|
110
|
+
- - ">="
|
111
|
+
- !ruby/object:Gem::Version
|
112
|
+
version: "0"
|
113
|
+
version:
|
114
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
115
|
+
requirements:
|
116
|
+
- - ">="
|
117
|
+
- !ruby/object:Gem::Version
|
118
|
+
version: "0"
|
119
|
+
version:
|
120
|
+
requirements: []
|
121
|
+
|
122
|
+
rubyforge_project: autotest-notification
|
123
|
+
rubygems_version: 1.0.1
|
124
|
+
signing_key:
|
125
|
+
specification_version: 2
|
126
|
+
summary: This gem set the autotest (ZenTest) to send messages to software as Growl, LibNotify, and Snarl, displaying a window with the results.
|
127
|
+
test_files:
|
128
|
+
- test/autotest_notification/test_cygwin.rb
|
129
|
+
- test/autotest_notification/test_linux.rb
|
130
|
+
- test/autotest_notification/test_mac.rb
|
131
|
+
- test/autotest_notification/test_windows.rb
|
132
|
+
- test/test_autotest_notification.rb
|
133
|
+
- test/test_helper.rb
|