blackwinter-autotest-notification 1.8.0

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