tchandy-autotest-notification 1.4.0

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