dcrec1-autotest-notification 1.7.3

Sign up to get free protection for your applications and to get access to all the features.
Files changed (60) hide show
  1. data/History.txt +58 -0
  2. data/License.txt +20 -0
  3. data/Manifest.txt +59 -0
  4. data/PostInstall.txt +9 -0
  5. data/README.txt +138 -0
  6. data/Rakefile +4 -0
  7. data/autotest-notification.gemspec +49 -0
  8. data/bin/an-install +91 -0
  9. data/bin/an-uninstall +50 -0
  10. data/bin/playsound +0 -0
  11. data/config/hoe.rb +75 -0
  12. data/config/requirements.rb +15 -0
  13. data/images/buuf/fail.png +0 -0
  14. data/images/buuf/pass.png +0 -0
  15. data/images/buuf/pending.png +0 -0
  16. data/images/doom/doom_0.png +0 -0
  17. data/images/doom/doom_1.png +0 -0
  18. data/images/doom/doom_2.png +0 -0
  19. data/images/doom/doom_3.png +0 -0
  20. data/images/doom/doom_4.png +0 -0
  21. data/images/doom/doom_5.png +0 -0
  22. data/images/doom/doom_6.png +0 -0
  23. data/images/fail.png +0 -0
  24. data/images/pass.png +0 -0
  25. data/images/pending.png +0 -0
  26. data/lib/autotest_notification.rb +73 -0
  27. data/lib/autotest_notification/buuf.rb +9 -0
  28. data/lib/autotest_notification/cygwin.rb +14 -0
  29. data/lib/autotest_notification/doom.rb +25 -0
  30. data/lib/autotest_notification/linux.rb +55 -0
  31. data/lib/autotest_notification/mac.rb +25 -0
  32. data/lib/autotest_notification/version.rb +9 -0
  33. data/lib/autotest_notification/windows.rb +11 -0
  34. data/script/console +10 -0
  35. data/script/destroy +14 -0
  36. data/script/generate +14 -0
  37. data/script/txt2html +82 -0
  38. data/setup.rb +1585 -0
  39. data/sounds/doom/0.wav +0 -0
  40. data/sounds/doom/1.wav +0 -0
  41. data/sounds/doom/2.wav +0 -0
  42. data/sounds/doom/3.wav +0 -0
  43. data/sounds/doom/4.wav +0 -0
  44. data/sounds/doom/5.wav +0 -0
  45. data/sounds/doom/6.wav +0 -0
  46. data/tasks/deployment.rake +34 -0
  47. data/tasks/environment.rake +7 -0
  48. data/tasks/website.rake +17 -0
  49. data/test/autotest_notification/test_cygwin.rb +10 -0
  50. data/test/autotest_notification/test_linux.rb +91 -0
  51. data/test/autotest_notification/test_mac.rb +42 -0
  52. data/test/autotest_notification/test_windows.rb +12 -0
  53. data/test/test_autotest_notification.rb +44 -0
  54. data/test/test_helper.rb +25 -0
  55. data/website/index.html +86 -0
  56. data/website/index.txt +83 -0
  57. data/website/javascripts/rounded_corners_lite.inc.js +285 -0
  58. data/website/stylesheets/screen.css +138 -0
  59. data/website/template.html.erb +48 -0
  60. metadata +160 -0
metadata ADDED
@@ -0,0 +1,160 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: dcrec1-autotest-notification
3
+ version: !ruby/object:Gem::Version
4
+ version: 1.7.3
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
+ - Thiago Pradi
14
+ - "Oz\xC3\xA9ias Sant'ana"
15
+ - Samuel Flores
16
+ - Diego Carrion
17
+ autorequire:
18
+ bindir: bin
19
+ cert_chain: []
20
+
21
+ date: 2008-11-14 00:00:00 -08:00
22
+ default_executable:
23
+ dependencies:
24
+ - !ruby/object:Gem::Dependency
25
+ name: ZenTest
26
+ version_requirement:
27
+ version_requirements: !ruby/object:Gem::Requirement
28
+ requirements:
29
+ - - ">="
30
+ - !ruby/object:Gem::Version
31
+ version: 3.9.2
32
+ version:
33
+ - !ruby/object:Gem::Dependency
34
+ name: hoe
35
+ version_requirement:
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - ">="
39
+ - !ruby/object:Gem::Version
40
+ version: 1.8.0
41
+ version:
42
+ description: This gem set the autotest (ZenTest) to send messages to software as Growl, LibNotify, and Snarl, displaying a window with the results.
43
+ email:
44
+ - autotest-notification@carlosbrando.com
45
+ executables:
46
+ - an-install
47
+ - an-uninstall
48
+ - playsound
49
+ extensions: []
50
+
51
+ extra_rdoc_files:
52
+ - History.txt
53
+ - License.txt
54
+ - Manifest.txt
55
+ - PostInstall.txt
56
+ - README.txt
57
+ - website/index.txt
58
+ files:
59
+ - autotest-notification.gemspec
60
+ - History.txt
61
+ - License.txt
62
+ - Manifest.txt
63
+ - PostInstall.txt
64
+ - README.txt
65
+ - Rakefile
66
+ - config/hoe.rb
67
+ - config/requirements.rb
68
+ - lib/autotest_notification.rb
69
+ - lib/autotest_notification/version.rb
70
+ - lib/autotest_notification/linux.rb
71
+ - lib/autotest_notification/windows.rb
72
+ - lib/autotest_notification/cygwin.rb
73
+ - lib/autotest_notification/mac.rb
74
+ - lib/autotest_notification/doom.rb
75
+ - lib/autotest_notification/buuf.rb
76
+ - script/console
77
+ - script/destroy
78
+ - script/generate
79
+ - script/txt2html
80
+ - setup.rb
81
+ - tasks/deployment.rake
82
+ - tasks/environment.rake
83
+ - tasks/website.rake
84
+ - test/test_autotest_notification.rb
85
+ - test/test_helper.rb
86
+ - test/autotest_notification/test_cygwin.rb
87
+ - test/autotest_notification/test_linux.rb
88
+ - test/autotest_notification/test_windows.rb
89
+ - test/autotest_notification/test_mac.rb
90
+ - website/index.html
91
+ - website/index.txt
92
+ - website/javascripts/rounded_corners_lite.inc.js
93
+ - website/stylesheets/screen.css
94
+ - website/template.html.erb
95
+ - bin/an-install
96
+ - bin/an-uninstall
97
+ - bin/playsound
98
+ - images/pass.png
99
+ - images/fail.png
100
+ - images/pending.png
101
+ - images/buuf/fail.png
102
+ - images/buuf/pass.png
103
+ - images/buuf/pending.png
104
+ - images/doom/doom_0.png
105
+ - images/doom/doom_1.png
106
+ - images/doom/doom_2.png
107
+ - images/doom/doom_3.png
108
+ - images/doom/doom_4.png
109
+ - images/doom/doom_5.png
110
+ - images/doom/doom_6.png
111
+ - sounds/doom/0.wav
112
+ - sounds/doom/1.wav
113
+ - sounds/doom/2.wav
114
+ - sounds/doom/3.wav
115
+ - sounds/doom/4.wav
116
+ - sounds/doom/5.wav
117
+ - sounds/doom/6.wav
118
+ has_rdoc: true
119
+ homepage: http://github.com/carlosbrando/autotest-notification/
120
+ post_install_message: |+
121
+
122
+ For more information on autotest_notification, see http://github.com/carlosbrando/autotest-notification/
123
+
124
+ To turn on the notifier you need to run the following command:
125
+ an-install
126
+
127
+ To turn off:
128
+ an-uninstall
129
+
130
+ rdoc_options:
131
+ - --main
132
+ - README.txt
133
+ require_paths:
134
+ - lib
135
+ required_ruby_version: !ruby/object:Gem::Requirement
136
+ requirements:
137
+ - - ">="
138
+ - !ruby/object:Gem::Version
139
+ version: "0"
140
+ version:
141
+ required_rubygems_version: !ruby/object:Gem::Requirement
142
+ requirements:
143
+ - - ">="
144
+ - !ruby/object:Gem::Version
145
+ version: "0"
146
+ version:
147
+ requirements: []
148
+
149
+ rubyforge_project: autotest-notification
150
+ rubygems_version: 1.2.0
151
+ signing_key:
152
+ specification_version: 2
153
+ summary: This gem set the autotest (ZenTest) to send messages to software as Growl, LibNotify, and Snarl, displaying a window with the results.
154
+ test_files:
155
+ - test/autotest_notification/test_cygwin.rb
156
+ - test/autotest_notification/test_linux.rb
157
+ - test/autotest_notification/test_mac.rb
158
+ - test/autotest_notification/test_windows.rb
159
+ - test/test_autotest_notification.rb
160
+ - test/test_helper.rb