cupboard 0.2.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (130) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +10 -0
  3. data/.rspec +2 -0
  4. data/.ruby-version +1 -0
  5. data/.travis.yml +4 -0
  6. data/CODE_OF_CONDUCT.md +13 -0
  7. data/Dockerfile +19 -0
  8. data/Gemfile +6 -0
  9. data/LICENSE.txt +21 -0
  10. data/README.md +44 -0
  11. data/Rakefile +6 -0
  12. data/app/assets/images/category-cover.png +0 -0
  13. data/app/assets/images/category-default.jpg +0 -0
  14. data/app/assets/images/default-avatar.png +0 -0
  15. data/app/assets/images/favicon.ico +0 -0
  16. data/app/assets/images/icook-logo.png +0 -0
  17. data/app/assets/images/icook-logo.svg +26 -0
  18. data/app/assets/images/logo-2x.png +0 -0
  19. data/app/assets/images/no-result.png +0 -0
  20. data/app/assets/images/recipe-default.png +0 -0
  21. data/app/assets/images/section_bg.jpg +0 -0
  22. data/app/assets/images/setting-pr.jpg +0 -0
  23. data/app/assets/images/step-placeholder.jpg +0 -0
  24. data/app/assets/images/vip-icon.svg +1 -0
  25. data/app/assets/pages/atomic.md +56 -0
  26. data/app/assets/pages/index.md +101 -0
  27. data/app/assets/stylesheets/_base.scss +4 -0
  28. data/app/assets/stylesheets/_basic.scss +22 -0
  29. data/app/assets/stylesheets/_components.scss +95 -0
  30. data/app/assets/stylesheets/_forms.scss +159 -0
  31. data/app/assets/stylesheets/_global.scss +40 -0
  32. data/app/assets/stylesheets/_images.scss +125 -0
  33. data/app/assets/stylesheets/_layouts.scss +4 -0
  34. data/app/assets/stylesheets/_lists.scss +203 -0
  35. data/app/assets/stylesheets/_mixins.scss +6 -0
  36. data/app/assets/stylesheets/_tables.scss +244 -0
  37. data/app/assets/stylesheets/_typography.scss +292 -0
  38. data/app/assets/stylesheets/_variables.scss +1 -0
  39. data/app/assets/stylesheets/_widgets.scss +50 -0
  40. data/app/assets/stylesheets/base/_badge.scss +89 -0
  41. data/app/assets/stylesheets/base/_buttons.scss +217 -0
  42. data/app/assets/stylesheets/components/_accordion.scss +69 -0
  43. data/app/assets/stylesheets/components/_breadcrumbs.scss +46 -0
  44. data/app/assets/stylesheets/components/_cards.scss +12 -0
  45. data/app/assets/stylesheets/components/_grid.scss +45 -0
  46. data/app/assets/stylesheets/components/_navigations.scss +12 -0
  47. data/app/assets/stylesheets/components/_pagination.scss +166 -0
  48. data/app/assets/stylesheets/components/_search-form.scss +56 -0
  49. data/app/assets/stylesheets/components/_sorting-cards.scss +76 -0
  50. data/app/assets/stylesheets/components/_text.scss +166 -0
  51. data/app/assets/stylesheets/components/alerts/_alert-global.scss +137 -0
  52. data/app/assets/stylesheets/components/alerts/_alert-market.scss +129 -0
  53. data/app/assets/stylesheets/components/cards/_dish-card.scss +244 -0
  54. data/app/assets/stylesheets/components/cards/_list-card.scss +168 -0
  55. data/app/assets/stylesheets/components/cards/_photo-card.scss +244 -0
  56. data/app/assets/stylesheets/components/cards/_product-card.scss +104 -0
  57. data/app/assets/stylesheets/components/cards/_recipe-card.scss +96 -0
  58. data/app/assets/stylesheets/components/cards/_video-card.scss +206 -0
  59. data/app/assets/stylesheets/components/comments/_comment-form.scss +222 -0
  60. data/app/assets/stylesheets/components/medias/_blog-feeds.scss +28 -0
  61. data/app/assets/stylesheets/components/medias/_brand-cover.scss +127 -0
  62. data/app/assets/stylesheets/components/medias/_brand-product.scss +35 -0
  63. data/app/assets/stylesheets/components/medias/_business-kitchen.scss +66 -0
  64. data/app/assets/stylesheets/components/medias/_categories-cover.scss +79 -0
  65. data/app/assets/stylesheets/components/medias/_hot-categories.scss +36 -0
  66. data/app/assets/stylesheets/components/medias/_popular-categories.scss +89 -0
  67. data/app/assets/stylesheets/components/medias/_popular-recipes.scss +38 -0
  68. data/app/assets/stylesheets/components/medias/_pr-lists.scss +53 -0
  69. data/app/assets/stylesheets/components/medias/_recipe-reference.scss +45 -0
  70. data/app/assets/stylesheets/components/medias/_user-recipes.scss +46 -0
  71. data/app/assets/stylesheets/components/navigations/_blog-nav.scss +120 -0
  72. data/app/assets/stylesheets/components/navigations/_brand-tabs-nav.scss +187 -0
  73. data/app/assets/stylesheets/components/navigations/_categories-nav-responsive.scss +131 -0
  74. data/app/assets/stylesheets/components/navigations/_categories-nav.scss +307 -0
  75. data/app/assets/stylesheets/components/navigations/_recipe-nav.scss +112 -0
  76. data/app/assets/stylesheets/components/navigations/_tv-nav.scss +283 -0
  77. data/app/assets/stylesheets/components/recipes/_ingredients.scss +223 -0
  78. data/app/assets/stylesheets/components/recipes/_notes.scss +60 -0
  79. data/app/assets/stylesheets/components/recipes/_steps.scss +153 -0
  80. data/app/assets/stylesheets/components/single_comment/_single-comment.scss +251 -0
  81. data/app/assets/stylesheets/layouts/_footer-nav.scss +151 -0
  82. data/app/assets/stylesheets/layouts/_footer.scss +48 -0
  83. data/app/assets/stylesheets/layouts/_footers.scss +12 -0
  84. data/app/assets/stylesheets/layouts/_global-navbar.scss +261 -0
  85. data/app/assets/stylesheets/layouts/_headers.scss +11 -0
  86. data/app/assets/stylesheets/layouts/_sub-header-market.scss +138 -0
  87. data/app/assets/stylesheets/mixins/_mixin-alert.scss +27 -0
  88. data/app/assets/stylesheets/mixins/_mixin-animation.scss +10 -0
  89. data/app/assets/stylesheets/mixins/_mixin-badge.scss +21 -0
  90. data/app/assets/stylesheets/mixins/_mixin-buttons.scss +21 -0
  91. data/app/assets/stylesheets/mixins/_mixin-icons.scss +32 -0
  92. data/app/assets/stylesheets/mixins/_mixin-type.scss +7 -0
  93. data/app/assets/stylesheets/variables/_color-palette.scss +222 -0
  94. data/app/assets/stylesheets/widgets/_brand-sidebar-widgets.scss +11 -0
  95. data/app/assets/stylesheets/widgets/_recipe-mark.scss +55 -0
  96. data/app/assets/stylesheets/widgets/_sidebar-widgets.scss +11 -0
  97. data/app/assets/stylesheets/widgets/_tv-sidebar-widgets.scss +11 -0
  98. data/app/assets/stylesheets/widgets/_user-sidebar-widgets.scss +11 -0
  99. data/app/assets/stylesheets/widgets/_widgets.scss +11 -0
  100. data/app/assets/stylesheets/widgets/brands/_pr-ingredients.scss +154 -0
  101. data/app/assets/stylesheets/widgets/brands/_pr-latest.scss +62 -0
  102. data/app/assets/stylesheets/widgets/brands/_pr-popular-recipe-lists.scss +51 -0
  103. data/app/assets/stylesheets/widgets/brands/_pr-recent.scss +59 -0
  104. data/app/assets/stylesheets/widgets/brands/_pr-video.scss +34 -0
  105. data/app/assets/stylesheets/widgets/features/_feature-events.scss +119 -0
  106. data/app/assets/stylesheets/widgets/features/_feature-slides.scss +144 -0
  107. data/app/assets/stylesheets/widgets/feeds/_blog-feeds.scss +144 -0
  108. data/app/assets/stylesheets/widgets/feeds/_tv-feeds.scss +143 -0
  109. data/app/assets/stylesheets/widgets/modal/_modal-reset.scss +40 -0
  110. data/app/assets/stylesheets/widgets/modal/_recipe-list-modal.scss +111 -0
  111. data/app/assets/stylesheets/widgets/sidebar-widgets/_business-kitchen.scss +134 -0
  112. data/app/assets/stylesheets/widgets/sidebar-widgets/_icook-video.scss +109 -0
  113. data/app/assets/stylesheets/widgets/sidebar-widgets/_popular-recipe-lists.scss +232 -0
  114. data/app/assets/stylesheets/widgets/sidebar-widgets/_popular-recipes.scss +105 -0
  115. data/app/assets/stylesheets/widgets/sidebar-widgets/_popular-search.scss +317 -0
  116. data/app/assets/stylesheets/widgets/sidebar-widgets/_recipes-collect.scss +45 -0
  117. data/app/assets/stylesheets/widgets/sidebar-widgets/_sidebar-widget.scss +62 -0
  118. data/app/assets/stylesheets/widgets/tv/_tv-more-recipes.scss +93 -0
  119. data/app/assets/stylesheets/widgets/tv/_tv-popular-tags.scss +78 -0
  120. data/app/assets/stylesheets/widgets/users/_fav-list.scss +197 -0
  121. data/app/assets/stylesheets/widgets/users/_user-stats.scss +330 -0
  122. data/bin/console +14 -0
  123. data/bin/setup +7 -0
  124. data/config/initializers/assets.rb +5 -0
  125. data/cupboard.gemspec +40 -0
  126. data/example/.gitignore +19 -0
  127. data/lib/cupboard.rb +12 -0
  128. data/lib/cupboard/engine.rb +6 -0
  129. data/lib/cupboard/version.rb +3 -0
  130. metadata +298 -0
data/bin/console ADDED
@@ -0,0 +1,14 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require "bundler/setup"
4
+ require "cupboard"
5
+
6
+ # You can add fixtures and/or initialization code here to make experimenting
7
+ # with your gem easier. You can also use a different console, if you like.
8
+
9
+ # (If you use this, don't forget to add pry to your Gemfile!)
10
+ # require "pry"
11
+ # Pry.start
12
+
13
+ require "irb"
14
+ IRB.start
data/bin/setup ADDED
@@ -0,0 +1,7 @@
1
+ #!/bin/bash
2
+ set -euo pipefail
3
+ IFS=$'\n\t'
4
+
5
+ bundle install
6
+
7
+ # Do any other automated setup that you need to do here
@@ -0,0 +1,5 @@
1
+ # Images
2
+ Rails.application.config.assets.precompile << /\.(?:png|jpg|jpeg|gif)\z/
3
+
4
+ # Fonts
5
+ Rails.application.config.assets.precompile << /\.(?:svg|eot|woff|ttf|otf)\z/
data/cupboard.gemspec ADDED
@@ -0,0 +1,40 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'cupboard/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "cupboard"
8
+ spec.version = Cupboard::VERSION
9
+ spec.authors = ["Stan Lo"]
10
+ spec.email = ["a22301613@yahoo.com.tw"]
11
+
12
+ spec.summary = %q{Write a short summary, because Rubygems requires one.}
13
+ spec.description = %q{Write a longer description or delete this line.}
14
+ spec.homepage = "https://github.com/polydice/cupboard"
15
+ spec.license = "MIT"
16
+
17
+ # Prevent pushing this gem to RubyGems.org by setting 'allowed_push_host', or
18
+ # delete this section to allow pushing this gem to any host.
19
+ # if spec.respond_to?(:metadata)
20
+ # spec.metadata['allowed_push_host'] = "Todo: Set to 'http://mygemserver.com'"
21
+ # else
22
+ # raise "RubyGems 2.0 or newer is required to protect against public gem pushes."
23
+ # end
24
+
25
+ spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) } - Dir.glob('example/**/*')
26
+ spec.bindir = "exe"
27
+ spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
28
+ spec.require_paths = ["lib"]
29
+
30
+ spec.add_dependency "rails", ">= 4.2"
31
+ spec.add_dependency "bootstrap-sass"
32
+ spec.add_dependency "compass-rails"
33
+ spec.add_dependency "font-awesome-sass"
34
+ spec.add_dependency "sass-rails"
35
+ spec.add_dependency "navigasmic"
36
+
37
+ spec.add_development_dependency "bundler", "~> 1.10"
38
+ spec.add_development_dependency "rake", "~> 10.0"
39
+ spec.add_development_dependency "rspec"
40
+ end
@@ -0,0 +1,19 @@
1
+ # See http://help.github.com/ignore-files/ for more about ignoring files.
2
+ #
3
+ # If you find yourself ignoring temporary files generated by your text editor
4
+ # or operating system, you probably want to add a global ignore instead:
5
+ # git config --global core.excludesfile ~/.gitignore_global
6
+
7
+ # Ignore bundler config
8
+ /.bundle
9
+
10
+ # Ignore the build directory
11
+ /build
12
+ .hologram
13
+
14
+ # Ignore cache
15
+ /.sass-cache
16
+ /.cache
17
+
18
+ # Ignore .DS_store file
19
+ .DS_Store
data/lib/cupboard.rb ADDED
@@ -0,0 +1,12 @@
1
+ require "cupboard/version"
2
+ require "bootstrap-sass"
3
+ require "navigasmic"
4
+ require "font-awesome-sass"
5
+ require "compass-rails" unless defined?(Middleman)
6
+ require "cupboard/engine"
7
+ require "icookfont-sass"
8
+ require "icook-kaminari-views"
9
+
10
+ module Cupboard
11
+ # Your code goes here...
12
+ end
@@ -0,0 +1,6 @@
1
+ require "rails/engine"
2
+
3
+ module Cupboard
4
+ class Engine < Rails::Engine
5
+ end
6
+ end
@@ -0,0 +1,3 @@
1
+ module Cupboard
2
+ VERSION = "0.2.0"
3
+ end
metadata ADDED
@@ -0,0 +1,298 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: cupboard
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.2.0
5
+ platform: ruby
6
+ authors:
7
+ - Stan Lo
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2016-09-09 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: rails
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ">="
18
+ - !ruby/object:Gem::Version
19
+ version: '4.2'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ">="
25
+ - !ruby/object:Gem::Version
26
+ version: '4.2'
27
+ - !ruby/object:Gem::Dependency
28
+ name: bootstrap-sass
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - ">="
32
+ - !ruby/object:Gem::Version
33
+ version: '0'
34
+ type: :runtime
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - ">="
39
+ - !ruby/object:Gem::Version
40
+ version: '0'
41
+ - !ruby/object:Gem::Dependency
42
+ name: compass-rails
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - ">="
46
+ - !ruby/object:Gem::Version
47
+ version: '0'
48
+ type: :runtime
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - ">="
53
+ - !ruby/object:Gem::Version
54
+ version: '0'
55
+ - !ruby/object:Gem::Dependency
56
+ name: font-awesome-sass
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - ">="
60
+ - !ruby/object:Gem::Version
61
+ version: '0'
62
+ type: :runtime
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - ">="
67
+ - !ruby/object:Gem::Version
68
+ version: '0'
69
+ - !ruby/object:Gem::Dependency
70
+ name: sass-rails
71
+ requirement: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - ">="
74
+ - !ruby/object:Gem::Version
75
+ version: '0'
76
+ type: :runtime
77
+ prerelease: false
78
+ version_requirements: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - ">="
81
+ - !ruby/object:Gem::Version
82
+ version: '0'
83
+ - !ruby/object:Gem::Dependency
84
+ name: navigasmic
85
+ requirement: !ruby/object:Gem::Requirement
86
+ requirements:
87
+ - - ">="
88
+ - !ruby/object:Gem::Version
89
+ version: '0'
90
+ type: :runtime
91
+ prerelease: false
92
+ version_requirements: !ruby/object:Gem::Requirement
93
+ requirements:
94
+ - - ">="
95
+ - !ruby/object:Gem::Version
96
+ version: '0'
97
+ - !ruby/object:Gem::Dependency
98
+ name: bundler
99
+ requirement: !ruby/object:Gem::Requirement
100
+ requirements:
101
+ - - "~>"
102
+ - !ruby/object:Gem::Version
103
+ version: '1.10'
104
+ type: :development
105
+ prerelease: false
106
+ version_requirements: !ruby/object:Gem::Requirement
107
+ requirements:
108
+ - - "~>"
109
+ - !ruby/object:Gem::Version
110
+ version: '1.10'
111
+ - !ruby/object:Gem::Dependency
112
+ name: rake
113
+ requirement: !ruby/object:Gem::Requirement
114
+ requirements:
115
+ - - "~>"
116
+ - !ruby/object:Gem::Version
117
+ version: '10.0'
118
+ type: :development
119
+ prerelease: false
120
+ version_requirements: !ruby/object:Gem::Requirement
121
+ requirements:
122
+ - - "~>"
123
+ - !ruby/object:Gem::Version
124
+ version: '10.0'
125
+ - !ruby/object:Gem::Dependency
126
+ name: rspec
127
+ requirement: !ruby/object:Gem::Requirement
128
+ requirements:
129
+ - - ">="
130
+ - !ruby/object:Gem::Version
131
+ version: '0'
132
+ type: :development
133
+ prerelease: false
134
+ version_requirements: !ruby/object:Gem::Requirement
135
+ requirements:
136
+ - - ">="
137
+ - !ruby/object:Gem::Version
138
+ version: '0'
139
+ description: Write a longer description or delete this line.
140
+ email:
141
+ - a22301613@yahoo.com.tw
142
+ executables: []
143
+ extensions: []
144
+ extra_rdoc_files: []
145
+ files:
146
+ - ".gitignore"
147
+ - ".rspec"
148
+ - ".ruby-version"
149
+ - ".travis.yml"
150
+ - CODE_OF_CONDUCT.md
151
+ - Dockerfile
152
+ - Gemfile
153
+ - LICENSE.txt
154
+ - README.md
155
+ - Rakefile
156
+ - app/assets/images/category-cover.png
157
+ - app/assets/images/category-default.jpg
158
+ - app/assets/images/default-avatar.png
159
+ - app/assets/images/favicon.ico
160
+ - app/assets/images/icook-logo.png
161
+ - app/assets/images/icook-logo.svg
162
+ - app/assets/images/logo-2x.png
163
+ - app/assets/images/no-result.png
164
+ - app/assets/images/recipe-default.png
165
+ - app/assets/images/section_bg.jpg
166
+ - app/assets/images/setting-pr.jpg
167
+ - app/assets/images/step-placeholder.jpg
168
+ - app/assets/images/vip-icon.svg
169
+ - app/assets/pages/atomic.md
170
+ - app/assets/pages/index.md
171
+ - app/assets/stylesheets/_base.scss
172
+ - app/assets/stylesheets/_basic.scss
173
+ - app/assets/stylesheets/_components.scss
174
+ - app/assets/stylesheets/_forms.scss
175
+ - app/assets/stylesheets/_global.scss
176
+ - app/assets/stylesheets/_images.scss
177
+ - app/assets/stylesheets/_layouts.scss
178
+ - app/assets/stylesheets/_lists.scss
179
+ - app/assets/stylesheets/_mixins.scss
180
+ - app/assets/stylesheets/_tables.scss
181
+ - app/assets/stylesheets/_typography.scss
182
+ - app/assets/stylesheets/_variables.scss
183
+ - app/assets/stylesheets/_widgets.scss
184
+ - app/assets/stylesheets/base/_badge.scss
185
+ - app/assets/stylesheets/base/_buttons.scss
186
+ - app/assets/stylesheets/components/_accordion.scss
187
+ - app/assets/stylesheets/components/_breadcrumbs.scss
188
+ - app/assets/stylesheets/components/_cards.scss
189
+ - app/assets/stylesheets/components/_grid.scss
190
+ - app/assets/stylesheets/components/_navigations.scss
191
+ - app/assets/stylesheets/components/_pagination.scss
192
+ - app/assets/stylesheets/components/_search-form.scss
193
+ - app/assets/stylesheets/components/_sorting-cards.scss
194
+ - app/assets/stylesheets/components/_text.scss
195
+ - app/assets/stylesheets/components/alerts/_alert-global.scss
196
+ - app/assets/stylesheets/components/alerts/_alert-market.scss
197
+ - app/assets/stylesheets/components/cards/_dish-card.scss
198
+ - app/assets/stylesheets/components/cards/_list-card.scss
199
+ - app/assets/stylesheets/components/cards/_photo-card.scss
200
+ - app/assets/stylesheets/components/cards/_product-card.scss
201
+ - app/assets/stylesheets/components/cards/_recipe-card.scss
202
+ - app/assets/stylesheets/components/cards/_video-card.scss
203
+ - app/assets/stylesheets/components/comments/_comment-form.scss
204
+ - app/assets/stylesheets/components/medias/_blog-feeds.scss
205
+ - app/assets/stylesheets/components/medias/_brand-cover.scss
206
+ - app/assets/stylesheets/components/medias/_brand-product.scss
207
+ - app/assets/stylesheets/components/medias/_business-kitchen.scss
208
+ - app/assets/stylesheets/components/medias/_categories-cover.scss
209
+ - app/assets/stylesheets/components/medias/_hot-categories.scss
210
+ - app/assets/stylesheets/components/medias/_popular-categories.scss
211
+ - app/assets/stylesheets/components/medias/_popular-recipes.scss
212
+ - app/assets/stylesheets/components/medias/_pr-lists.scss
213
+ - app/assets/stylesheets/components/medias/_recipe-reference.scss
214
+ - app/assets/stylesheets/components/medias/_user-recipes.scss
215
+ - app/assets/stylesheets/components/navigations/_blog-nav.scss
216
+ - app/assets/stylesheets/components/navigations/_brand-tabs-nav.scss
217
+ - app/assets/stylesheets/components/navigations/_categories-nav-responsive.scss
218
+ - app/assets/stylesheets/components/navigations/_categories-nav.scss
219
+ - app/assets/stylesheets/components/navigations/_recipe-nav.scss
220
+ - app/assets/stylesheets/components/navigations/_tv-nav.scss
221
+ - app/assets/stylesheets/components/recipes/_ingredients.scss
222
+ - app/assets/stylesheets/components/recipes/_notes.scss
223
+ - app/assets/stylesheets/components/recipes/_steps.scss
224
+ - app/assets/stylesheets/components/single_comment/_single-comment.scss
225
+ - app/assets/stylesheets/layouts/_footer-nav.scss
226
+ - app/assets/stylesheets/layouts/_footer.scss
227
+ - app/assets/stylesheets/layouts/_footers.scss
228
+ - app/assets/stylesheets/layouts/_global-navbar.scss
229
+ - app/assets/stylesheets/layouts/_headers.scss
230
+ - app/assets/stylesheets/layouts/_sub-header-market.scss
231
+ - app/assets/stylesheets/mixins/_mixin-alert.scss
232
+ - app/assets/stylesheets/mixins/_mixin-animation.scss
233
+ - app/assets/stylesheets/mixins/_mixin-badge.scss
234
+ - app/assets/stylesheets/mixins/_mixin-buttons.scss
235
+ - app/assets/stylesheets/mixins/_mixin-icons.scss
236
+ - app/assets/stylesheets/mixins/_mixin-type.scss
237
+ - app/assets/stylesheets/variables/_color-palette.scss
238
+ - app/assets/stylesheets/widgets/_brand-sidebar-widgets.scss
239
+ - app/assets/stylesheets/widgets/_recipe-mark.scss
240
+ - app/assets/stylesheets/widgets/_sidebar-widgets.scss
241
+ - app/assets/stylesheets/widgets/_tv-sidebar-widgets.scss
242
+ - app/assets/stylesheets/widgets/_user-sidebar-widgets.scss
243
+ - app/assets/stylesheets/widgets/_widgets.scss
244
+ - app/assets/stylesheets/widgets/brands/_pr-ingredients.scss
245
+ - app/assets/stylesheets/widgets/brands/_pr-latest.scss
246
+ - app/assets/stylesheets/widgets/brands/_pr-popular-recipe-lists.scss
247
+ - app/assets/stylesheets/widgets/brands/_pr-recent.scss
248
+ - app/assets/stylesheets/widgets/brands/_pr-video.scss
249
+ - app/assets/stylesheets/widgets/features/_feature-events.scss
250
+ - app/assets/stylesheets/widgets/features/_feature-slides.scss
251
+ - app/assets/stylesheets/widgets/feeds/_blog-feeds.scss
252
+ - app/assets/stylesheets/widgets/feeds/_tv-feeds.scss
253
+ - app/assets/stylesheets/widgets/modal/_modal-reset.scss
254
+ - app/assets/stylesheets/widgets/modal/_recipe-list-modal.scss
255
+ - app/assets/stylesheets/widgets/sidebar-widgets/_business-kitchen.scss
256
+ - app/assets/stylesheets/widgets/sidebar-widgets/_icook-video.scss
257
+ - app/assets/stylesheets/widgets/sidebar-widgets/_popular-recipe-lists.scss
258
+ - app/assets/stylesheets/widgets/sidebar-widgets/_popular-recipes.scss
259
+ - app/assets/stylesheets/widgets/sidebar-widgets/_popular-search.scss
260
+ - app/assets/stylesheets/widgets/sidebar-widgets/_recipes-collect.scss
261
+ - app/assets/stylesheets/widgets/sidebar-widgets/_sidebar-widget.scss
262
+ - app/assets/stylesheets/widgets/tv/_tv-more-recipes.scss
263
+ - app/assets/stylesheets/widgets/tv/_tv-popular-tags.scss
264
+ - app/assets/stylesheets/widgets/users/_fav-list.scss
265
+ - app/assets/stylesheets/widgets/users/_user-stats.scss
266
+ - bin/console
267
+ - bin/setup
268
+ - config/initializers/assets.rb
269
+ - cupboard.gemspec
270
+ - example/.gitignore
271
+ - lib/cupboard.rb
272
+ - lib/cupboard/engine.rb
273
+ - lib/cupboard/version.rb
274
+ homepage: https://github.com/polydice/cupboard
275
+ licenses:
276
+ - MIT
277
+ metadata: {}
278
+ post_install_message:
279
+ rdoc_options: []
280
+ require_paths:
281
+ - lib
282
+ required_ruby_version: !ruby/object:Gem::Requirement
283
+ requirements:
284
+ - - ">="
285
+ - !ruby/object:Gem::Version
286
+ version: '0'
287
+ required_rubygems_version: !ruby/object:Gem::Requirement
288
+ requirements:
289
+ - - ">="
290
+ - !ruby/object:Gem::Version
291
+ version: '0'
292
+ requirements: []
293
+ rubyforge_project:
294
+ rubygems_version: 2.5.1
295
+ signing_key:
296
+ specification_version: 4
297
+ summary: Write a short summary, because Rubygems requires one.
298
+ test_files: []