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