plinth 0.0.1.beta.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (237) hide show
  1. data/.codoopts +10 -0
  2. data/.env +1 -0
  3. data/.gitignore +23 -0
  4. data/.ruby-version +1 -0
  5. data/CHANGELOG.md +1 -0
  6. data/Capfile +4 -0
  7. data/Gemfile +52 -0
  8. data/Gemfile.lock +243 -0
  9. data/Guardfile +9 -0
  10. data/LICENSE +22 -0
  11. data/Procfile +1 -0
  12. data/README.md +79 -0
  13. data/Rakefile +35 -0
  14. data/app/assets/images/layouts/basic-marketing-site.png +0 -0
  15. data/app/assets/images/layouts/jumbotron-site.png +0 -0
  16. data/app/assets/images/rails.png +0 -0
  17. data/app/assets/javascripts/application.js +17 -0
  18. data/app/assets/javascripts/base.js.coffee +3 -0
  19. data/app/assets/javascripts/grids.js.coffee +3 -0
  20. data/app/assets/javascripts/javascript.js.coffee +3 -0
  21. data/app/assets/javascripts/lib/modernizr.js +4 -0
  22. data/app/assets/javascripts/modules.js.coffee +3 -0
  23. data/app/assets/stylesheets/application-old-ie.css.scss +10 -0
  24. data/app/assets/stylesheets/application.css.scss +57 -0
  25. data/app/assets/stylesheets/base/_all.scss +6 -0
  26. data/app/assets/stylesheets/base/_reset.css.scss +16 -0
  27. data/app/assets/stylesheets/base/_type.scss +16 -0
  28. data/app/assets/stylesheets/modules/_coderay.css.scss +171 -0
  29. data/app/assets/stylesheets/modules/_layout_examples.css.scss +13 -0
  30. data/app/assets/stylesheets/modules/_webfont_table.css.scss +47 -0
  31. data/app/assets/stylesheets/vanilla-normal-old-ie.css.scss +11 -0
  32. data/app/assets/stylesheets/vanilla-normal.css.scss +33 -0
  33. data/app/controllers/application_controller.rb +5 -0
  34. data/app/controllers/base_controller.rb +52 -0
  35. data/app/controllers/grids_controller.rb +48 -0
  36. data/app/controllers/javascript_controller.rb +20 -0
  37. data/app/controllers/javascripts_controller.rb +4 -0
  38. data/app/controllers/modules_controller.rb +43 -0
  39. data/app/controllers/ui_controller.rb +2 -0
  40. data/app/helpers/plinth_helper.rb +33 -0
  41. data/app/views/base/_webfonts_social_standard.html +429 -0
  42. data/app/views/base/_webfonts_ss_standard.html +2413 -0
  43. data/app/views/base/buttons.html.haml +20 -0
  44. data/app/views/base/forms.html.haml +40 -0
  45. data/app/views/base/images.html.haml +20 -0
  46. data/app/views/base/index.html.haml +68 -0
  47. data/app/views/base/labels.html.haml +22 -0
  48. data/app/views/base/lists.html.haml +20 -0
  49. data/app/views/base/webfonts.html.haml +17 -0
  50. data/app/views/grids/index.html.haml +73 -0
  51. data/app/views/grids/layouts/basic-marketing-site.haml +69 -0
  52. data/app/views/grids/layouts/jumbotron-site.haml +92 -0
  53. data/app/views/grids/layouts.html.haml +9 -0
  54. data/app/views/layouts/_main_nav.html.haml +15 -0
  55. data/app/views/layouts/application.html.haml +15 -0
  56. data/app/views/modules/alerts.html.haml +12 -0
  57. data/app/views/modules/footer.html.haml +2 -0
  58. data/app/views/modules/index.html.haml +5 -0
  59. data/app/views/modules/nav.html.haml +12 -0
  60. data/app/views/modules/panels.html.haml +3 -0
  61. data/app/views/modules/tabs.html.haml +58 -0
  62. data/app/views/old_javascript/close.html.haml +2 -0
  63. data/app/views/old_javascript/forms.html.haml +2 -0
  64. data/app/views/old_javascript/ga_events.html.haml +2 -0
  65. data/app/views/old_javascript/index.html.haml +2 -0
  66. data/app/views/old_javascript/responsive_resize.html.haml +2 -0
  67. data/app/views/old_javascript/switch.html.haml +2 -0
  68. data/app/views/parts/base/_button.haml +3 -0
  69. data/app/views/parts/base/_button_colours.haml +4 -0
  70. data/app/views/parts/base/_button_group.haml +4 -0
  71. data/app/views/parts/base/_button_sizing.haml +3 -0
  72. data/app/views/parts/base/_button_states.haml +3 -0
  73. data/app/views/parts/base/_form_example.haml +26 -0
  74. data/app/views/parts/base/_form_example_horizontal.haml +26 -0
  75. data/app/views/parts/base/_form_group.haml +10 -0
  76. data/app/views/parts/base/_form_location.haml +3 -0
  77. data/app/views/parts/base/_labels.haml +5 -0
  78. data/app/views/parts/base/_labels_sizing.haml +3 -0
  79. data/app/views/parts/base/_list.haml +10 -0
  80. data/app/views/parts/base/_list_action.haml +5 -0
  81. data/app/views/parts/base/_list_nav.haml +12 -0
  82. data/app/views/parts/base/_list_unset.haml +10 -0
  83. data/app/views/parts/base/_type_body.haml +2 -0
  84. data/app/views/parts/base/_type_headings.haml +5 -0
  85. data/app/views/parts/base/_type_helpers.haml +3 -0
  86. data/app/views/parts/base/_type_links.haml +9 -0
  87. data/app/views/parts/base/_type_shouts.haml +4 -0
  88. data/app/views/parts/grids/_example_layout_1.haml +10 -0
  89. data/app/views/parts/grids/_live_grid.haml +29 -0
  90. data/app/views/parts/modules/_alerts.haml +11 -0
  91. data/app/views/parts/modules/_nav_footer.haml +34 -0
  92. data/app/views/parts/modules/_nav_header.haml +18 -0
  93. data/app/views/parts/modules/_panels.haml +9 -0
  94. data/app/views/parts/modules/_tabs_minimal.haml +11 -0
  95. data/app/views/parts/modules/_tabs_simple_group.haml +11 -0
  96. data/app/views/parts/modules/_tabs_simple_group_toggle.haml +11 -0
  97. data/app/views/parts/modules/_tabs_toggle.haml +5 -0
  98. data/app/views/parts/modules/_tabs_traditional.haml +11 -0
  99. data/app/views/shared/_placeholder_text.html.haml +1 -0
  100. data/app/views/shared/_title.html.haml +8 -0
  101. data/app/views/shared/_ui_nav.html.haml +5 -0
  102. data/app/views/ui/alert.html.haml +35 -0
  103. data/app/views/ui/buttons.html.haml +116 -0
  104. data/app/views/ui/footer.html.haml +69 -0
  105. data/app/views/ui/forms/_vertical_form.haml +7 -0
  106. data/app/views/ui/forms.html.haml +59 -0
  107. data/app/views/ui/grids.html.haml +18 -0
  108. data/app/views/ui/index.html.haml +5 -0
  109. data/app/views/ui/labels.html.haml +15 -0
  110. data/app/views/ui/modules/panel.html.haml +3 -0
  111. data/app/views/ui/nav.html.haml +48 -0
  112. data/app/views/ui/tabs.html.haml +171 -0
  113. data/app/views/ui/typography.html.haml +118 -0
  114. data/db/development.sqlite3 +0 -0
  115. data/db/seeds.rb +7 -0
  116. data/doc/README_FOR_APP +2 -0
  117. data/lib/assets/.gitkeep +0 -0
  118. data/lib/plinth/version.rb +3 -0
  119. data/lib/plinth.rb +11 -0
  120. data/lib/tasks/.gitkeep +0 -0
  121. data/lib/templates/haml/scaffold/_form.html.haml +8 -0
  122. data/log/.gitkeep +0 -0
  123. data/plinth.gemspec +33 -0
  124. data/public/404.html +26 -0
  125. data/public/422.html +26 -0
  126. data/public/500.html +25 -0
  127. data/public/favicon.ico +0 -0
  128. data/public/javascripts/LICENSE.html +158 -0
  129. data/public/javascripts/README.md.html +163 -0
  130. data/public/javascripts/assets/codo.css +1 -0
  131. data/public/javascripts/assets/codo.js +21 -0
  132. data/public/javascripts/assets/search_data.js +1 -0
  133. data/public/javascripts/class_index.html +215 -0
  134. data/public/javascripts/class_list.html +58 -0
  135. data/public/javascripts/classes/Close.html +259 -0
  136. data/public/javascripts/classes/GAEvent.html +231 -0
  137. data/public/javascripts/classes/ResizeHandler.html +225 -0
  138. data/public/javascripts/classes/Switch.html +318 -0
  139. data/public/javascripts/classes/TBGForm.html +373 -0
  140. data/public/javascripts/extra_list.html +36 -0
  141. data/public/javascripts/file_list.html +74 -0
  142. data/public/javascripts/files/styleguide/plugins/tbg-close.js.coffee.html +160 -0
  143. data/public/javascripts/files/styleguide/plugins/tbg-forms.js.coffee.html +160 -0
  144. data/public/javascripts/files/styleguide/plugins/tbg-ga-events.js.coffee.html +160 -0
  145. data/public/javascripts/files/styleguide/plugins/tbg-respinsiveresize.js.coffee.html +160 -0
  146. data/public/javascripts/files/styleguide/plugins/tbg-switch.js.coffee.html +160 -0
  147. data/public/javascripts/index.html +14 -0
  148. data/public/javascripts/method_list.html +187 -0
  149. data/public/javascripts/mixin_list.html +28 -0
  150. data/public/robots.txt +5 -0
  151. data/script/rails +6 -0
  152. data/spec/javascripts/fixtures/plugins/tbg-close_fixture.html.haml +4 -0
  153. data/spec/javascripts/fixtures/plugins/tbg-forms_fixture.html.haml +12 -0
  154. data/spec/javascripts/fixtures/plugins/tbg-ga-events_fixture.html.haml +9 -0
  155. data/spec/javascripts/fixtures/plugins/tbg-switch_fixture.html.haml +11 -0
  156. data/spec/javascripts/plugins/tbg-close_spec.js.coffee +54 -0
  157. data/spec/javascripts/plugins/tbg-forms_spec.js.coffee +87 -0
  158. data/spec/javascripts/plugins/tbg-ga-events_spec.js.coffee +83 -0
  159. data/spec/javascripts/plugins/tbg-switch_spec.js.coffee +96 -0
  160. data/spec/javascripts/spec.js.coffee +2 -0
  161. data/vendor/assets/fonts/ss-social-circle.eot +0 -0
  162. data/vendor/assets/fonts/ss-social-circle.svg +139 -0
  163. data/vendor/assets/fonts/ss-social-circle.ttf +0 -0
  164. data/vendor/assets/fonts/ss-social-circle.woff +0 -0
  165. data/vendor/assets/fonts/ss-social-regular.eot +0 -0
  166. data/vendor/assets/fonts/ss-social-regular.svg +133 -0
  167. data/vendor/assets/fonts/ss-social-regular.ttf +0 -0
  168. data/vendor/assets/fonts/ss-social-regular.woff +0 -0
  169. data/vendor/assets/fonts/ss-social.js +75 -0
  170. data/vendor/assets/fonts/ss-standard.eot +0 -0
  171. data/vendor/assets/fonts/ss-standard.js +75 -0
  172. data/vendor/assets/fonts/ss-standard.svg +207 -0
  173. data/vendor/assets/fonts/ss-standard.ttf +0 -0
  174. data/vendor/assets/fonts/ss-standard.woff +0 -0
  175. data/vendor/assets/images/background.png +0 -0
  176. data/vendor/assets/images/logos/sb-logo-white.png +0 -0
  177. data/vendor/assets/images/logos/sb-logo-white.svg +5 -0
  178. data/vendor/assets/images/middleman.png +0 -0
  179. data/vendor/assets/index.html.haml +8 -0
  180. data/vendor/assets/javascripts/.gitkeep +0 -0
  181. data/vendor/assets/javascripts/plinth/lib/handlebars.js +3 -0
  182. data/vendor/assets/javascripts/plinth/lib/jquery.fitvids.js +81 -0
  183. data/vendor/assets/javascripts/plinth/lib/ss-social.js +75 -0
  184. data/vendor/assets/javascripts/plinth/lib/ss-standard.js +78 -0
  185. data/vendor/assets/javascripts/plinth/plugins/doc/assets/codo.css +1 -0
  186. data/vendor/assets/javascripts/plinth/plugins/doc/assets/codo.js +21 -0
  187. data/vendor/assets/javascripts/plinth/plugins/doc/assets/search_data.js +1 -0
  188. data/vendor/assets/javascripts/plinth/plugins/doc/class_index.html +194 -0
  189. data/vendor/assets/javascripts/plinth/plugins/doc/class_list.html +58 -0
  190. data/vendor/assets/javascripts/plinth/plugins/doc/classes/Close.html +215 -0
  191. data/vendor/assets/javascripts/plinth/plugins/doc/classes/GAEvent.html +235 -0
  192. data/vendor/assets/javascripts/plinth/plugins/doc/classes/ResizeHandler.html +192 -0
  193. data/vendor/assets/javascripts/plinth/plugins/doc/classes/Switch.html +233 -0
  194. data/vendor/assets/javascripts/plinth/plugins/doc/classes/TBGForm.html +318 -0
  195. data/vendor/assets/javascripts/plinth/plugins/doc/extra_list.html +30 -0
  196. data/vendor/assets/javascripts/plinth/plugins/doc/file_list.html +58 -0
  197. data/vendor/assets/javascripts/plinth/plugins/doc/files/tbg-close.js.coffee.html +154 -0
  198. data/vendor/assets/javascripts/plinth/plugins/doc/files/tbg-forms.js.coffee.html +154 -0
  199. data/vendor/assets/javascripts/plinth/plugins/doc/files/tbg-ga-events.js.coffee.html +154 -0
  200. data/vendor/assets/javascripts/plinth/plugins/doc/files/tbg-respinsiveresize.js.coffee.html +154 -0
  201. data/vendor/assets/javascripts/plinth/plugins/doc/files/tbg-switch.js.coffee.html +154 -0
  202. data/vendor/assets/javascripts/plinth/plugins/doc/index.html +14 -0
  203. data/vendor/assets/javascripts/plinth/plugins/doc/method_list.html +163 -0
  204. data/vendor/assets/javascripts/plinth/plugins/doc/mixin_list.html +28 -0
  205. data/vendor/assets/javascripts/plinth/plugins/tbg-close.js.coffee +97 -0
  206. data/vendor/assets/javascripts/plinth/plugins/tbg-forms.js.coffee +156 -0
  207. data/vendor/assets/javascripts/plinth/plugins/tbg-ga-events.js.coffee +107 -0
  208. data/vendor/assets/javascripts/plinth/plugins/tbg-respinsiveresize.js.coffee +73 -0
  209. data/vendor/assets/javascripts/plinth/plugins/tbg-switch.js.coffee +121 -0
  210. data/vendor/assets/stylesheets/.gitkeep +0 -0
  211. data/vendor/assets/stylesheets/_functions.scss +28 -0
  212. data/vendor/assets/stylesheets/_mixins.css.scss +273 -0
  213. data/vendor/assets/stylesheets/_settings.css.scss +120 -0
  214. data/vendor/assets/stylesheets/plinth/base/_all.css.scss +7 -0
  215. data/vendor/assets/stylesheets/plinth/base/_buttons.css.scss +166 -0
  216. data/vendor/assets/stylesheets/plinth/base/_form.css.scss +196 -0
  217. data/vendor/assets/stylesheets/plinth/base/_labels.css.scss +58 -0
  218. data/vendor/assets/stylesheets/plinth/base/_lists.css.scss +57 -0
  219. data/vendor/assets/stylesheets/plinth/base/_reset.css.scss +284 -0
  220. data/vendor/assets/stylesheets/plinth/base/_type.css.scss +328 -0
  221. data/vendor/assets/stylesheets/plinth/base/webfonts/_all.css.scss +2 -0
  222. data/vendor/assets/stylesheets/plinth/base/webfonts/ss-social.css.scss +57 -0
  223. data/vendor/assets/stylesheets/plinth/base/webfonts/ss-standard.css.scss +48 -0
  224. data/vendor/assets/stylesheets/plinth/grid/_grid.css.scss +127 -0
  225. data/vendor/assets/stylesheets/plinth/modules/_alert.css.scss +71 -0
  226. data/vendor/assets/stylesheets/plinth/modules/_all-grid.css.scss +1 -0
  227. data/vendor/assets/stylesheets/plinth/modules/_all-no-grid.css.scss +4 -0
  228. data/vendor/assets/stylesheets/plinth/modules/_footer.css.scss +93 -0
  229. data/vendor/assets/stylesheets/plinth/modules/_nav.css.scss +106 -0
  230. data/vendor/assets/stylesheets/plinth/modules/_panel.css.scss +28 -0
  231. data/vendor/assets/stylesheets/plinth/modules/_switch.css.scss +88 -0
  232. data/vendor/assets/stylesheets/plinth.css.scss +15 -0
  233. data/vendor/assets/views/buttons/_buttons.haml +9 -0
  234. data/vendor/assets/views/forms/_vertical_form.haml +7 -0
  235. data/vendor/assets/views/type/_headings.haml +6 -0
  236. data/vendor/assets/views/type/_paragraphs.haml +4 -0
  237. metadata +537 -0
metadata ADDED
@@ -0,0 +1,537 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: plinth
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1.beta.1
5
+ prerelease: 6
6
+ platform: ruby
7
+ authors:
8
+ - Adam Taylor
9
+ - Vincent Siebert
10
+ autorequire:
11
+ bindir: bin
12
+ cert_chain: []
13
+ date: 2013-12-11 00:00:00.000000000 Z
14
+ dependencies:
15
+ - !ruby/object:Gem::Dependency
16
+ name: haml
17
+ requirement: !ruby/object:Gem::Requirement
18
+ none: false
19
+ requirements:
20
+ - - ! '>='
21
+ - !ruby/object:Gem::Version
22
+ version: '3.1'
23
+ - - <
24
+ - !ruby/object:Gem::Version
25
+ version: '4.1'
26
+ type: :runtime
27
+ prerelease: false
28
+ version_requirements: !ruby/object:Gem::Requirement
29
+ none: false
30
+ requirements:
31
+ - - ! '>='
32
+ - !ruby/object:Gem::Version
33
+ version: '3.1'
34
+ - - <
35
+ - !ruby/object:Gem::Version
36
+ version: '4.1'
37
+ - !ruby/object:Gem::Dependency
38
+ name: activesupport
39
+ requirement: !ruby/object:Gem::Requirement
40
+ none: false
41
+ requirements:
42
+ - - ! '>='
43
+ - !ruby/object:Gem::Version
44
+ version: '3.1'
45
+ - - <
46
+ - !ruby/object:Gem::Version
47
+ version: '4.1'
48
+ type: :runtime
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ none: false
52
+ requirements:
53
+ - - ! '>='
54
+ - !ruby/object:Gem::Version
55
+ version: '3.1'
56
+ - - <
57
+ - !ruby/object:Gem::Version
58
+ version: '4.1'
59
+ - !ruby/object:Gem::Dependency
60
+ name: actionpack
61
+ requirement: !ruby/object:Gem::Requirement
62
+ none: false
63
+ requirements:
64
+ - - ! '>='
65
+ - !ruby/object:Gem::Version
66
+ version: '3.1'
67
+ - - <
68
+ - !ruby/object:Gem::Version
69
+ version: '4.1'
70
+ type: :runtime
71
+ prerelease: false
72
+ version_requirements: !ruby/object:Gem::Requirement
73
+ none: false
74
+ requirements:
75
+ - - ! '>='
76
+ - !ruby/object:Gem::Version
77
+ version: '3.1'
78
+ - - <
79
+ - !ruby/object:Gem::Version
80
+ version: '4.1'
81
+ - !ruby/object:Gem::Dependency
82
+ name: railties
83
+ requirement: !ruby/object:Gem::Requirement
84
+ none: false
85
+ requirements:
86
+ - - ! '>='
87
+ - !ruby/object:Gem::Version
88
+ version: '3.1'
89
+ - - <
90
+ - !ruby/object:Gem::Version
91
+ version: '4.1'
92
+ type: :runtime
93
+ prerelease: false
94
+ version_requirements: !ruby/object:Gem::Requirement
95
+ none: false
96
+ requirements:
97
+ - - ! '>='
98
+ - !ruby/object:Gem::Version
99
+ version: '3.1'
100
+ - - <
101
+ - !ruby/object:Gem::Version
102
+ version: '4.1'
103
+ - !ruby/object:Gem::Dependency
104
+ name: modular-scale
105
+ requirement: !ruby/object:Gem::Requirement
106
+ none: false
107
+ requirements:
108
+ - - ! '>='
109
+ - !ruby/object:Gem::Version
110
+ version: '1.0'
111
+ - - <
112
+ - !ruby/object:Gem::Version
113
+ version: '2.0'
114
+ type: :runtime
115
+ prerelease: false
116
+ version_requirements: !ruby/object:Gem::Requirement
117
+ none: false
118
+ requirements:
119
+ - - ! '>='
120
+ - !ruby/object:Gem::Version
121
+ version: '1.0'
122
+ - - <
123
+ - !ruby/object:Gem::Version
124
+ version: '2.0'
125
+ - !ruby/object:Gem::Dependency
126
+ name: compass-rails
127
+ requirement: !ruby/object:Gem::Requirement
128
+ none: false
129
+ requirements:
130
+ - - ! '>='
131
+ - !ruby/object:Gem::Version
132
+ version: '1.0'
133
+ - - <
134
+ - !ruby/object:Gem::Version
135
+ version: '2.0'
136
+ type: :runtime
137
+ prerelease: false
138
+ version_requirements: !ruby/object:Gem::Requirement
139
+ none: false
140
+ requirements:
141
+ - - ! '>='
142
+ - !ruby/object:Gem::Version
143
+ version: '1.0'
144
+ - - <
145
+ - !ruby/object:Gem::Version
146
+ version: '2.0'
147
+ - !ruby/object:Gem::Dependency
148
+ name: sass-rails
149
+ requirement: !ruby/object:Gem::Requirement
150
+ none: false
151
+ requirements:
152
+ - - ! '>='
153
+ - !ruby/object:Gem::Version
154
+ version: '3.1'
155
+ - - <
156
+ - !ruby/object:Gem::Version
157
+ version: '4.1'
158
+ type: :runtime
159
+ prerelease: false
160
+ version_requirements: !ruby/object:Gem::Requirement
161
+ none: false
162
+ requirements:
163
+ - - ! '>='
164
+ - !ruby/object:Gem::Version
165
+ version: '3.1'
166
+ - - <
167
+ - !ruby/object:Gem::Version
168
+ version: '4.1'
169
+ - !ruby/object:Gem::Dependency
170
+ name: haml-coderay
171
+ requirement: !ruby/object:Gem::Requirement
172
+ none: false
173
+ requirements:
174
+ - - ! '>='
175
+ - !ruby/object:Gem::Version
176
+ version: '0.2'
177
+ - - <
178
+ - !ruby/object:Gem::Version
179
+ version: '0.3'
180
+ type: :runtime
181
+ prerelease: false
182
+ version_requirements: !ruby/object:Gem::Requirement
183
+ none: false
184
+ requirements:
185
+ - - ! '>='
186
+ - !ruby/object:Gem::Version
187
+ version: '0.2'
188
+ - - <
189
+ - !ruby/object:Gem::Version
190
+ version: '0.3'
191
+ - !ruby/object:Gem::Dependency
192
+ name: rails
193
+ requirement: !ruby/object:Gem::Requirement
194
+ none: false
195
+ requirements:
196
+ - - ! '>='
197
+ - !ruby/object:Gem::Version
198
+ version: '3.1'
199
+ - - <
200
+ - !ruby/object:Gem::Version
201
+ version: '4.1'
202
+ type: :development
203
+ prerelease: false
204
+ version_requirements: !ruby/object:Gem::Requirement
205
+ none: false
206
+ requirements:
207
+ - - ! '>='
208
+ - !ruby/object:Gem::Version
209
+ version: '3.1'
210
+ - - <
211
+ - !ruby/object:Gem::Version
212
+ version: '4.1'
213
+ - !ruby/object:Gem::Dependency
214
+ name: bundler
215
+ requirement: !ruby/object:Gem::Requirement
216
+ none: false
217
+ requirements:
218
+ - - ! '>='
219
+ - !ruby/object:Gem::Version
220
+ version: '1.3'
221
+ - - <
222
+ - !ruby/object:Gem::Version
223
+ version: '2.0'
224
+ type: :development
225
+ prerelease: false
226
+ version_requirements: !ruby/object:Gem::Requirement
227
+ none: false
228
+ requirements:
229
+ - - ! '>='
230
+ - !ruby/object:Gem::Version
231
+ version: '1.3'
232
+ - - <
233
+ - !ruby/object:Gem::Version
234
+ version: '2.0'
235
+ - !ruby/object:Gem::Dependency
236
+ name: sqlite3
237
+ requirement: !ruby/object:Gem::Requirement
238
+ none: false
239
+ requirements:
240
+ - - ! '>='
241
+ - !ruby/object:Gem::Version
242
+ version: '1.3'
243
+ - - <
244
+ - !ruby/object:Gem::Version
245
+ version: '2.0'
246
+ type: :development
247
+ prerelease: false
248
+ version_requirements: !ruby/object:Gem::Requirement
249
+ none: false
250
+ requirements:
251
+ - - ! '>='
252
+ - !ruby/object:Gem::Version
253
+ version: '1.3'
254
+ - - <
255
+ - !ruby/object:Gem::Version
256
+ version: '2.0'
257
+ description: Plinth - basic framework
258
+ email:
259
+ - ad@adtaylor.co.uk
260
+ - vincent@siebert.im
261
+ executables: []
262
+ extensions: []
263
+ extra_rdoc_files: []
264
+ files:
265
+ - .codoopts
266
+ - .env
267
+ - .gitignore
268
+ - .ruby-version
269
+ - CHANGELOG.md
270
+ - Capfile
271
+ - Gemfile
272
+ - Gemfile.lock
273
+ - Guardfile
274
+ - LICENSE
275
+ - Procfile
276
+ - README.md
277
+ - Rakefile
278
+ - app/assets/images/layouts/basic-marketing-site.png
279
+ - app/assets/images/layouts/jumbotron-site.png
280
+ - app/assets/images/rails.png
281
+ - app/assets/javascripts/application.js
282
+ - app/assets/javascripts/base.js.coffee
283
+ - app/assets/javascripts/grids.js.coffee
284
+ - app/assets/javascripts/javascript.js.coffee
285
+ - app/assets/javascripts/lib/modernizr.js
286
+ - app/assets/javascripts/modules.js.coffee
287
+ - app/assets/stylesheets/application-old-ie.css.scss
288
+ - app/assets/stylesheets/application.css.scss
289
+ - app/assets/stylesheets/base/_all.scss
290
+ - app/assets/stylesheets/base/_reset.css.scss
291
+ - app/assets/stylesheets/base/_type.scss
292
+ - app/assets/stylesheets/modules/_coderay.css.scss
293
+ - app/assets/stylesheets/modules/_layout_examples.css.scss
294
+ - app/assets/stylesheets/modules/_webfont_table.css.scss
295
+ - app/assets/stylesheets/vanilla-normal-old-ie.css.scss
296
+ - app/assets/stylesheets/vanilla-normal.css.scss
297
+ - app/controllers/application_controller.rb
298
+ - app/controllers/base_controller.rb
299
+ - app/controllers/grids_controller.rb
300
+ - app/controllers/javascript_controller.rb
301
+ - app/controllers/javascripts_controller.rb
302
+ - app/controllers/modules_controller.rb
303
+ - app/controllers/ui_controller.rb
304
+ - app/helpers/plinth_helper.rb
305
+ - app/views/base/_webfonts_social_standard.html
306
+ - app/views/base/_webfonts_ss_standard.html
307
+ - app/views/base/buttons.html.haml
308
+ - app/views/base/forms.html.haml
309
+ - app/views/base/images.html.haml
310
+ - app/views/base/index.html.haml
311
+ - app/views/base/labels.html.haml
312
+ - app/views/base/lists.html.haml
313
+ - app/views/base/webfonts.html.haml
314
+ - app/views/grids/index.html.haml
315
+ - app/views/grids/layouts.html.haml
316
+ - app/views/grids/layouts/basic-marketing-site.haml
317
+ - app/views/grids/layouts/jumbotron-site.haml
318
+ - app/views/layouts/_main_nav.html.haml
319
+ - app/views/layouts/application.html.haml
320
+ - app/views/modules/alerts.html.haml
321
+ - app/views/modules/footer.html.haml
322
+ - app/views/modules/index.html.haml
323
+ - app/views/modules/nav.html.haml
324
+ - app/views/modules/panels.html.haml
325
+ - app/views/modules/tabs.html.haml
326
+ - app/views/old_javascript/close.html.haml
327
+ - app/views/old_javascript/forms.html.haml
328
+ - app/views/old_javascript/ga_events.html.haml
329
+ - app/views/old_javascript/index.html.haml
330
+ - app/views/old_javascript/responsive_resize.html.haml
331
+ - app/views/old_javascript/switch.html.haml
332
+ - app/views/parts/base/_button.haml
333
+ - app/views/parts/base/_button_colours.haml
334
+ - app/views/parts/base/_button_group.haml
335
+ - app/views/parts/base/_button_sizing.haml
336
+ - app/views/parts/base/_button_states.haml
337
+ - app/views/parts/base/_form_example.haml
338
+ - app/views/parts/base/_form_example_horizontal.haml
339
+ - app/views/parts/base/_form_group.haml
340
+ - app/views/parts/base/_form_location.haml
341
+ - app/views/parts/base/_labels.haml
342
+ - app/views/parts/base/_labels_sizing.haml
343
+ - app/views/parts/base/_list.haml
344
+ - app/views/parts/base/_list_action.haml
345
+ - app/views/parts/base/_list_nav.haml
346
+ - app/views/parts/base/_list_unset.haml
347
+ - app/views/parts/base/_type_body.haml
348
+ - app/views/parts/base/_type_headings.haml
349
+ - app/views/parts/base/_type_helpers.haml
350
+ - app/views/parts/base/_type_links.haml
351
+ - app/views/parts/base/_type_shouts.haml
352
+ - app/views/parts/grids/_example_layout_1.haml
353
+ - app/views/parts/grids/_live_grid.haml
354
+ - app/views/parts/modules/_alerts.haml
355
+ - app/views/parts/modules/_nav_footer.haml
356
+ - app/views/parts/modules/_nav_header.haml
357
+ - app/views/parts/modules/_panels.haml
358
+ - app/views/parts/modules/_tabs_minimal.haml
359
+ - app/views/parts/modules/_tabs_simple_group.haml
360
+ - app/views/parts/modules/_tabs_simple_group_toggle.haml
361
+ - app/views/parts/modules/_tabs_toggle.haml
362
+ - app/views/parts/modules/_tabs_traditional.haml
363
+ - app/views/shared/_placeholder_text.html.haml
364
+ - app/views/shared/_title.html.haml
365
+ - app/views/shared/_ui_nav.html.haml
366
+ - app/views/ui/alert.html.haml
367
+ - app/views/ui/buttons.html.haml
368
+ - app/views/ui/footer.html.haml
369
+ - app/views/ui/forms.html.haml
370
+ - app/views/ui/forms/_vertical_form.haml
371
+ - app/views/ui/grids.html.haml
372
+ - app/views/ui/index.html.haml
373
+ - app/views/ui/labels.html.haml
374
+ - app/views/ui/modules/panel.html.haml
375
+ - app/views/ui/nav.html.haml
376
+ - app/views/ui/tabs.html.haml
377
+ - app/views/ui/typography.html.haml
378
+ - db/development.sqlite3
379
+ - db/seeds.rb
380
+ - doc/README_FOR_APP
381
+ - lib/assets/.gitkeep
382
+ - lib/plinth.rb
383
+ - lib/plinth/version.rb
384
+ - lib/tasks/.gitkeep
385
+ - lib/templates/haml/scaffold/_form.html.haml
386
+ - log/.gitkeep
387
+ - plinth.gemspec
388
+ - public/404.html
389
+ - public/422.html
390
+ - public/500.html
391
+ - public/favicon.ico
392
+ - public/javascripts/LICENSE.html
393
+ - public/javascripts/README.md.html
394
+ - public/javascripts/assets/codo.css
395
+ - public/javascripts/assets/codo.js
396
+ - public/javascripts/assets/search_data.js
397
+ - public/javascripts/class_index.html
398
+ - public/javascripts/class_list.html
399
+ - public/javascripts/classes/Close.html
400
+ - public/javascripts/classes/GAEvent.html
401
+ - public/javascripts/classes/ResizeHandler.html
402
+ - public/javascripts/classes/Switch.html
403
+ - public/javascripts/classes/TBGForm.html
404
+ - public/javascripts/extra_list.html
405
+ - public/javascripts/file_list.html
406
+ - public/javascripts/files/styleguide/plugins/tbg-close.js.coffee.html
407
+ - public/javascripts/files/styleguide/plugins/tbg-forms.js.coffee.html
408
+ - public/javascripts/files/styleguide/plugins/tbg-ga-events.js.coffee.html
409
+ - public/javascripts/files/styleguide/plugins/tbg-respinsiveresize.js.coffee.html
410
+ - public/javascripts/files/styleguide/plugins/tbg-switch.js.coffee.html
411
+ - public/javascripts/index.html
412
+ - public/javascripts/method_list.html
413
+ - public/javascripts/mixin_list.html
414
+ - public/robots.txt
415
+ - script/rails
416
+ - spec/javascripts/fixtures/plugins/tbg-close_fixture.html.haml
417
+ - spec/javascripts/fixtures/plugins/tbg-forms_fixture.html.haml
418
+ - spec/javascripts/fixtures/plugins/tbg-ga-events_fixture.html.haml
419
+ - spec/javascripts/fixtures/plugins/tbg-switch_fixture.html.haml
420
+ - spec/javascripts/plugins/tbg-close_spec.js.coffee
421
+ - spec/javascripts/plugins/tbg-forms_spec.js.coffee
422
+ - spec/javascripts/plugins/tbg-ga-events_spec.js.coffee
423
+ - spec/javascripts/plugins/tbg-switch_spec.js.coffee
424
+ - spec/javascripts/spec.js.coffee
425
+ - vendor/assets/fonts/ss-social-circle.eot
426
+ - vendor/assets/fonts/ss-social-circle.svg
427
+ - vendor/assets/fonts/ss-social-circle.ttf
428
+ - vendor/assets/fonts/ss-social-circle.woff
429
+ - vendor/assets/fonts/ss-social-regular.eot
430
+ - vendor/assets/fonts/ss-social-regular.svg
431
+ - vendor/assets/fonts/ss-social-regular.ttf
432
+ - vendor/assets/fonts/ss-social-regular.woff
433
+ - vendor/assets/fonts/ss-social.js
434
+ - vendor/assets/fonts/ss-standard.eot
435
+ - vendor/assets/fonts/ss-standard.js
436
+ - vendor/assets/fonts/ss-standard.svg
437
+ - vendor/assets/fonts/ss-standard.ttf
438
+ - vendor/assets/fonts/ss-standard.woff
439
+ - vendor/assets/images/background.png
440
+ - vendor/assets/images/logos/sb-logo-white.png
441
+ - vendor/assets/images/logos/sb-logo-white.svg
442
+ - vendor/assets/images/middleman.png
443
+ - vendor/assets/index.html.haml
444
+ - vendor/assets/javascripts/.gitkeep
445
+ - vendor/assets/javascripts/plinth/lib/handlebars.js
446
+ - vendor/assets/javascripts/plinth/lib/jquery.fitvids.js
447
+ - vendor/assets/javascripts/plinth/lib/ss-social.js
448
+ - vendor/assets/javascripts/plinth/lib/ss-standard.js
449
+ - vendor/assets/javascripts/plinth/plugins/doc/assets/codo.css
450
+ - vendor/assets/javascripts/plinth/plugins/doc/assets/codo.js
451
+ - vendor/assets/javascripts/plinth/plugins/doc/assets/search_data.js
452
+ - vendor/assets/javascripts/plinth/plugins/doc/class_index.html
453
+ - vendor/assets/javascripts/plinth/plugins/doc/class_list.html
454
+ - vendor/assets/javascripts/plinth/plugins/doc/classes/Close.html
455
+ - vendor/assets/javascripts/plinth/plugins/doc/classes/GAEvent.html
456
+ - vendor/assets/javascripts/plinth/plugins/doc/classes/ResizeHandler.html
457
+ - vendor/assets/javascripts/plinth/plugins/doc/classes/Switch.html
458
+ - vendor/assets/javascripts/plinth/plugins/doc/classes/TBGForm.html
459
+ - vendor/assets/javascripts/plinth/plugins/doc/extra_list.html
460
+ - vendor/assets/javascripts/plinth/plugins/doc/file_list.html
461
+ - vendor/assets/javascripts/plinth/plugins/doc/files/tbg-close.js.coffee.html
462
+ - vendor/assets/javascripts/plinth/plugins/doc/files/tbg-forms.js.coffee.html
463
+ - vendor/assets/javascripts/plinth/plugins/doc/files/tbg-ga-events.js.coffee.html
464
+ - vendor/assets/javascripts/plinth/plugins/doc/files/tbg-respinsiveresize.js.coffee.html
465
+ - vendor/assets/javascripts/plinth/plugins/doc/files/tbg-switch.js.coffee.html
466
+ - vendor/assets/javascripts/plinth/plugins/doc/index.html
467
+ - vendor/assets/javascripts/plinth/plugins/doc/method_list.html
468
+ - vendor/assets/javascripts/plinth/plugins/doc/mixin_list.html
469
+ - vendor/assets/javascripts/plinth/plugins/tbg-close.js.coffee
470
+ - vendor/assets/javascripts/plinth/plugins/tbg-forms.js.coffee
471
+ - vendor/assets/javascripts/plinth/plugins/tbg-ga-events.js.coffee
472
+ - vendor/assets/javascripts/plinth/plugins/tbg-respinsiveresize.js.coffee
473
+ - vendor/assets/javascripts/plinth/plugins/tbg-switch.js.coffee
474
+ - vendor/assets/stylesheets/.gitkeep
475
+ - vendor/assets/stylesheets/_functions.scss
476
+ - vendor/assets/stylesheets/_mixins.css.scss
477
+ - vendor/assets/stylesheets/_settings.css.scss
478
+ - vendor/assets/stylesheets/plinth.css.scss
479
+ - vendor/assets/stylesheets/plinth/base/_all.css.scss
480
+ - vendor/assets/stylesheets/plinth/base/_buttons.css.scss
481
+ - vendor/assets/stylesheets/plinth/base/_form.css.scss
482
+ - vendor/assets/stylesheets/plinth/base/_labels.css.scss
483
+ - vendor/assets/stylesheets/plinth/base/_lists.css.scss
484
+ - vendor/assets/stylesheets/plinth/base/_reset.css.scss
485
+ - vendor/assets/stylesheets/plinth/base/_type.css.scss
486
+ - vendor/assets/stylesheets/plinth/base/webfonts/_all.css.scss
487
+ - vendor/assets/stylesheets/plinth/base/webfonts/ss-social.css.scss
488
+ - vendor/assets/stylesheets/plinth/base/webfonts/ss-standard.css.scss
489
+ - vendor/assets/stylesheets/plinth/grid/_grid.css.scss
490
+ - vendor/assets/stylesheets/plinth/modules/_alert.css.scss
491
+ - vendor/assets/stylesheets/plinth/modules/_all-grid.css.scss
492
+ - vendor/assets/stylesheets/plinth/modules/_all-no-grid.css.scss
493
+ - vendor/assets/stylesheets/plinth/modules/_footer.css.scss
494
+ - vendor/assets/stylesheets/plinth/modules/_nav.css.scss
495
+ - vendor/assets/stylesheets/plinth/modules/_panel.css.scss
496
+ - vendor/assets/stylesheets/plinth/modules/_switch.css.scss
497
+ - vendor/assets/views/buttons/_buttons.haml
498
+ - vendor/assets/views/forms/_vertical_form.haml
499
+ - vendor/assets/views/type/_headings.haml
500
+ - vendor/assets/views/type/_paragraphs.haml
501
+ homepage: https://github.com/thebeansgroup/plinth
502
+ licenses: []
503
+ post_install_message:
504
+ rdoc_options: []
505
+ require_paths:
506
+ - lib
507
+ required_ruby_version: !ruby/object:Gem::Requirement
508
+ none: false
509
+ requirements:
510
+ - - ! '>='
511
+ - !ruby/object:Gem::Version
512
+ version: '0'
513
+ required_rubygems_version: !ruby/object:Gem::Requirement
514
+ none: false
515
+ requirements:
516
+ - - ! '>'
517
+ - !ruby/object:Gem::Version
518
+ version: 1.3.1
519
+ requirements: []
520
+ rubyforge_project:
521
+ rubygems_version: 1.8.23
522
+ signing_key:
523
+ specification_version: 3
524
+ summary: Plinth is used internally at the Beans Group in order to facilitate speedy
525
+ rollouts of new sites using similar interaction libraries and patterns. It also
526
+ allows for rapid prototyping of products.
527
+ test_files:
528
+ - spec/javascripts/fixtures/plugins/tbg-close_fixture.html.haml
529
+ - spec/javascripts/fixtures/plugins/tbg-forms_fixture.html.haml
530
+ - spec/javascripts/fixtures/plugins/tbg-ga-events_fixture.html.haml
531
+ - spec/javascripts/fixtures/plugins/tbg-switch_fixture.html.haml
532
+ - spec/javascripts/plugins/tbg-close_spec.js.coffee
533
+ - spec/javascripts/plugins/tbg-forms_spec.js.coffee
534
+ - spec/javascripts/plugins/tbg-ga-events_spec.js.coffee
535
+ - spec/javascripts/plugins/tbg-switch_spec.js.coffee
536
+ - spec/javascripts/spec.js.coffee
537
+ has_rdoc: