big_band 0.2.1

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 (54) hide show
  1. data/LICENSE +27 -0
  2. data/README.rdoc +303 -0
  3. data/README.rdoc.erb +39 -0
  4. data/Rakefile +129 -0
  5. data/big_band.gemspec +29 -0
  6. data/example/example.rb +13 -0
  7. data/example/views/index.haml +8 -0
  8. data/example/views/layout.haml +2 -0
  9. data/example/views/stylesheets/_base.sass +1 -0
  10. data/example/views/stylesheets/screen.sass +12 -0
  11. data/lib/big_band/advanced_routes.rb +184 -0
  12. data/lib/big_band/basic_extensions.rb +176 -0
  13. data/lib/big_band/compass/big_band.rb +4 -0
  14. data/lib/big_band/compass/stylesheets/_big_band.sass +1 -0
  15. data/lib/big_band/compass/stylesheets/big_band/_blueprint.sass +1 -0
  16. data/lib/big_band/compass/stylesheets/big_band/_utilities.sass +6 -0
  17. data/lib/big_band/compass/stylesheets/big_band/blueprint/_html5.sass +4 -0
  18. data/lib/big_band/compass/stylesheets/big_band/layouts/_inspector.sass +103 -0
  19. data/lib/big_band/compass/stylesheets/big_band/utilities/_border_radius.sass +27 -0
  20. data/lib/big_band/compass/stylesheets/big_band/utilities/_css3_prefix.sass +14 -0
  21. data/lib/big_band/compass/stylesheets/big_band/utilities/_fancy_buttons.sass +62 -0
  22. data/lib/big_band/compass/stylesheets/big_band/utilities/_html5.sass +3 -0
  23. data/lib/big_band/compass.rb +94 -0
  24. data/lib/big_band/files/overlay-button.png +0 -0
  25. data/lib/big_band/integration/bacon.rb +10 -0
  26. data/lib/big_band/integration/monk.rb +26 -0
  27. data/lib/big_band/integration/rake.rb +60 -0
  28. data/lib/big_band/integration/rspec.rb +11 -0
  29. data/lib/big_band/integration/test/spec.rb +2 -0
  30. data/lib/big_band/integration/test/unit.rb +2 -0
  31. data/lib/big_band/integration/test.rb +42 -0
  32. data/lib/big_band/integration/test_spec.rb +8 -0
  33. data/lib/big_band/integration/test_unit.rb +10 -0
  34. data/lib/big_band/integration/yard.rb +104 -0
  35. data/lib/big_band/integration.rb +42 -0
  36. data/lib/big_band/more_helpers.rb +50 -0
  37. data/lib/big_band/more_server/rainbows.rb +13 -0
  38. data/lib/big_band/more_server/unicorn.rb +28 -0
  39. data/lib/big_band/more_server.rb +14 -0
  40. data/lib/big_band/reloader.rb +113 -0
  41. data/lib/big_band/sass.rb +28 -0
  42. data/lib/big_band/version.rb +3 -0
  43. data/lib/big_band/web_inspector.rb +178 -0
  44. data/lib/big_band.rb +239 -0
  45. data/lib/big_bang.rb +6 -0
  46. data/lib/yard-sinatra.rb +2 -0
  47. data/spec/big_band/advanced_routes_spec.rb +70 -0
  48. data/spec/big_band/basic_extensions_spec.rb +39 -0
  49. data/spec/big_band/more_server_spec.rb +7 -0
  50. data/spec/big_band/sass_spec.rb +21 -0
  51. data/spec/spec.opts +5 -0
  52. data/spec/spec_helper.rb +4 -0
  53. data/yard-sinatra.gemspec +24 -0
  54. metadata +167 -0
metadata ADDED
@@ -0,0 +1,167 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: big_band
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.2.1
5
+ platform: ruby
6
+ authors:
7
+ - Konstantin Haase
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+
12
+ date: 2009-12-28 00:00:00 +01:00
13
+ default_executable:
14
+ dependencies:
15
+ - !ruby/object:Gem::Dependency
16
+ name: sinatra
17
+ type: :runtime
18
+ version_requirement:
19
+ version_requirements: !ruby/object:Gem::Requirement
20
+ requirements:
21
+ - - ">="
22
+ - !ruby/object:Gem::Version
23
+ version: 0.9.4
24
+ version:
25
+ - !ruby/object:Gem::Dependency
26
+ name: monkey-lib
27
+ type: :runtime
28
+ version_requirement:
29
+ version_requirements: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - ">="
32
+ - !ruby/object:Gem::Version
33
+ version: 0.3.2
34
+ version:
35
+ - !ruby/object:Gem::Dependency
36
+ name: compass
37
+ type: :runtime
38
+ version_requirement:
39
+ version_requirements: !ruby/object:Gem::Requirement
40
+ requirements:
41
+ - - ">="
42
+ - !ruby/object:Gem::Version
43
+ version: 0.8.17
44
+ version:
45
+ - !ruby/object:Gem::Dependency
46
+ name: yard
47
+ type: :runtime
48
+ version_requirement:
49
+ version_requirements: !ruby/object:Gem::Requirement
50
+ requirements:
51
+ - - ">="
52
+ - !ruby/object:Gem::Version
53
+ version: 0.5.2
54
+ version:
55
+ - !ruby/object:Gem::Dependency
56
+ name: rack-test
57
+ type: :runtime
58
+ version_requirement:
59
+ version_requirements: !ruby/object:Gem::Requirement
60
+ requirements:
61
+ - - ">="
62
+ - !ruby/object:Gem::Version
63
+ version: 0.5.3
64
+ version:
65
+ description: Collection of Sinatra extensions and sinatra integration for common tools like Rake, YARD and Monk. See README.rdoc for more infos.
66
+ email: konstantin.mailinglists@googlemail.com
67
+ executables: []
68
+
69
+ extensions: []
70
+
71
+ extra_rdoc_files: []
72
+
73
+ files:
74
+ - big_band.gemspec
75
+ - example/example.rb
76
+ - example/views/index.haml
77
+ - example/views/layout.haml
78
+ - example/views/stylesheets/_base.sass
79
+ - example/views/stylesheets/screen.sass
80
+ - lib/big_band/advanced_routes.rb
81
+ - lib/big_band/basic_extensions.rb
82
+ - lib/big_band/compass/big_band.rb
83
+ - lib/big_band/compass/stylesheets/_big_band.sass
84
+ - lib/big_band/compass/stylesheets/big_band/_blueprint.sass
85
+ - lib/big_band/compass/stylesheets/big_band/_utilities.sass
86
+ - lib/big_band/compass/stylesheets/big_band/blueprint/_html5.sass
87
+ - lib/big_band/compass/stylesheets/big_band/layouts/_inspector.sass
88
+ - lib/big_band/compass/stylesheets/big_band/utilities/_border_radius.sass
89
+ - lib/big_band/compass/stylesheets/big_band/utilities/_css3_prefix.sass
90
+ - lib/big_band/compass/stylesheets/big_band/utilities/_fancy_buttons.sass
91
+ - lib/big_band/compass/stylesheets/big_band/utilities/_html5.sass
92
+ - lib/big_band/compass.rb
93
+ - lib/big_band/files/overlay-button.png
94
+ - lib/big_band/integration/bacon.rb
95
+ - lib/big_band/integration/monk.rb
96
+ - lib/big_band/integration/rake.rb
97
+ - lib/big_band/integration/rspec.rb
98
+ - lib/big_band/integration/test/spec.rb
99
+ - lib/big_band/integration/test/unit.rb
100
+ - lib/big_band/integration/test.rb
101
+ - lib/big_band/integration/test_spec.rb
102
+ - lib/big_band/integration/test_unit.rb
103
+ - lib/big_band/integration/yard.rb
104
+ - lib/big_band/integration.rb
105
+ - lib/big_band/more_helpers.rb
106
+ - lib/big_band/more_server/rainbows.rb
107
+ - lib/big_band/more_server/unicorn.rb
108
+ - lib/big_band/more_server.rb
109
+ - lib/big_band/reloader.rb
110
+ - lib/big_band/sass.rb
111
+ - lib/big_band/version.rb
112
+ - lib/big_band/web_inspector.rb
113
+ - lib/big_band.rb
114
+ - lib/big_bang.rb
115
+ - lib/yard-sinatra.rb
116
+ - LICENSE
117
+ - Rakefile
118
+ - README.rdoc
119
+ - README.rdoc.erb
120
+ - spec/big_band/advanced_routes_spec.rb
121
+ - spec/big_band/basic_extensions_spec.rb
122
+ - spec/big_band/more_server_spec.rb
123
+ - spec/big_band/sass_spec.rb
124
+ - spec/spec.opts
125
+ - spec/spec_helper.rb
126
+ - yard-sinatra.gemspec
127
+ has_rdoc: true
128
+ homepage: http://github.com/rkh/big_band
129
+ licenses: []
130
+
131
+ post_install_message:
132
+ rdoc_options:
133
+ - -a
134
+ - -S
135
+ - -N
136
+ - -m
137
+ - README.rdoc
138
+ - -q
139
+ - -w
140
+ - "2"
141
+ - -t
142
+ - BigBand
143
+ - -c
144
+ - UTF-8
145
+ require_paths:
146
+ - lib
147
+ required_ruby_version: !ruby/object:Gem::Requirement
148
+ requirements:
149
+ - - ">="
150
+ - !ruby/object:Gem::Version
151
+ version: "0"
152
+ version:
153
+ required_rubygems_version: !ruby/object:Gem::Requirement
154
+ requirements:
155
+ - - ">="
156
+ - !ruby/object:Gem::Version
157
+ version: "0"
158
+ version:
159
+ requirements: []
160
+
161
+ rubyforge_project:
162
+ rubygems_version: 1.3.5
163
+ signing_key:
164
+ specification_version: 2
165
+ summary: Collection of Sinatra extensions and sinatra integration for common tools like Rake, YARD and Monk.
166
+ test_files: []
167
+