underoos 1.0.0 → 1.1.0

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 (140) hide show
  1. data/Gemfile +5 -0
  2. data/Gemfile.lock +21 -7
  3. data/README.md +85 -10
  4. data/Rakefile +36 -1
  5. data/app/assets/javascripts/docs.js +6 -0
  6. data/app/assets/javascripts/styleguide.coffee +162 -0
  7. data/app/assets/javascripts/underoos.js +0 -1
  8. data/app/assets/stylesheets/base/_base.sass +14 -0
  9. data/app/assets/stylesheets/base/_buttons.sass +68 -0
  10. data/app/assets/stylesheets/base/_forms.sass +313 -24
  11. data/app/assets/stylesheets/base/_helpers.sass +27 -13
  12. data/app/assets/stylesheets/base/_normalize.sass +17 -9
  13. data/app/assets/stylesheets/base/_scaffold.sass +85 -0
  14. data/app/assets/stylesheets/base/_tables.sass +77 -0
  15. data/app/assets/stylesheets/base/_transitions.sass +10 -2
  16. data/app/assets/stylesheets/base/_typography.sass +183 -21
  17. data/app/assets/stylesheets/components/_accordions.sass +38 -0
  18. data/app/assets/stylesheets/components/_breadcrumbs.sass +19 -5
  19. data/app/assets/stylesheets/components/_button-groups.sass +43 -0
  20. data/app/assets/stylesheets/components/_carets.sass +13 -2
  21. data/app/assets/stylesheets/components/_carousels.sass +32 -0
  22. data/app/assets/stylesheets/components/_close.sass +15 -2
  23. data/app/assets/stylesheets/components/_components.sass +28 -0
  24. data/app/assets/stylesheets/components/_decals.sass +14 -0
  25. data/app/assets/stylesheets/components/_dropdowns.sass +88 -4
  26. data/app/assets/stylesheets/components/_media.sass +36 -0
  27. data/app/assets/stylesheets/components/_modals.sass +29 -0
  28. data/app/assets/stylesheets/components/_nav-lists.sass +20 -0
  29. data/app/assets/stylesheets/components/_navbars.sass +64 -3
  30. data/app/assets/stylesheets/components/_notifications.sass +112 -16
  31. data/app/assets/stylesheets/components/_paddles.sass +26 -0
  32. data/app/assets/stylesheets/components/_pagination.sass +23 -3
  33. data/app/assets/stylesheets/components/_pills.sass +80 -0
  34. data/app/assets/stylesheets/components/_popovers.sass +28 -0
  35. data/app/assets/stylesheets/components/_progress-bars.sass +33 -1
  36. data/app/assets/stylesheets/components/_tabs.sass +79 -0
  37. data/app/assets/stylesheets/components/_tooltips.sass +26 -0
  38. data/app/assets/stylesheets/components/_wells.sass +9 -0
  39. data/app/assets/stylesheets/layouts/_containers.sass +12 -0
  40. data/app/assets/stylesheets/layouts/_layouts.sass +5 -0
  41. data/app/assets/stylesheets/layouts/_print.sass +5 -1
  42. data/app/assets/stylesheets/layouts/_queries.sass +18 -15
  43. data/app/assets/stylesheets/layouts/_upgrades.sass +51 -40
  44. data/app/assets/stylesheets/mixins/_arrows.sass +13 -1
  45. data/app/assets/stylesheets/mixins/_clearfixins.sass +18 -4
  46. data/app/assets/stylesheets/mixins/_coloring.sass +10 -1
  47. data/app/assets/stylesheets/mixins/_columns.sass +16 -3
  48. data/app/assets/stylesheets/mixins/_conversions.sass +18 -6
  49. data/app/assets/stylesheets/mixins/_font-size.sass +16 -1
  50. data/app/assets/stylesheets/mixins/_image-tools.sass +12 -1
  51. data/app/assets/stylesheets/mixins/_inline-block.sass +21 -0
  52. data/app/assets/stylesheets/mixins/_ir.sass +14 -1
  53. data/app/assets/stylesheets/mixins/_mixins.sass +6 -0
  54. data/app/assets/stylesheets/mixins/_responsive.sass +16 -0
  55. data/app/assets/stylesheets/mixins/_sticky-footer.sass +52 -0
  56. data/app/assets/stylesheets/mixins/_tab-focus.sass +8 -1
  57. data/app/assets/stylesheets/mixins/_timing-equations.sass +34 -1
  58. data/app/assets/stylesheets/mixins/_visibility.sass +18 -5
  59. data/app/assets/stylesheets/polyfills/_box-shadow.sass +10 -0
  60. data/app/assets/stylesheets/polyfills/_box-sizing.sass +10 -1
  61. data/app/assets/stylesheets/polyfills/_functions.sass +14 -1
  62. data/app/assets/stylesheets/polyfills/_opacity.sass +10 -1
  63. data/app/assets/stylesheets/polyfills/_polyfills.sass +9 -2
  64. data/app/assets/stylesheets/polyfills/_transition.sass +10 -0
  65. data/app/assets/stylesheets/polyfills/_user-select.sass +10 -0
  66. data/app/assets/stylesheets/settings/_config.sass +26 -0
  67. data/app/assets/stylesheets/settings/_settings.sass +7 -0
  68. data/app/assets/stylesheets/settings/_theme.sass +189 -0
  69. data/app/assets/stylesheets/{styleguide.sass → underoos-docs.sass} +20 -116
  70. data/app/assets/stylesheets/underoos.sass +5 -16
  71. data/config.ru +1 -3
  72. data/features/generator.feature +13 -4
  73. data/lib/generators/underoos/assets_generator.rb +4 -2
  74. data/lib/underoos/version.rb +1 -1
  75. data/public/images.html +157 -0
  76. data/public/index.html +149 -0
  77. data/public/sherpa.css +306 -0
  78. data/public/styles.html +5374 -0
  79. data/script/javascripts +0 -1
  80. data/sherpa/config.yml +96 -0
  81. data/sherpa/layouts/images.mustache +17 -0
  82. data/sherpa/layouts/layout.mustache +77 -0
  83. data/sherpa/layouts/overview.mustache +19 -0
  84. data/sherpa/layouts/raw.mustache +25 -0
  85. data/sherpa/layouts/section.mustache +67 -0
  86. data/underoos.gemspec +0 -2
  87. data/vendor/assets/javascripts/bootstrap-alert.js +28 -32
  88. data/vendor/assets/javascripts/bootstrap-button.js +29 -33
  89. data/vendor/assets/javascripts/bootstrap-collapse.js +45 -26
  90. data/vendor/assets/javascripts/bootstrap-dropdown.js +18 -10
  91. data/vendor/assets/javascripts/bootstrap-modal.js +25 -17
  92. data/vendor/assets/javascripts/bootstrap-popover.js +13 -10
  93. data/vendor/assets/javascripts/bootstrap-tab.js +12 -7
  94. data/vendor/assets/javascripts/bootstrap-tooltip.js +40 -35
  95. data/vendor/assets/javascripts/bootstrap-transition.js +30 -20
  96. data/vendor/assets/javascripts/bootstrap-typeahead.js +24 -10
  97. data/vendor/assets/javascripts/sherpa.coffee +78 -0
  98. metadata +34 -75
  99. data/app/assets/javascripts/styleguide.js +0 -132
  100. data/app/assets/stylesheets/base/_elements.sass +0 -61
  101. data/app/assets/stylesheets/polyfills/_inline-block.sass +0 -8
  102. data/app/assets/stylesheets/themes/_default.sass +0 -119
  103. data/app/controllers/underoos/styleguides_controller.rb +0 -79
  104. data/app/views/shared/_upgrades.html.haml +0 -12
  105. data/app/views/underoos/styleguides/_assets.haml +0 -42
  106. data/app/views/underoos/styleguides/_components.haml +0 -42
  107. data/app/views/underoos/styleguides/_elements.haml +0 -242
  108. data/app/views/underoos/styleguides/_forms.haml +0 -305
  109. data/app/views/underoos/styleguides/_layouts.haml +0 -76
  110. data/app/views/underoos/styleguides/_palettes.haml +0 -18
  111. data/app/views/underoos/styleguides/_resources.haml +0 -27
  112. data/app/views/underoos/styleguides/_tables.haml +0 -124
  113. data/app/views/underoos/styleguides/_typography.haml +0 -284
  114. data/app/views/underoos/styleguides/_utilities.haml +0 -270
  115. data/app/views/underoos/styleguides/components/_accordions.haml +0 -83
  116. data/app/views/underoos/styleguides/components/_breadcrumbs.haml +0 -42
  117. data/app/views/underoos/styleguides/components/_button-groups.haml +0 -162
  118. data/app/views/underoos/styleguides/components/_carets.haml +0 -28
  119. data/app/views/underoos/styleguides/components/_close.haml +0 -20
  120. data/app/views/underoos/styleguides/components/_decals.haml +0 -40
  121. data/app/views/underoos/styleguides/components/_dropdowns.haml +0 -189
  122. data/app/views/underoos/styleguides/components/_media.haml +0 -78
  123. data/app/views/underoos/styleguides/components/_modals.haml +0 -42
  124. data/app/views/underoos/styleguides/components/_nav-lists.haml +0 -52
  125. data/app/views/underoos/styleguides/components/_navbars.haml +0 -144
  126. data/app/views/underoos/styleguides/components/_navs-showcase.haml +0 -27
  127. data/app/views/underoos/styleguides/components/_notifications.haml +0 -169
  128. data/app/views/underoos/styleguides/components/_paddles.haml +0 -68
  129. data/app/views/underoos/styleguides/components/_pagination.haml +0 -64
  130. data/app/views/underoos/styleguides/components/_popovers.haml +0 -33
  131. data/app/views/underoos/styleguides/components/_progress-bars.haml +0 -72
  132. data/app/views/underoos/styleguides/components/_tabs-pills.haml +0 -241
  133. data/app/views/underoos/styleguides/components/_tooltips.haml +0 -37
  134. data/app/views/underoos/styleguides/components/_wells.haml +0 -29
  135. data/app/views/underoos/styleguides/index.html.haml +0 -259
  136. data/app/views/underoos/styleguides/partials/_form-template.haml +0 -171
  137. data/app/views/underoos/styleguides/partials/_table-data.haml +0 -33
  138. data/app/views/underoos/styleguides/partials/_transitions.haml +0 -136
  139. data/config/routes.rb +0 -3
  140. data/vendor/assets/javascripts/bootstrap-scrollspy.js +0 -125
@@ -1,5 +1,5 @@
1
1
  /* ===================================================
2
- * bootstrap-transition.js v2.0.2
2
+ * bootstrap-transition.js v2.0.3
3
3
  * http://twitter.github.com/bootstrap/javascript.html#transitions
4
4
  * ===================================================
5
5
  * Copyright 2012 Twitter, Inc.
@@ -17,35 +17,45 @@
17
17
  * limitations under the License.
18
18
  * ========================================================== */
19
19
 
20
- !function( $ ) {
20
+
21
+ !function ($) {
21
22
 
22
23
  $(function () {
23
24
 
24
- "use strict"
25
+ "use strict"; // jshint ;_;
26
+
25
27
 
26
- /* CSS TRANSITION SUPPORT (https://gist.github.com/373874)
28
+ /* CSS TRANSITION SUPPORT (http://www.modernizr.com/)
27
29
  * ======================================================= */
28
30
 
29
31
  $.support.transition = (function () {
30
- var thisBody = document.body || document.documentElement
31
- , thisStyle = thisBody.style
32
- , support = thisStyle.transition !== undefined || thisStyle.WebkitTransition !== undefined || thisStyle.MozTransition !== undefined || thisStyle.MsTransition !== undefined || thisStyle.OTransition !== undefined
33
-
34
- return support && {
35
- end: (function () {
36
- var transitionEnd = "TransitionEnd"
37
- if ( $.browser.webkit ) {
38
- transitionEnd = "webkitTransitionEnd"
39
- } else if ( $.browser.mozilla ) {
40
- transitionEnd = "transitionend"
41
- } else if ( $.browser.opera ) {
42
- transitionEnd = "oTransitionEnd"
32
+
33
+ var transitionEnd = (function () {
34
+
35
+ var el = document.createElement('bootstrap')
36
+ , transEndEventNames = {
37
+ 'WebkitTransition' : 'webkitTransitionEnd'
38
+ , 'MozTransition' : 'transitionend'
39
+ , 'OTransition' : 'oTransitionEnd'
40
+ , 'msTransition' : 'MSTransitionEnd'
41
+ , 'transition' : 'transitionend'
42
+ }
43
+ , name
44
+
45
+ for (name in transEndEventNames){
46
+ if (el.style[name] !== undefined) {
47
+ return transEndEventNames[name]
43
48
  }
44
- return transitionEnd
45
- }())
49
+ }
50
+
51
+ }())
52
+
53
+ return transitionEnd && {
54
+ end: transitionEnd
46
55
  }
56
+
47
57
  })()
48
58
 
49
59
  })
50
60
 
51
- }( window.jQuery );
61
+ }(window.jQuery);
@@ -1,5 +1,5 @@
1
1
  /* =============================================================
2
- * bootstrap-typeahead.js v2.0.2
2
+ * bootstrap-typeahead.js v2.0.3
3
3
  * http://twitter.github.com/bootstrap/javascript.html#typeahead
4
4
  * =============================================================
5
5
  * Copyright 2012 Twitter, Inc.
@@ -17,16 +17,22 @@
17
17
  * limitations under the License.
18
18
  * ============================================================ */
19
19
 
20
- !function( $ ){
21
20
 
22
- "use strict"
21
+ !function($){
23
22
 
24
- var Typeahead = function ( element, options ) {
23
+ "use strict"; // jshint ;_;
24
+
25
+
26
+ /* TYPEAHEAD PUBLIC CLASS DEFINITION
27
+ * ================================= */
28
+
29
+ var Typeahead = function (element, options) {
25
30
  this.$element = $(element)
26
31
  this.options = $.extend({}, $.fn.typeahead.defaults, options)
27
32
  this.matcher = this.options.matcher || this.matcher
28
33
  this.sorter = this.options.sorter || this.sorter
29
34
  this.highlighter = this.options.highlighter || this.highlighter
35
+ this.updater = this.options.updater || this.updater
30
36
  this.$menu = $(this.options.menu).appendTo('body')
31
37
  this.source = this.options.source
32
38
  this.shown = false
@@ -39,11 +45,16 @@
39
45
 
40
46
  , select: function () {
41
47
  var val = this.$menu.find('.active').attr('data-value')
42
- this.$element.val(val)
43
- this.$element.change();
48
+ this.$element
49
+ .val(this.updater(val))
50
+ .change()
44
51
  return this.hide()
45
52
  }
46
53
 
54
+ , updater: function (item) {
55
+ return item
56
+ }
57
+
47
58
  , show: function () {
48
59
  var pos = $.extend({}, this.$element.offset(), {
49
60
  height: this.$element[0].offsetHeight
@@ -77,7 +88,7 @@
77
88
  }
78
89
 
79
90
  items = $.grep(this.source, function (item) {
80
- if (that.matcher(item)) return item
91
+ return that.matcher(item)
81
92
  })
82
93
 
83
94
  items = this.sorter(items)
@@ -109,7 +120,8 @@
109
120
  }
110
121
 
111
122
  , highlighter: function (item) {
112
- return item.replace(new RegExp('(' + this.query + ')', 'ig'), function ($1, match) {
123
+ var query = this.query.replace(/[\-\[\]{}()*+?.,\\\^$|#\s]/g, '\\$&')
124
+ return item.replace(new RegExp('(' + query + ')', 'ig'), function ($1, match) {
113
125
  return '<strong>' + match + '</strong>'
114
126
  })
115
127
  }
@@ -201,11 +213,13 @@
201
213
  break
202
214
 
203
215
  case 38: // up arrow
216
+ if (e.type != 'keydown') break
204
217
  e.preventDefault()
205
218
  this.prev()
206
219
  break
207
220
 
208
221
  case 40: // down arrow
222
+ if (e.type != 'keydown') break
209
223
  e.preventDefault()
210
224
  this.next()
211
225
  break
@@ -236,7 +250,7 @@
236
250
  /* TYPEAHEAD PLUGIN DEFINITION
237
251
  * =========================== */
238
252
 
239
- $.fn.typeahead = function ( option ) {
253
+ $.fn.typeahead = function (option) {
240
254
  return this.each(function () {
241
255
  var $this = $(this)
242
256
  , data = $this.data('typeahead')
@@ -268,4 +282,4 @@
268
282
  })
269
283
  })
270
284
 
271
- }( window.jQuery );
285
+ }(window.jQuery);
@@ -0,0 +1,78 @@
1
+
2
+ #~
3
+ # Used with "sherpa" styleguides for augmenting behavior for navigation
4
+ # and component definitions. Include this file only in the styleguide page.
5
+
6
+ class Sherpa
7
+ constructor: ->
8
+ @initialize()
9
+
10
+ initialize: ->
11
+ @domLookup()
12
+ @addListeners()
13
+ @activateMain()
14
+ @activateUsages()
15
+
16
+ # Create references for common DOM elements
17
+ domLookup: ->
18
+ @subnav_lists = $('.sherpa-anchor-nav li')
19
+ @subnav_links = $('.sherpa-anchor-nav a')
20
+ @usages = $('.sherpa-usage > h4')
21
+ @anchor_links = $('.sherpa-wrapper [href=#]')
22
+
23
+ # Listen to events from DOM elements
24
+ addListeners: ->
25
+ @subnav_links.on 'click', @activateSubnav
26
+ @anchor_links.on 'click', @disableAnchors
27
+ @usages.on 'click', @usageToggle
28
+
29
+ # Sherpa Specific
30
+ # Add the activate class to the main nav item based on the id of the body
31
+ activateMain: ->
32
+ active = $('body').attr('id')
33
+ main_nav = $('.sherpa-dox-nav li a')
34
+ for item in main_nav
35
+ link = $(item)
36
+ text = link.html().toLowerCase()
37
+ if text is active then link.parent('li').addClass('active')
38
+
39
+ # Set the active state on anchors after click
40
+ activateSubnav:(e) =>
41
+ @subnav_lists.removeClass('active')
42
+ $(e.target).parent('li').addClass('active')
43
+
44
+ # Disable `href="#"` within the guide
45
+ disableAnchors:(e) =>
46
+ e.preventDefault()
47
+
48
+ # Find the pre block closest to the selected usage header
49
+ getPreTag:(el) ->
50
+ el.parent('.sherpa-usage').find('pre').first()
51
+
52
+ # On page initialization hide the pre block and set text accordingly
53
+ activateUsages: ->
54
+ @usages.addClass('sherpa-togglable')
55
+ @usages.prepend("Hide ")
56
+ @usages.trigger 'click'
57
+
58
+ # Toggle the usage example on click
59
+ usageToggle:(e) =>
60
+ el = $(e.target)
61
+ pre = @getPreTag(el)
62
+ if pre.hasClass('sherpa-hidden') then @usageShow(el, pre) else @usageHide(el, pre)
63
+
64
+ # Show the usage example
65
+ usageShow:(el, pre) ->
66
+ text = el.html()
67
+ el.html(text.replace(/^View/, "Hide"))
68
+ pre.removeClass('sherpa-hidden')
69
+
70
+ # Hide the usage example
71
+ usageHide:(el, pre) ->
72
+ text = el.html()
73
+ el.html(text.replace(/^Hide/, "View"))
74
+ pre.addClass('sherpa-hidden')
75
+
76
+ # Get this party started
77
+ new Sherpa()
78
+
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: underoos
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0
4
+ version: 1.1.0
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -9,11 +9,11 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2012-04-18 00:00:00.000000000 Z
12
+ date: 2012-06-01 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: rails
16
- requirement: &2235676840 !ruby/object:Gem::Requirement
16
+ requirement: &70301044251460 !ruby/object:Gem::Requirement
17
17
  none: false
18
18
  requirements:
19
19
  - - ! '>='
@@ -21,10 +21,10 @@ dependencies:
21
21
  version: 3.1.0
22
22
  type: :runtime
23
23
  prerelease: false
24
- version_requirements: *2235676840
24
+ version_requirements: *70301044251460
25
25
  - !ruby/object:Gem::Dependency
26
26
  name: sass-rails
27
- requirement: &2235675140 !ruby/object:Gem::Requirement
27
+ requirement: &70301044250940 !ruby/object:Gem::Requirement
28
28
  none: false
29
29
  requirements:
30
30
  - - ! '>='
@@ -32,21 +32,10 @@ dependencies:
32
32
  version: '0'
33
33
  type: :runtime
34
34
  prerelease: false
35
- version_requirements: *2235675140
36
- - !ruby/object:Gem::Dependency
37
- name: haml-rails
38
- requirement: &2235673060 !ruby/object:Gem::Requirement
39
- none: false
40
- requirements:
41
- - - ! '>='
42
- - !ruby/object:Gem::Version
43
- version: '0'
44
- type: :runtime
45
- prerelease: false
46
- version_requirements: *2235673060
35
+ version_requirements: *70301044250940
47
36
  - !ruby/object:Gem::Dependency
48
37
  name: cucumber
49
- requirement: &2235687920 !ruby/object:Gem::Requirement
38
+ requirement: &70301044250020 !ruby/object:Gem::Requirement
50
39
  none: false
51
40
  requirements:
52
41
  - - ! '>='
@@ -54,21 +43,10 @@ dependencies:
54
43
  version: '0'
55
44
  type: :development
56
45
  prerelease: false
57
- version_requirements: *2235687920
46
+ version_requirements: *70301044250020
58
47
  - !ruby/object:Gem::Dependency
59
48
  name: aruba
60
- requirement: &2235687000 !ruby/object:Gem::Requirement
61
- none: false
62
- requirements:
63
- - - ! '>='
64
- - !ruby/object:Gem::Version
65
- version: '0'
66
- type: :development
67
- prerelease: false
68
- version_requirements: *2235687000
69
- - !ruby/object:Gem::Dependency
70
- name: jquery-rails
71
- requirement: &2235685560 !ruby/object:Gem::Requirement
49
+ requirement: &70301044249140 !ruby/object:Gem::Requirement
72
50
  none: false
73
51
  requirements:
74
52
  - - ! '>='
@@ -76,7 +54,7 @@ dependencies:
76
54
  version: '0'
77
55
  type: :development
78
56
  prerelease: false
79
- version_requirements: *2235685560
57
+ version_requirements: *70301044249140
80
58
  description: Starter styles in Sass
81
59
  email:
82
60
  - matt.kitt@modeset.com
@@ -92,10 +70,12 @@ files:
92
70
  - Procfile
93
71
  - README.md
94
72
  - Rakefile
95
- - app/assets/javascripts/styleguide.js
73
+ - app/assets/javascripts/docs.js
74
+ - app/assets/javascripts/styleguide.coffee
96
75
  - app/assets/javascripts/underoos.js
76
+ - app/assets/stylesheets/base/_base.sass
97
77
  - app/assets/stylesheets/base/_button-btn-mixin.sass
98
- - app/assets/stylesheets/base/_elements.sass
78
+ - app/assets/stylesheets/base/_buttons.sass
99
79
  - app/assets/stylesheets/base/_forms.sass
100
80
  - app/assets/stylesheets/base/_helpers.sass
101
81
  - app/assets/stylesheets/base/_normalize.sass
@@ -109,6 +89,7 @@ files:
109
89
  - app/assets/stylesheets/components/_carets.sass
110
90
  - app/assets/stylesheets/components/_carousels.sass
111
91
  - app/assets/stylesheets/components/_close.sass
92
+ - app/assets/stylesheets/components/_components.sass
112
93
  - app/assets/stylesheets/components/_decals.sass
113
94
  - app/assets/stylesheets/components/_dropdowns.sass
114
95
  - app/assets/stylesheets/components/_media.sass
@@ -125,6 +106,7 @@ files:
125
106
  - app/assets/stylesheets/components/_tooltips.sass
126
107
  - app/assets/stylesheets/components/_wells.sass
127
108
  - app/assets/stylesheets/layouts/_containers.sass
109
+ - app/assets/stylesheets/layouts/_layouts.sass
128
110
  - app/assets/stylesheets/layouts/_print.sass
129
111
  - app/assets/stylesheets/layouts/_queries.sass
130
112
  - app/assets/stylesheets/layouts/_upgrades.sass
@@ -135,60 +117,27 @@ files:
135
117
  - app/assets/stylesheets/mixins/_conversions.sass
136
118
  - app/assets/stylesheets/mixins/_font-size.sass
137
119
  - app/assets/stylesheets/mixins/_image-tools.sass
120
+ - app/assets/stylesheets/mixins/_inline-block.sass
138
121
  - app/assets/stylesheets/mixins/_ir.sass
139
122
  - app/assets/stylesheets/mixins/_mixins.sass
123
+ - app/assets/stylesheets/mixins/_responsive.sass
124
+ - app/assets/stylesheets/mixins/_sticky-footer.sass
140
125
  - app/assets/stylesheets/mixins/_tab-focus.sass
141
126
  - app/assets/stylesheets/mixins/_timing-equations.sass
142
127
  - app/assets/stylesheets/mixins/_visibility.sass
143
128
  - app/assets/stylesheets/polyfills/_box-shadow.sass
144
129
  - app/assets/stylesheets/polyfills/_box-sizing.sass
145
130
  - app/assets/stylesheets/polyfills/_functions.sass
146
- - app/assets/stylesheets/polyfills/_inline-block.sass
147
131
  - app/assets/stylesheets/polyfills/_opacity.sass
148
132
  - app/assets/stylesheets/polyfills/_polyfills.sass
149
133
  - app/assets/stylesheets/polyfills/_transition.sass
150
134
  - app/assets/stylesheets/polyfills/_user-select.sass
151
- - app/assets/stylesheets/styleguide.sass
152
- - app/assets/stylesheets/themes/_default.sass
135
+ - app/assets/stylesheets/settings/_config.sass
136
+ - app/assets/stylesheets/settings/_settings.sass
137
+ - app/assets/stylesheets/settings/_theme.sass
138
+ - app/assets/stylesheets/underoos-docs.sass
153
139
  - app/assets/stylesheets/underoos.sass
154
- - app/controllers/underoos/styleguides_controller.rb
155
- - app/views/shared/_upgrades.html.haml
156
- - app/views/underoos/styleguides/_assets.haml
157
- - app/views/underoos/styleguides/_components.haml
158
- - app/views/underoos/styleguides/_elements.haml
159
- - app/views/underoos/styleguides/_forms.haml
160
- - app/views/underoos/styleguides/_layouts.haml
161
- - app/views/underoos/styleguides/_palettes.haml
162
- - app/views/underoos/styleguides/_resources.haml
163
- - app/views/underoos/styleguides/_tables.haml
164
- - app/views/underoos/styleguides/_typography.haml
165
- - app/views/underoos/styleguides/_utilities.haml
166
- - app/views/underoos/styleguides/components/_accordions.haml
167
- - app/views/underoos/styleguides/components/_breadcrumbs.haml
168
- - app/views/underoos/styleguides/components/_button-groups.haml
169
- - app/views/underoos/styleguides/components/_carets.haml
170
- - app/views/underoos/styleguides/components/_close.haml
171
- - app/views/underoos/styleguides/components/_decals.haml
172
- - app/views/underoos/styleguides/components/_dropdowns.haml
173
- - app/views/underoos/styleguides/components/_media.haml
174
- - app/views/underoos/styleguides/components/_modals.haml
175
- - app/views/underoos/styleguides/components/_nav-lists.haml
176
- - app/views/underoos/styleguides/components/_navbars.haml
177
- - app/views/underoos/styleguides/components/_navs-showcase.haml
178
- - app/views/underoos/styleguides/components/_notifications.haml
179
- - app/views/underoos/styleguides/components/_paddles.haml
180
- - app/views/underoos/styleguides/components/_pagination.haml
181
- - app/views/underoos/styleguides/components/_popovers.haml
182
- - app/views/underoos/styleguides/components/_progress-bars.haml
183
- - app/views/underoos/styleguides/components/_tabs-pills.haml
184
- - app/views/underoos/styleguides/components/_tooltips.haml
185
- - app/views/underoos/styleguides/components/_wells.haml
186
- - app/views/underoos/styleguides/index.html.haml
187
- - app/views/underoos/styleguides/partials/_form-template.haml
188
- - app/views/underoos/styleguides/partials/_table-data.haml
189
- - app/views/underoos/styleguides/partials/_transitions.haml
190
140
  - config.ru
191
- - config/routes.rb
192
141
  - features/generator.feature
193
142
  - features/step_definitions/underoos_steps.rb
194
143
  - features/support/env.rb
@@ -202,7 +151,17 @@ files:
202
151
  - public/apple-touch-icon-precomposed.png
203
152
  - public/apple-touch-icon.png
204
153
  - public/favicon.ico
154
+ - public/images.html
155
+ - public/index.html
156
+ - public/sherpa.css
157
+ - public/styles.html
205
158
  - script/javascripts
159
+ - sherpa/config.yml
160
+ - sherpa/layouts/images.mustache
161
+ - sherpa/layouts/layout.mustache
162
+ - sherpa/layouts/overview.mustache
163
+ - sherpa/layouts/raw.mustache
164
+ - sherpa/layouts/section.mustache
206
165
  - underoos.gemspec
207
166
  - vendor/assets/javascripts/bootstrap-alert.js
208
167
  - vendor/assets/javascripts/bootstrap-button.js
@@ -210,12 +169,12 @@ files:
210
169
  - vendor/assets/javascripts/bootstrap-dropdown.js
211
170
  - vendor/assets/javascripts/bootstrap-modal.js
212
171
  - vendor/assets/javascripts/bootstrap-popover.js
213
- - vendor/assets/javascripts/bootstrap-scrollspy.js
214
172
  - vendor/assets/javascripts/bootstrap-tab.js
215
173
  - vendor/assets/javascripts/bootstrap-tooltip.js
216
174
  - vendor/assets/javascripts/bootstrap-transition.js
217
175
  - vendor/assets/javascripts/bootstrap-typeahead.js
218
176
  - vendor/assets/javascripts/prettify.js
177
+ - vendor/assets/javascripts/sherpa.coffee
219
178
  homepage: http://underoos.modeset.com/
220
179
  licenses: []
221
180
  post_install_message: