sb-styleguide 0.0.1 → 0.0.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (116) hide show
  1. data/.gitignore +21 -16
  2. data/.rvmrc +1 -0
  3. data/Gemfile +45 -3
  4. data/Gemfile.lock +195 -0
  5. data/Guardfile +9 -0
  6. data/LICENSE +2 -2
  7. data/README.md +53 -3
  8. data/Rakefile +30 -0
  9. data/app/assets/images/rails.png +0 -0
  10. data/app/assets/javascripts/application.js +17 -0
  11. data/app/assets/javascripts/lib/modernizr.js +4 -0
  12. data/app/assets/stylesheets/application.css.scss +72 -0
  13. data/app/assets/stylesheets/coderay_githubish.css.scss +131 -0
  14. data/app/controllers/application_controller.rb +3 -0
  15. data/app/controllers/javascripts_controller.rb +4 -0
  16. data/app/controllers/ui_controller.rb +2 -0
  17. data/app/helpers/application_helper.rb +13 -0
  18. data/app/helpers/javascripts_helper.rb +2 -0
  19. data/app/helpers/ui_helper.rb +2 -0
  20. data/app/mailers/.gitkeep +0 -0
  21. data/app/models/.gitkeep +0 -0
  22. data/app/views/javascripts/_js_nav.html.haml +5 -0
  23. data/app/views/javascripts/index.html.haml +45 -0
  24. data/app/views/layouts/_main_nav.html.haml +15 -0
  25. data/app/views/layouts/application.html.haml +41 -0
  26. data/app/views/shared/_placeholder_text.html.haml +1 -0
  27. data/app/views/type/_headings.haml +6 -0
  28. data/app/views/type/_paragraphs.haml +4 -0
  29. data/app/views/ui/_ui_nav.html.haml +13 -0
  30. data/app/views/ui/alert.html.haml +35 -0
  31. data/app/views/ui/buttons.html.haml +116 -0
  32. data/app/views/ui/footer.html.haml +69 -0
  33. data/app/views/ui/forms.html.haml +59 -0
  34. data/app/views/ui/forms/_vertical_form.haml +7 -0
  35. data/app/views/ui/grids.html.haml +18 -0
  36. data/app/views/ui/index.html.haml +5 -0
  37. data/app/views/ui/labels.html.haml +15 -0
  38. data/app/views/ui/modules/panel.html.haml +3 -0
  39. data/app/views/ui/nav.html.haml +48 -0
  40. data/app/views/ui/tabs.html.haml +171 -0
  41. data/app/views/ui/typography.html.haml +128 -0
  42. data/db/development.sqlite3 +0 -0
  43. data/db/seeds.rb +7 -0
  44. data/doc/README_FOR_APP +2 -0
  45. data/lib/assets/.gitkeep +0 -0
  46. data/lib/sb-styleguide.rb +5 -1
  47. data/lib/sb-styleguide/version.rb +1 -1
  48. data/lib/tasks/.gitkeep +0 -0
  49. data/log/.gitkeep +0 -0
  50. data/public/404.html +26 -0
  51. data/public/422.html +26 -0
  52. data/public/500.html +25 -0
  53. data/public/favicon.ico +0 -0
  54. data/public/robots.txt +5 -0
  55. data/sb-styleguide.gemspec +15 -2
  56. data/script/rails +6 -0
  57. data/spec/javascripts/fixtures/plugins/tbg-close_fixture.html.haml +4 -0
  58. data/spec/javascripts/fixtures/plugins/tbg-forms_fixture.html.haml +12 -0
  59. data/spec/javascripts/fixtures/plugins/tbg-switch_fixture.html.haml +11 -0
  60. data/spec/javascripts/plugins/tbg-close_spec.js.coffee +54 -0
  61. data/spec/javascripts/plugins/tbg-forms_spec.js.coffee +61 -0
  62. data/spec/javascripts/plugins/tbg-switch_spec.js.coffee +96 -0
  63. data/spec/javascripts/spec.js.coffee +2 -0
  64. data/vendor/assets/fonts/ss-social-circle.eot +0 -0
  65. data/vendor/assets/fonts/ss-social-circle.svg +139 -0
  66. data/vendor/assets/fonts/ss-social-circle.ttf +0 -0
  67. data/vendor/assets/fonts/ss-social-circle.woff +0 -0
  68. data/vendor/assets/fonts/ss-social-regular.eot +0 -0
  69. data/vendor/assets/fonts/ss-social-regular.svg +133 -0
  70. data/vendor/assets/fonts/ss-social-regular.ttf +0 -0
  71. data/vendor/assets/fonts/ss-social-regular.woff +0 -0
  72. data/vendor/assets/fonts/ss-social.js +75 -0
  73. data/vendor/assets/fonts/ss-standard.eot +0 -0
  74. data/vendor/assets/fonts/ss-standard.js +75 -0
  75. data/vendor/assets/fonts/ss-standard.svg +316 -0
  76. data/vendor/assets/fonts/ss-standard.ttf +0 -0
  77. data/vendor/assets/fonts/ss-standard.woff +0 -0
  78. data/vendor/assets/images/background.png +0 -0
  79. data/vendor/assets/images/logos/sb-logo-white.png +0 -0
  80. data/vendor/assets/images/logos/sb-logo-white.svg +5 -0
  81. data/vendor/assets/images/middleman.png +0 -0
  82. data/vendor/assets/index.html.haml +8 -0
  83. data/vendor/assets/javascripts/.gitkeep +0 -0
  84. data/vendor/assets/javascripts/styleguide/plugins/tbg-close.js.coffee +73 -0
  85. data/vendor/assets/javascripts/styleguide/plugins/tbg-forms.js.coffee +96 -0
  86. data/vendor/assets/javascripts/styleguide/plugins/tbg-switch.js.coffee +85 -0
  87. data/vendor/assets/stylesheets/.gitkeep +0 -0
  88. data/vendor/assets/stylesheets/_functions.scss +28 -0
  89. data/vendor/assets/stylesheets/_mixins.css.scss +163 -0
  90. data/vendor/assets/stylesheets/_settings.css.scss +116 -0
  91. data/vendor/assets/stylesheets/styleguide.css.scss +15 -0
  92. data/vendor/assets/stylesheets/styleguide/base/_all.css.scss +7 -0
  93. data/vendor/assets/stylesheets/styleguide/base/_buttons.css.scss +166 -0
  94. data/vendor/assets/stylesheets/styleguide/base/_form.css.scss +152 -0
  95. data/vendor/assets/stylesheets/styleguide/base/_labels.css.scss +42 -0
  96. data/vendor/assets/stylesheets/styleguide/base/_lists.css.scss +52 -0
  97. data/vendor/assets/stylesheets/styleguide/base/_reset.css.scss +258 -0
  98. data/vendor/assets/stylesheets/styleguide/base/_type.css.scss +306 -0
  99. data/vendor/assets/stylesheets/styleguide/base/webfonts/_all.css.scss +2 -0
  100. data/vendor/assets/stylesheets/styleguide/base/webfonts/ss-social.scss.css +56 -0
  101. data/vendor/assets/stylesheets/styleguide/base/webfonts/ss-standard.css.scss +47 -0
  102. data/vendor/assets/stylesheets/styleguide/grid/_grid.css.scss +106 -0
  103. data/vendor/assets/stylesheets/styleguide/layout/_all.css.scss +5 -0
  104. data/vendor/assets/stylesheets/styleguide/modules/_alert.css.scss +71 -0
  105. data/vendor/assets/stylesheets/styleguide/modules/_all-grid.css.scss +1 -0
  106. data/vendor/assets/stylesheets/styleguide/modules/_all-no-grid.css.scss +4 -0
  107. data/vendor/assets/stylesheets/styleguide/modules/_footer.css.scss +93 -0
  108. data/vendor/assets/stylesheets/styleguide/modules/_nav.css.scss +106 -0
  109. data/vendor/assets/stylesheets/styleguide/modules/_panel.css.scss +28 -0
  110. data/vendor/assets/stylesheets/styleguide/modules/_switch.css.scss +72 -0
  111. data/vendor/assets/views/buttons/_buttons.haml +9 -0
  112. data/vendor/assets/views/forms/_vertical_form.haml +7 -0
  113. data/vendor/assets/views/type/_headings.haml +6 -0
  114. data/vendor/assets/views/type/_paragraphs.haml +4 -0
  115. data/vendor/plugins/.gitkeep +0 -0
  116. metadata +280 -5
@@ -0,0 +1,28 @@
1
+ //
2
+ // Panel Module
3
+ // $author Ad Taylor
4
+
5
+ // ==========================================================================
6
+ // Default Panel
7
+ // ==========================================================================
8
+
9
+
10
+ .panel {
11
+ margin-bottom: ms(0);
12
+ padding: ms(0) $column-gutter*2 ms(2) $column-gutter*2;
13
+ background-color: mono(4);
14
+ }
15
+
16
+ // Text helper classes
17
+
18
+ .panel-left {
19
+ text-align: left;
20
+ }
21
+
22
+ .panel-right {
23
+ text-align: right;
24
+ }
25
+
26
+ .panel-center {
27
+ text-align: center;
28
+ }
@@ -0,0 +1,72 @@
1
+ //
2
+ // Switch Modules
3
+ // $author Ad Taylor
4
+
5
+ // ==========================================================================
6
+ // Switch Defaults
7
+ // ==========================================================================
8
+
9
+
10
+ .switch-nav {
11
+ @include clearfix();
12
+ padding-left: 0;
13
+
14
+ & > li {
15
+ list-style: none;
16
+ }
17
+ }
18
+
19
+ $query-pos: 4;
20
+ @each $grid in $grids {
21
+ // If there is a media query
22
+ @if(length($grid) == $query-pos) {
23
+ @include media-query( nth($grid,$query-pos), nth($grid,1) ) {
24
+ .#{nth($grid,1)}switch-content {
25
+ display: none;
26
+
27
+ &.is-active {
28
+ display: block;
29
+ }
30
+ }
31
+ }
32
+ }
33
+ @else {
34
+ .switch-content {
35
+ display: none;
36
+
37
+ &.is-active {
38
+ display: block;
39
+ }
40
+ }
41
+ }
42
+ }
43
+
44
+ // ==========================================================================
45
+ // Tabs
46
+ // ==========================================================================
47
+
48
+ .tabs {
49
+ @extend .action-list;
50
+
51
+ border-bottom: 1px solid mono(3);
52
+
53
+ & > li {
54
+ float: left;
55
+ margin-bottom: -1px;
56
+ margin-left: $column-gutter;
57
+
58
+
59
+ & > a {
60
+ display: block;
61
+ padding: ms(0)/2 $column-gutter;
62
+ border-bottom: 1px solid transparent;
63
+ line-height: $base-line-height-px;
64
+ }
65
+
66
+ &.is-active {
67
+ background-color: #ffffff;
68
+ border: 1px solid #ddd;
69
+ border-bottom-color: transparent;
70
+ }
71
+ }
72
+ }
@@ -0,0 +1,9 @@
1
+ %div{:style=>"margin-bottom:10px;"}
2
+ - ['large','medium', 'small'].each do |type|
3
+ %a{:href=>"stuff", :class=>"btn #{type}"}= "#{type} button"
4
+
5
+ %div
6
+ - ['orange','green', 'blue'].each do |color|
7
+ %div{:style=>"margin-bottom:10px;"}
8
+ - ['small','active small','disabled small'].each do |type|
9
+ %a{:href=>"stuff", :class=>"btn #{type} #{color}"}= "#{type} #{color} button"
@@ -0,0 +1,7 @@
1
+ %form
2
+ %div
3
+ %label a label
4
+ %input{:type =>"text", :class=>"large"}
5
+ %div
6
+ %label a label
7
+ %input{:type =>"text"}
@@ -0,0 +1,6 @@
1
+ - heading_text = "Heading text"
2
+ %h1= heading_text
3
+ %h2= heading_text
4
+ %h3= heading_text
5
+ %h4= heading_text
6
+ %h5= heading_text
@@ -0,0 +1,4 @@
1
+ %p.standout It's a complicated case, Maude. Lotta ins. Lotta outs. And a lotta strands to keep in my head, man. Dolor sit amet, consectetur adipiscing elit praesent ac magna justo pellentesque ac lectus. I mean his wife goes out and owes money and they pee on my rug. Quis elit blandit fringilla a ut turpis praesent felis ligula, malesuada suscipit malesuada. All right, Plan B. You might want to watch out the front window there, Larry. Non, ultrices non urna sed orci ipsum, placerat id condimentum rutrum, rhoncus ac.
2
+
3
+ %p Here's the name and number of a doctor who will look at it for you. You will receive no bill. He's a good man. And thorough. Lorem aliquam placerat posuere neque, at dignissim magna ullamcorper in aliquam sagittis massa. Ac tortor ultrices faucibus curabitur eu mi sapien, ut ultricies ipsum morbi eget. …and even if he's a lazy man, and the Dude was certainly that—quite possibly the laziest in Los Angeles County. Risus nulla nullam vel nisi enim, vel auctor ante morbi. I, uh… money, yeah, I gotta respectfully, 69 you know, tender my resignation on that matter, 'cause it looks like your mother really was kidnapped after all. Id urna vel felis lacinia placerat vestibulum turpis nulla, viverra. You're just looking for a handout like every other. Are you employed, Mr. Lebowski? Nec volutpat ac, ornare id lectus cras pharetra faucibus tristique. Hey, relax man, I'm a brother shamus. Nullam non accumsan justo nulla facilisi integer interdum elementum. I—the royal we, man, you know, the editorial. Hardly Dude, a new 'vette? The kid's still got, oh, 96 to 97 thousand, depending on the options. Nulla, nec eleifend nisl euismod ac maecenas vitae eros. Wonderful woman. Very free-spirited. We're all very fond of her. Velit, eu suscipit erat integer purus lacus, pretium vel. My art has been commended as being strongly vaginal. Which bothers some men. The word itself makes some men uncomfortable. Vagina. Venenatis eu, volutpat non erat donec a metus ac. Eros dictum aliquet nulla. Yeah. Roadie for Metallica. Speed of Sound Tour. Consectetur egestas placerat maecenas. Ja, your viggly penis, Lebowski. Pulvinar nisl et nisl. Since you have failed to achieve, even in the modest task that was your charge, since you have stolen my money, and since you have unrepentantly betrayed my trust. Rhoncus at volutpat felis. Eight-year-olds, Dude. Blandit in libero turpis, I have no choice but to tell these bums that they should do whatever is necessary to recover their money from you, Jeffrey Lebowski.
4
+
File without changes
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: sb-styleguide
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1
4
+ version: 0.0.2
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -10,24 +10,291 @@ authors:
10
10
  autorequire:
11
11
  bindir: bin
12
12
  cert_chain: []
13
- date: 2012-08-09 00:00:00.000000000 Z
14
- dependencies: []
13
+ date: 2012-11-23 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
+ type: :runtime
24
+ prerelease: false
25
+ version_requirements: !ruby/object:Gem::Requirement
26
+ none: false
27
+ requirements:
28
+ - - ~>
29
+ - !ruby/object:Gem::Version
30
+ version: '3.1'
31
+ - !ruby/object:Gem::Dependency
32
+ name: activesupport
33
+ requirement: !ruby/object:Gem::Requirement
34
+ none: false
35
+ requirements:
36
+ - - ~>
37
+ - !ruby/object:Gem::Version
38
+ version: '3.1'
39
+ type: :runtime
40
+ prerelease: false
41
+ version_requirements: !ruby/object:Gem::Requirement
42
+ none: false
43
+ requirements:
44
+ - - ~>
45
+ - !ruby/object:Gem::Version
46
+ version: '3.1'
47
+ - !ruby/object:Gem::Dependency
48
+ name: actionpack
49
+ requirement: !ruby/object:Gem::Requirement
50
+ none: false
51
+ requirements:
52
+ - - ~>
53
+ - !ruby/object:Gem::Version
54
+ version: '3.1'
55
+ type: :runtime
56
+ prerelease: false
57
+ version_requirements: !ruby/object:Gem::Requirement
58
+ none: false
59
+ requirements:
60
+ - - ~>
61
+ - !ruby/object:Gem::Version
62
+ version: '3.1'
63
+ - !ruby/object:Gem::Dependency
64
+ name: railties
65
+ requirement: !ruby/object:Gem::Requirement
66
+ none: false
67
+ requirements:
68
+ - - ~>
69
+ - !ruby/object:Gem::Version
70
+ version: '3.1'
71
+ type: :runtime
72
+ prerelease: false
73
+ version_requirements: !ruby/object:Gem::Requirement
74
+ none: false
75
+ requirements:
76
+ - - ~>
77
+ - !ruby/object:Gem::Version
78
+ version: '3.1'
79
+ - !ruby/object:Gem::Dependency
80
+ name: modular-scale
81
+ requirement: !ruby/object:Gem::Requirement
82
+ none: false
83
+ requirements:
84
+ - - ~>
85
+ - !ruby/object:Gem::Version
86
+ version: '1.0'
87
+ type: :runtime
88
+ prerelease: false
89
+ version_requirements: !ruby/object:Gem::Requirement
90
+ none: false
91
+ requirements:
92
+ - - ~>
93
+ - !ruby/object:Gem::Version
94
+ version: '1.0'
95
+ - !ruby/object:Gem::Dependency
96
+ name: compass-rails
97
+ requirement: !ruby/object:Gem::Requirement
98
+ none: false
99
+ requirements:
100
+ - - ! '>='
101
+ - !ruby/object:Gem::Version
102
+ version: '0'
103
+ type: :runtime
104
+ prerelease: false
105
+ version_requirements: !ruby/object:Gem::Requirement
106
+ none: false
107
+ requirements:
108
+ - - ! '>='
109
+ - !ruby/object:Gem::Version
110
+ version: '0'
111
+ - !ruby/object:Gem::Dependency
112
+ name: sass-rails
113
+ requirement: !ruby/object:Gem::Requirement
114
+ none: false
115
+ requirements:
116
+ - - ! '>='
117
+ - !ruby/object:Gem::Version
118
+ version: '0'
119
+ type: :runtime
120
+ prerelease: false
121
+ version_requirements: !ruby/object:Gem::Requirement
122
+ none: false
123
+ requirements:
124
+ - - ! '>='
125
+ - !ruby/object:Gem::Version
126
+ version: '0'
127
+ - !ruby/object:Gem::Dependency
128
+ name: rails
129
+ requirement: !ruby/object:Gem::Requirement
130
+ none: false
131
+ requirements:
132
+ - - ~>
133
+ - !ruby/object:Gem::Version
134
+ version: '3.1'
135
+ type: :development
136
+ prerelease: false
137
+ version_requirements: !ruby/object:Gem::Requirement
138
+ none: false
139
+ requirements:
140
+ - - ~>
141
+ - !ruby/object:Gem::Version
142
+ version: '3.1'
143
+ - !ruby/object:Gem::Dependency
144
+ name: bundler
145
+ requirement: !ruby/object:Gem::Requirement
146
+ none: false
147
+ requirements:
148
+ - - ~>
149
+ - !ruby/object:Gem::Version
150
+ version: 1.1.0
151
+ type: :development
152
+ prerelease: false
153
+ version_requirements: !ruby/object:Gem::Requirement
154
+ none: false
155
+ requirements:
156
+ - - ~>
157
+ - !ruby/object:Gem::Version
158
+ version: 1.1.0
159
+ - !ruby/object:Gem::Dependency
160
+ name: sqlite3
161
+ requirement: !ruby/object:Gem::Requirement
162
+ none: false
163
+ requirements:
164
+ - - ! '>='
165
+ - !ruby/object:Gem::Version
166
+ version: '0'
167
+ type: :development
168
+ prerelease: false
169
+ version_requirements: !ruby/object:Gem::Requirement
170
+ none: false
171
+ requirements:
172
+ - - ! '>='
173
+ - !ruby/object:Gem::Version
174
+ version: '0'
15
175
  description: styleguide
16
176
  email:
17
- - ad@iamadtaylor.com
177
+ - ad@adtaylor.co.uk
18
178
  - vincent@siebert.im
19
179
  executables: []
20
180
  extensions: []
21
181
  extra_rdoc_files: []
22
182
  files:
23
183
  - .gitignore
184
+ - .rvmrc
24
185
  - Gemfile
186
+ - Gemfile.lock
187
+ - Guardfile
25
188
  - LICENSE
26
189
  - README.md
27
190
  - Rakefile
191
+ - app/assets/images/rails.png
192
+ - app/assets/javascripts/application.js
193
+ - app/assets/javascripts/lib/modernizr.js
194
+ - app/assets/stylesheets/application.css.scss
195
+ - app/assets/stylesheets/coderay_githubish.css.scss
196
+ - app/controllers/application_controller.rb
197
+ - app/controllers/javascripts_controller.rb
198
+ - app/controllers/ui_controller.rb
199
+ - app/helpers/application_helper.rb
200
+ - app/helpers/javascripts_helper.rb
201
+ - app/helpers/ui_helper.rb
202
+ - app/mailers/.gitkeep
203
+ - app/models/.gitkeep
204
+ - app/views/javascripts/_js_nav.html.haml
205
+ - app/views/javascripts/index.html.haml
206
+ - app/views/layouts/_main_nav.html.haml
207
+ - app/views/layouts/application.html.haml
208
+ - app/views/shared/_placeholder_text.html.haml
209
+ - app/views/type/_headings.haml
210
+ - app/views/type/_paragraphs.haml
211
+ - app/views/ui/_ui_nav.html.haml
212
+ - app/views/ui/alert.html.haml
213
+ - app/views/ui/buttons.html.haml
214
+ - app/views/ui/footer.html.haml
215
+ - app/views/ui/forms.html.haml
216
+ - app/views/ui/forms/_vertical_form.haml
217
+ - app/views/ui/grids.html.haml
218
+ - app/views/ui/index.html.haml
219
+ - app/views/ui/labels.html.haml
220
+ - app/views/ui/modules/panel.html.haml
221
+ - app/views/ui/nav.html.haml
222
+ - app/views/ui/tabs.html.haml
223
+ - app/views/ui/typography.html.haml
224
+ - db/development.sqlite3
225
+ - db/seeds.rb
226
+ - doc/README_FOR_APP
227
+ - lib/assets/.gitkeep
28
228
  - lib/sb-styleguide.rb
29
229
  - lib/sb-styleguide/version.rb
230
+ - lib/tasks/.gitkeep
231
+ - log/.gitkeep
232
+ - public/404.html
233
+ - public/422.html
234
+ - public/500.html
235
+ - public/favicon.ico
236
+ - public/robots.txt
30
237
  - sb-styleguide.gemspec
238
+ - script/rails
239
+ - spec/javascripts/fixtures/plugins/tbg-close_fixture.html.haml
240
+ - spec/javascripts/fixtures/plugins/tbg-forms_fixture.html.haml
241
+ - spec/javascripts/fixtures/plugins/tbg-switch_fixture.html.haml
242
+ - spec/javascripts/plugins/tbg-close_spec.js.coffee
243
+ - spec/javascripts/plugins/tbg-forms_spec.js.coffee
244
+ - spec/javascripts/plugins/tbg-switch_spec.js.coffee
245
+ - spec/javascripts/spec.js.coffee
246
+ - vendor/assets/fonts/ss-social-circle.eot
247
+ - vendor/assets/fonts/ss-social-circle.svg
248
+ - vendor/assets/fonts/ss-social-circle.ttf
249
+ - vendor/assets/fonts/ss-social-circle.woff
250
+ - vendor/assets/fonts/ss-social-regular.eot
251
+ - vendor/assets/fonts/ss-social-regular.svg
252
+ - vendor/assets/fonts/ss-social-regular.ttf
253
+ - vendor/assets/fonts/ss-social-regular.woff
254
+ - vendor/assets/fonts/ss-social.js
255
+ - vendor/assets/fonts/ss-standard.eot
256
+ - vendor/assets/fonts/ss-standard.js
257
+ - vendor/assets/fonts/ss-standard.svg
258
+ - vendor/assets/fonts/ss-standard.ttf
259
+ - vendor/assets/fonts/ss-standard.woff
260
+ - vendor/assets/images/background.png
261
+ - vendor/assets/images/logos/sb-logo-white.png
262
+ - vendor/assets/images/logos/sb-logo-white.svg
263
+ - vendor/assets/images/middleman.png
264
+ - vendor/assets/index.html.haml
265
+ - vendor/assets/javascripts/.gitkeep
266
+ - vendor/assets/javascripts/styleguide/plugins/tbg-close.js.coffee
267
+ - vendor/assets/javascripts/styleguide/plugins/tbg-forms.js.coffee
268
+ - vendor/assets/javascripts/styleguide/plugins/tbg-switch.js.coffee
269
+ - vendor/assets/stylesheets/.gitkeep
270
+ - vendor/assets/stylesheets/_functions.scss
271
+ - vendor/assets/stylesheets/_mixins.css.scss
272
+ - vendor/assets/stylesheets/_settings.css.scss
273
+ - vendor/assets/stylesheets/styleguide.css.scss
274
+ - vendor/assets/stylesheets/styleguide/base/_all.css.scss
275
+ - vendor/assets/stylesheets/styleguide/base/_buttons.css.scss
276
+ - vendor/assets/stylesheets/styleguide/base/_form.css.scss
277
+ - vendor/assets/stylesheets/styleguide/base/_labels.css.scss
278
+ - vendor/assets/stylesheets/styleguide/base/_lists.css.scss
279
+ - vendor/assets/stylesheets/styleguide/base/_reset.css.scss
280
+ - vendor/assets/stylesheets/styleguide/base/_type.css.scss
281
+ - vendor/assets/stylesheets/styleguide/base/webfonts/_all.css.scss
282
+ - vendor/assets/stylesheets/styleguide/base/webfonts/ss-social.scss.css
283
+ - vendor/assets/stylesheets/styleguide/base/webfonts/ss-standard.css.scss
284
+ - vendor/assets/stylesheets/styleguide/grid/_grid.css.scss
285
+ - vendor/assets/stylesheets/styleguide/layout/_all.css.scss
286
+ - vendor/assets/stylesheets/styleguide/modules/_alert.css.scss
287
+ - vendor/assets/stylesheets/styleguide/modules/_all-grid.css.scss
288
+ - vendor/assets/stylesheets/styleguide/modules/_all-no-grid.css.scss
289
+ - vendor/assets/stylesheets/styleguide/modules/_footer.css.scss
290
+ - vendor/assets/stylesheets/styleguide/modules/_nav.css.scss
291
+ - vendor/assets/stylesheets/styleguide/modules/_panel.css.scss
292
+ - vendor/assets/stylesheets/styleguide/modules/_switch.css.scss
293
+ - vendor/assets/views/buttons/_buttons.haml
294
+ - vendor/assets/views/forms/_vertical_form.haml
295
+ - vendor/assets/views/type/_headings.haml
296
+ - vendor/assets/views/type/_paragraphs.haml
297
+ - vendor/plugins/.gitkeep
31
298
  homepage: https://github.com/thebeansgroup/sb-styleguide
32
299
  licenses: []
33
300
  post_install_message:
@@ -52,4 +319,12 @@ rubygems_version: 1.8.24
52
319
  signing_key:
53
320
  specification_version: 3
54
321
  summary: styleguide
55
- test_files: []
322
+ test_files:
323
+ - spec/javascripts/fixtures/plugins/tbg-close_fixture.html.haml
324
+ - spec/javascripts/fixtures/plugins/tbg-forms_fixture.html.haml
325
+ - spec/javascripts/fixtures/plugins/tbg-switch_fixture.html.haml
326
+ - spec/javascripts/plugins/tbg-close_spec.js.coffee
327
+ - spec/javascripts/plugins/tbg-forms_spec.js.coffee
328
+ - spec/javascripts/plugins/tbg-switch_spec.js.coffee
329
+ - spec/javascripts/spec.js.coffee
330
+ has_rdoc: