samflores-autotest-notification 1.8.2

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