guard-cunit 0.0.1-x86-linux

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (63) hide show
  1. data/.travis.yml +11 -0
  2. data/CHANGELOG.md +1 -0
  3. data/Gemfile +6 -0
  4. data/Guardfile +11 -0
  5. data/README.md +70 -0
  6. data/Rakefile +24 -0
  7. data/doc/Gemfile.html +110 -0
  8. data/doc/Guard/Cunit/CunitParser.html +396 -0
  9. data/doc/Guard/Cunit/Runner.html +522 -0
  10. data/doc/Guard/Cunit.html +278 -0
  11. data/doc/Guard/CunitGuard.html +156 -0
  12. data/doc/Guard/Dsl.html +338 -0
  13. data/doc/Guard.html +149 -0
  14. data/doc/Guardfile.html +116 -0
  15. data/doc/Object.html +359 -0
  16. data/doc/Rakefile.html +132 -0
  17. data/doc/TempPrjEnv.html +239 -0
  18. data/doc/TestOutput.html +235 -0
  19. data/doc/created.rid +12 -0
  20. data/doc/images/add.png +0 -0
  21. data/doc/images/brick.png +0 -0
  22. data/doc/images/brick_link.png +0 -0
  23. data/doc/images/bug.png +0 -0
  24. data/doc/images/bullet_black.png +0 -0
  25. data/doc/images/bullet_toggle_minus.png +0 -0
  26. data/doc/images/bullet_toggle_plus.png +0 -0
  27. data/doc/images/date.png +0 -0
  28. data/doc/images/delete.png +0 -0
  29. data/doc/images/find.png +0 -0
  30. data/doc/images/loadingAnimation.gif +0 -0
  31. data/doc/images/macFFBgHack.png +0 -0
  32. data/doc/images/package.png +0 -0
  33. data/doc/images/page_green.png +0 -0
  34. data/doc/images/page_white_text.png +0 -0
  35. data/doc/images/page_white_width.png +0 -0
  36. data/doc/images/plugin.png +0 -0
  37. data/doc/images/ruby.png +0 -0
  38. data/doc/images/tag_blue.png +0 -0
  39. data/doc/images/tag_green.png +0 -0
  40. data/doc/images/transparent.png +0 -0
  41. data/doc/images/wrench.png +0 -0
  42. data/doc/images/wrench_orange.png +0 -0
  43. data/doc/images/zoom.png +0 -0
  44. data/doc/index.html +102 -0
  45. data/doc/js/darkfish.js +153 -0
  46. data/doc/js/jquery.js +18 -0
  47. data/doc/js/navigation.js +142 -0
  48. data/doc/js/search.js +94 -0
  49. data/doc/js/search_index.js +1 -0
  50. data/doc/js/searcher.js +228 -0
  51. data/doc/lib/guard/cunit/templates/Guardfile.html +115 -0
  52. data/doc/rdoc.css +543 -0
  53. data/doc/table_of_contents.html +157 -0
  54. data/guard-cunit.gemspec +29 -0
  55. data/lib/guard/cunit/cunit_parser.rb +70 -0
  56. data/lib/guard/cunit/runner.rb +99 -0
  57. data/lib/guard/cunit/templates/Guardfile +12 -0
  58. data/lib/guard/cunit/version.rb +7 -0
  59. data/lib/guard/cunit.rb +69 -0
  60. data/spec/guard_cunit_parser_spec.rb +79 -0
  61. data/spec/guard_cunit_spec.rb +198 -0
  62. data/spec/spec_helper.rb +72 -0
  63. metadata +167 -0
metadata ADDED
@@ -0,0 +1,167 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: guard-cunit
3
+ version: !ruby/object:Gem::Version
4
+ prerelease: false
5
+ segments:
6
+ - 0
7
+ - 0
8
+ - 1
9
+ version: 0.0.1
10
+ platform: x86-linux
11
+ authors:
12
+ - Tea Cup On Rocking Chair
13
+ autorequire:
14
+ bindir: bin
15
+ cert_chain: []
16
+
17
+ date: 2012-11-06 00:00:00 +02:00
18
+ default_executable:
19
+ dependencies:
20
+ - !ruby/object:Gem::Dependency
21
+ name: guard
22
+ prerelease: false
23
+ requirement: &id001 !ruby/object:Gem::Requirement
24
+ none: false
25
+ requirements:
26
+ - - ">="
27
+ - !ruby/object:Gem::Version
28
+ segments:
29
+ - 1
30
+ - 1
31
+ version: "1.1"
32
+ type: :runtime
33
+ version_requirements: *id001
34
+ - !ruby/object:Gem::Dependency
35
+ name: bundler
36
+ prerelease: false
37
+ requirement: &id002 !ruby/object:Gem::Requirement
38
+ none: false
39
+ requirements:
40
+ - - ">="
41
+ - !ruby/object:Gem::Version
42
+ segments:
43
+ - 0
44
+ version: "0"
45
+ type: :development
46
+ version_requirements: *id002
47
+ - !ruby/object:Gem::Dependency
48
+ name: rspec
49
+ prerelease: false
50
+ requirement: &id003 !ruby/object:Gem::Requirement
51
+ none: false
52
+ requirements:
53
+ - - ">="
54
+ - !ruby/object:Gem::Version
55
+ segments:
56
+ - 0
57
+ version: "0"
58
+ type: :development
59
+ version_requirements: *id003
60
+ description: Guard Cunit should automatically build your C project and run CUnit based tests
61
+ email:
62
+ - strandjata@gmail.com
63
+ executables: []
64
+
65
+ extensions: []
66
+
67
+ extra_rdoc_files: []
68
+
69
+ files:
70
+ - .travis.yml
71
+ - CHANGELOG.md
72
+ - Gemfile
73
+ - Guardfile
74
+ - README.md
75
+ - Rakefile
76
+ - doc/Gemfile.html
77
+ - doc/Guard.html
78
+ - doc/Guard/Cunit.html
79
+ - doc/Guard/Cunit/CunitParser.html
80
+ - doc/Guard/Cunit/Runner.html
81
+ - doc/Guard/CunitGuard.html
82
+ - doc/Guard/Dsl.html
83
+ - doc/Guardfile.html
84
+ - doc/Object.html
85
+ - doc/Rakefile.html
86
+ - doc/TempPrjEnv.html
87
+ - doc/TestOutput.html
88
+ - doc/created.rid
89
+ - doc/images/add.png
90
+ - doc/images/brick.png
91
+ - doc/images/brick_link.png
92
+ - doc/images/bug.png
93
+ - doc/images/bullet_black.png
94
+ - doc/images/bullet_toggle_minus.png
95
+ - doc/images/bullet_toggle_plus.png
96
+ - doc/images/date.png
97
+ - doc/images/delete.png
98
+ - doc/images/find.png
99
+ - doc/images/loadingAnimation.gif
100
+ - doc/images/macFFBgHack.png
101
+ - doc/images/package.png
102
+ - doc/images/page_green.png
103
+ - doc/images/page_white_text.png
104
+ - doc/images/page_white_width.png
105
+ - doc/images/plugin.png
106
+ - doc/images/ruby.png
107
+ - doc/images/tag_blue.png
108
+ - doc/images/tag_green.png
109
+ - doc/images/transparent.png
110
+ - doc/images/wrench.png
111
+ - doc/images/wrench_orange.png
112
+ - doc/images/zoom.png
113
+ - doc/index.html
114
+ - doc/js/darkfish.js
115
+ - doc/js/jquery.js
116
+ - doc/js/navigation.js
117
+ - doc/js/search.js
118
+ - doc/js/search_index.js
119
+ - doc/js/searcher.js
120
+ - doc/lib/guard/cunit/templates/Guardfile.html
121
+ - doc/rdoc.css
122
+ - doc/table_of_contents.html
123
+ - guard-cunit.gemspec
124
+ - lib/guard/cunit.rb
125
+ - lib/guard/cunit/cunit_parser.rb
126
+ - lib/guard/cunit/runner.rb
127
+ - lib/guard/cunit/templates/Guardfile
128
+ - lib/guard/cunit/version.rb
129
+ - spec/guard_cunit_parser_spec.rb
130
+ - spec/guard_cunit_spec.rb
131
+ - spec/spec_helper.rb
132
+ has_rdoc: true
133
+ homepage: http://teacup-on-rockingchair.github.com/guard-cunit/
134
+ licenses: []
135
+
136
+ post_install_message:
137
+ rdoc_options: []
138
+
139
+ require_paths:
140
+ - lib
141
+ required_ruby_version: !ruby/object:Gem::Requirement
142
+ none: false
143
+ requirements:
144
+ - - ">="
145
+ - !ruby/object:Gem::Version
146
+ segments:
147
+ - 0
148
+ version: "0"
149
+ required_rubygems_version: !ruby/object:Gem::Requirement
150
+ none: false
151
+ requirements:
152
+ - - ">="
153
+ - !ruby/object:Gem::Version
154
+ segments:
155
+ - 0
156
+ version: "0"
157
+ requirements: []
158
+
159
+ rubyforge_project: guard-cunit
160
+ rubygems_version: 1.3.7
161
+ signing_key:
162
+ specification_version: 3
163
+ summary: Guard gem for CUnit-driven projects
164
+ test_files:
165
+ - spec/guard_cunit_parser_spec.rb
166
+ - spec/guard_cunit_spec.rb
167
+ - spec/spec_helper.rb