whiskers 0.0.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (59) hide show
  1. checksums.yaml +7 -0
  2. data/Gemfile +3 -0
  3. data/Gemfile.lock +34 -0
  4. data/LICENSE.md +12 -0
  5. data/README.md +116 -0
  6. data/bin/whiskers +4 -0
  7. data/core/whiskers/base/index.html +180 -0
  8. data/core/whiskers/base/scripts/src/app.coffee +8 -0
  9. data/core/whiskers/base/scripts/src/layouts/home.coffee +3 -0
  10. data/core/whiskers/base/scripts/src/modules/header.coffee +11 -0
  11. data/core/whiskers/base/stylesheets/app.sass +6 -0
  12. data/core/whiskers/base/stylesheets/layouts/home.sass +8 -0
  13. data/core/whiskers/base/stylesheets/layouts/layouts.sass +1 -0
  14. data/core/whiskers/base/stylesheets/modules/comment.scss +65 -0
  15. data/core/whiskers/base/stylesheets/modules/device.scss +87 -0
  16. data/core/whiskers/base/stylesheets/modules/footer.scss +104 -0
  17. data/core/whiskers/base/stylesheets/modules/grid-item.scss +97 -0
  18. data/core/whiskers/base/stylesheets/modules/header.scss +268 -0
  19. data/core/whiskers/base/stylesheets/modules/modules.sass +6 -0
  20. data/core/whiskers/base/stylesheets/modules/sample-box.sass +9 -0
  21. data/core/whiskers/base/stylesheets/plugins/plugins.sass +5 -0
  22. data/core/whiskers/base/stylesheets/plugins/sticky-footer.sass +11 -0
  23. data/core/whiskers/blog/index.html +97 -0
  24. data/core/whiskers/blog/scripts/src/app.coffee +8 -0
  25. data/core/whiskers/blog/scripts/src/layouts/home.coffee +3 -0
  26. data/core/whiskers/blog/scripts/src/modules/header.coffee +13 -0
  27. data/core/whiskers/blog/stylesheets/app.sass +6 -0
  28. data/core/whiskers/blog/stylesheets/layouts/home.sass +10 -0
  29. data/core/whiskers/blog/stylesheets/layouts/layouts.sass +1 -0
  30. data/core/whiskers/blog/stylesheets/modules/article.scss +90 -0
  31. data/core/whiskers/blog/stylesheets/modules/footer.scss +104 -0
  32. data/core/whiskers/blog/stylesheets/modules/header.scss +262 -0
  33. data/core/whiskers/blog/stylesheets/modules/hero.scss +62 -0
  34. data/core/whiskers/blog/stylesheets/modules/modules.sass +4 -0
  35. data/core/whiskers/blog/stylesheets/plugins/plugins.sass +5 -0
  36. data/core/whiskers/blog/stylesheets/plugins/sticky-footer.sass +11 -0
  37. data/core/whiskers/store/index.html +245 -0
  38. data/core/whiskers/store/scripts/src/app.coffee +8 -0
  39. data/core/whiskers/store/scripts/src/layouts/home.coffee +3 -0
  40. data/core/whiskers/store/scripts/src/modules/header.coffee +11 -0
  41. data/core/whiskers/store/stylesheets/app.sass +6 -0
  42. data/core/whiskers/store/stylesheets/layouts/home.sass +12 -0
  43. data/core/whiskers/store/stylesheets/layouts/layouts.sass +1 -0
  44. data/core/whiskers/store/stylesheets/modules/button-group.scss +92 -0
  45. data/core/whiskers/store/stylesheets/modules/card.scss +86 -0
  46. data/core/whiskers/store/stylesheets/modules/footer.scss +104 -0
  47. data/core/whiskers/store/stylesheets/modules/header.scss +339 -0
  48. data/core/whiskers/store/stylesheets/modules/hero.scss +55 -0
  49. data/core/whiskers/store/stylesheets/modules/modules.sass +6 -0
  50. data/core/whiskers/store/stylesheets/modules/pagination.scss +63 -0
  51. data/core/whiskers/store/stylesheets/plugins/plugins.sass +5 -0
  52. data/core/whiskers/store/stylesheets/plugins/sticky-footer.sass +11 -0
  53. data/lib/whiskers.rb +1 -0
  54. data/lib/whiskers/generator.rb +235 -0
  55. data/lib/whiskers/version.rb +3 -0
  56. data/ruby.version +1 -0
  57. data/whiskers.gemspec +26 -0
  58. data/whiskers.png +0 -0
  59. metadata +173 -0
@@ -0,0 +1,55 @@
1
+ .hero {
2
+ $base-border-radius: 3px !default;
3
+ $action-color: #477DCA !default;
4
+ $large-screen: em(860) !default;
5
+ $hero-background-top: #7F99BE;
6
+ $hero-background-bottom: #20392B;
7
+ $hero-color: white;
8
+ $gradient-angle: 10deg;
9
+ $hero-image: 'https://raw.githubusercontent.com/thoughtbot/refills/b7c61c133f568cd044b708d099d8144cc3ce2b66/source/images/mountains.png';
10
+
11
+ @include background(url($hero-image), linear-gradient($gradient-angle, $hero-background-bottom, $hero-background-top), no-repeat $hero-background-top scroll);
12
+ background-color: #324766;
13
+ background-position: top;
14
+ background-repeat: no-repeat;
15
+ background-size: cover;
16
+ padding-bottom: 3em;
17
+
18
+ .hero-logo img {
19
+ height: 4em;
20
+ margin-bottom: 1em;
21
+ }
22
+
23
+ .hero-inner {
24
+ @include outer-container;
25
+ @include clearfix;
26
+ margin: auto;
27
+ padding: 3.5em;
28
+ text-align: center;
29
+
30
+ .hero-copy {
31
+ text-align: center;
32
+
33
+ h1 {
34
+ color: $hero-color;
35
+ font-size: 1.6em;
36
+ margin-bottom: 0.5em;
37
+
38
+ @include media($large-screen) {
39
+ font-size: 1.8em;
40
+ }
41
+ }
42
+
43
+ p {
44
+ color: $hero-color;
45
+ line-height: 1.4em;
46
+ margin: 0 auto 3em auto;
47
+
48
+ @include media($large-screen) {
49
+ font-size: 1.1em;
50
+ max-width: 40%;
51
+ }
52
+ }
53
+ }
54
+ }
55
+ }
@@ -0,0 +1,6 @@
1
+ @import 'header'
2
+ @import 'footer'
3
+ @import 'hero'
4
+ @import 'button-group'
5
+ @import 'card'
6
+ @import 'pagination'
@@ -0,0 +1,63 @@
1
+ .pagination {
2
+ $base-border-color: gainsboro !default;
3
+ $base-border-radius: 3px !default;
4
+ $base-spacing: 1.5em !default;
5
+ $action-color: #477DCA !default;
6
+ $dark-gray: #333 !default;
7
+ $large-screen: em(860) !default;
8
+ $base-font-color: $dark-gray !default;
9
+ $pagination-border-color: $base-border-color;
10
+ $pagination-border: 1px solid $pagination-border-color;
11
+ $pagination-background: lighten($pagination-border-color, 10);
12
+ $pagination-hover-background: lighten($pagination-background, 5);
13
+ $pagination-color: $base-font-color;
14
+
15
+ text-align: center;
16
+
17
+ ul {
18
+ display: inline;
19
+ margin: 0;
20
+ padding: 0;
21
+ text-align: center;
22
+
23
+ li {
24
+ display: inline;
25
+ list-style: none;
26
+ }
27
+
28
+ ul li {
29
+ display: none;
30
+
31
+ &:nth-child(1),
32
+ &:nth-child(2),
33
+ &:nth-child(3) {
34
+ display: inline;
35
+ }
36
+
37
+ @include media($large-screen) {
38
+ display: inline;
39
+ }
40
+ }
41
+
42
+ li a {
43
+ @include transition (all 0.2s ease-in-out);
44
+ background: $pagination-background;
45
+ border-radius: $base-border-radius;
46
+ border: $pagination-border;
47
+ color: $pagination-color;
48
+ outline: none;
49
+ padding: ($base-spacing / 4) ($gutter / 2);
50
+ text-decoration: none;
51
+
52
+ &:hover,
53
+ &:focus {
54
+ background: $pagination-hover-background;
55
+ color: $action-color;
56
+ }
57
+
58
+ &:active {
59
+ background: $pagination-background;
60
+ }
61
+ }
62
+ }
63
+ }
@@ -0,0 +1,5 @@
1
+ @import 'bourbon/bourbon'
2
+ @import 'neat/neat'
3
+ @import 'bitters/base'
4
+ @import 'sticky-footer'
5
+ @import 'normalize'
@@ -0,0 +1,11 @@
1
+ body, html
2
+ margin: 0
3
+ padding: 0
4
+
5
+ body
6
+ display: flex
7
+ min-height: 100vh
8
+ flex-direction: column
9
+
10
+ main
11
+ flex: 1
@@ -0,0 +1 @@
1
+ require "whiskers/generator"
@@ -0,0 +1,235 @@
1
+ require 'whiskers/version'
2
+ require 'bourbon'
3
+ require 'bitters'
4
+ require 'neat'
5
+ require 'fileutils'
6
+ require 'thor'
7
+ require 'pathname'
8
+ require 'open-uri'
9
+
10
+ module Whiskers
11
+ class Generator < Thor
12
+
13
+ map ['v', '-v', '--version'] => :version
14
+ map ['n', '-n', '--new'] => :new
15
+ map ['w', '-w', '--watch'] => :watch
16
+ map ['l', '-l', '--list', '--list-templates'] => :list
17
+
18
+ desc 'version', 'Show Whiskers version'
19
+ def version
20
+ puts "Whiskers #{Whiskers::VERSION}"
21
+ end
22
+
23
+ desc 'new SITE','Create new Whiskers site named SITE'
24
+ long_desc <<-LONGDESC
25
+ `whiskers new SITE` will create a new Whiskers site named site. You must specify a
26
+ name for the site. All Whiskers files will be placed in a directory of the name
27
+ provided.
28
+
29
+ You can optionally specify a second parameter, which will set the template for the
30
+ new Whiskers site.
31
+
32
+ > $ whiskers new SITE blog
33
+
34
+ If no template is specified, the base template will be used.
35
+ You can see a list of templates available by using `whiskers --list-templates`
36
+ LONGDESC
37
+ def new(name, template=nil)
38
+ if name.nil? || name.empty?
39
+ puts 'No name specified for new site. Failed to install Whiskers.'
40
+ return
41
+ end
42
+
43
+ selected_template = template.nil? ? 'base' : template
44
+
45
+ if !templates.include? selected_template
46
+ puts "Template #{template} does not exist. Failed to install Whiskers."
47
+ puts "Try `whiskers --list-templates` to see the templates that are available."
48
+ return
49
+ end
50
+
51
+ install_template_in_directory(selected_template, name)
52
+ puts "New Whiskers site created in #{name}"
53
+ puts "\nRun `whiskers watch` from inside #{name}/ to get started"
54
+ end
55
+
56
+ desc 'watch', 'Watch a Whiskers directory and compile CoffeeScript and SASS files'
57
+ long_desc <<-LONGDESC
58
+ `whiskers watch` will listen and compile changes made to the CoffeeScript files
59
+ (located in scripts/src) and SASS files (located in stylesheets).
60
+
61
+ You must be in the directory for the site you want to watch for changes.
62
+
63
+ It is equivalant to running the following two commands:
64
+ - `coffee --watch --output scripts/lib --compile scripts/src`
65
+ - `sass --watch stylesheets/app.sass:stylesheets/app.css`
66
+
67
+ Compilation can be stopped by pressing the enter key.
68
+ LONGDESC
69
+ def watch
70
+ puts "Watching for CoffeeScript and SASS changes. Press enter to stop.\n\n"
71
+
72
+ coffee_pid = spawn("coffee --watch --output scripts/lib --compile scripts/src")
73
+ sass_pid = spawn("sass --watch stylesheets/app.sass:stylesheets/app.css")
74
+
75
+ enter_key = $stdin.gets.chomp
76
+
77
+ Process.kill("KILL", coffee_pid)
78
+ Process.kill("KILL", sass_pid)
79
+ Process.wait
80
+
81
+ puts "\nCompilation Stopped."
82
+ end
83
+
84
+ desc 'list', 'List the templates available to Whiskers.'
85
+ def list
86
+ puts "Templates available to Whiskers:"
87
+ templates.map { |t| puts "\t- #{t}" }
88
+ puts "\nCreate a new site with `whiskers new SITE TEMPLATE`\n"
89
+ end
90
+
91
+ private
92
+
93
+ def templates
94
+ @templates = Dir.entries(templates_directory).select { |f| !File.directory? f }.collect { |p| p.to_s } # ['base', 'blog', 'store']
95
+ end
96
+
97
+ def install_template_in_directory(template, directory)
98
+ make_install_directory directory
99
+
100
+ install_stylesheets_for_template_in_directory(template, directory)
101
+ install_scripts_for_template_in_directory(template, directory)
102
+ install_markup_for_template_in_directory(template, directory)
103
+
104
+ install_bourbon_in_directory directory
105
+ install_neat_in_directory directory
106
+ install_bitters_in_directory directory
107
+
108
+ install_jquery_in_directory directory
109
+ install_require_in_directory directory
110
+ install_normalize_in_directory directory
111
+ end
112
+
113
+ def make_install_directory directory
114
+ FileUtils.mkdir_p(directory)
115
+ end
116
+
117
+ def install_stylesheets_for_template_in_directory(template, directory)
118
+ FileUtils.cp_r(stylesheets_directory_for_template(template), directory)
119
+ end
120
+
121
+ def install_scripts_for_template_in_directory(template, directory)
122
+ FileUtils.cp_r(scripts_directory_for_template(template), directory)
123
+ end
124
+
125
+ def install_markup_for_template_in_directory(template, directory)
126
+ FileUtils.cp_r(markup_files_for_template(template), directory)
127
+ end
128
+
129
+ def install_bourbon_in_directory directory
130
+ install_path = File.join(directory, 'stylesheets', 'plugins')
131
+ unless File.directory?(install_path)
132
+ FileUtils.mkdir_p(install_path)
133
+ end
134
+ g = Bourbon::Generator.new([],{path: install_path})
135
+ g.install
136
+ end
137
+
138
+ def install_neat_in_directory directory
139
+ install_path = File.join(directory, 'stylesheets', 'plugins')
140
+ unless File.directory?(install_path)
141
+ FileUtils.mkdir_p(install_path)
142
+ end
143
+ ## Neat's install method doesn't allow you to set the path :(
144
+ #g = Neat::Generator.new([],{path: install_path})
145
+ #g.install
146
+ system("cd #{install_path} && neat install")
147
+ end
148
+
149
+ def install_bitters_in_directory directory
150
+ ## Bitters doesn't name it's install directory bitters. It names it base by defualt.
151
+ ## So we rename it to 'bitters' here.
152
+ install_path = File.join(directory, 'stylesheets', 'plugins')
153
+ unless File.directory?(install_path)
154
+ FileUtils.mkdir_p(install_path)
155
+ end
156
+ g = Bitters::Generator.new([],{path: install_path})
157
+ g.install
158
+ FileUtils.mv(File.join(install_path, 'base'), File.join(install_path, 'bitters'), force: true)
159
+ end
160
+
161
+ def install_normalize_in_directory directory
162
+ install_path = File.join(directory,
163
+ 'stylesheets',
164
+ 'plugins')
165
+
166
+ unless File.directory?(install_path)
167
+ FileUtils.mkdir_p(install_path)
168
+ end
169
+
170
+ file_path = File.join(install_path, 'normalize.scss')
171
+
172
+ normalize_url = 'https://raw.githubusercontent.com/necolas/normalize.css/master/normalize.css'
173
+ File.open(file_path, 'wb') do |f|
174
+ f.write open(normalize_url).read
175
+ end
176
+ end
177
+
178
+ def install_jquery_in_directory directory
179
+ install_path = File.join(directory,
180
+ 'scripts',
181
+ 'lib',
182
+ 'plugins')
183
+
184
+ unless File.directory?(install_path)
185
+ FileUtils.mkdir_p(install_path)
186
+ end
187
+
188
+ file_path = File.join(install_path, 'jquery.min.js')
189
+
190
+ jquery_url = 'https://code.jquery.com/jquery-3.0.0.min.js'
191
+ File.open(file_path, 'wb') do |f|
192
+ f.write open(jquery_url).read
193
+ end
194
+ end
195
+
196
+ def install_require_in_directory directory
197
+ install_path = File.join(directory,
198
+ 'scripts',
199
+ 'lib',
200
+ 'plugins')
201
+
202
+ unless File.directory?(install_path)
203
+ FileUtils.mkdir_p(install_path)
204
+ end
205
+
206
+ file_path = File.join(install_path, 'require.min.js')
207
+
208
+ require_url = 'http://requirejs.org/docs/release/2.2.0/minified/require.js'
209
+ File.open(file_path, 'wb') do |f|
210
+ f.write open(require_url).read
211
+ end
212
+ end
213
+
214
+ def stylesheets_directory_for_template template
215
+ File.join(templates_directory, template, 'stylesheets')
216
+ end
217
+
218
+ def scripts_directory_for_template template
219
+ File.join(templates_directory, template, 'scripts')
220
+ end
221
+
222
+ def markup_files_for_template template
223
+ template_directory = File.join(templates_directory, template)
224
+ Dir["#{template_directory}/*.html"]
225
+ end
226
+
227
+ def templates_directory
228
+ File.join(top_level_directory, 'core', 'whiskers')
229
+ end
230
+
231
+ def top_level_directory
232
+ File.dirname(File.dirname(File.dirname(__FILE__)))
233
+ end
234
+ end
235
+ end
@@ -0,0 +1,3 @@
1
+ module Whiskers
2
+ VERSION = '0.0.2'
3
+ end
@@ -0,0 +1 @@
1
+ 2.3.0
@@ -0,0 +1,26 @@
1
+ $:.push File.expand_path('../lib', __FILE__)
2
+ require 'whiskers/version'
3
+
4
+ Gem::Specification.new do |s|
5
+ s.add_runtime_dependency 'sass', '~> 3.4'
6
+ s.add_runtime_dependency 'bourbon', '~> 4.2'
7
+ s.add_runtime_dependency 'neat', '~> 1.7'
8
+ s.add_runtime_dependency 'bitters', '~> 1.2'
9
+ s.add_runtime_dependency 'thor', '~> 0.19'
10
+ s.name = 'whiskers'
11
+ s.platform = Gem::Platform::RUBY
12
+ s.require_paths = ['lib']
13
+ s.version = Whiskers::VERSION
14
+ s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
15
+ s.files = `git ls-files`.split("\n")
16
+ s.date = '2016-06-09'
17
+ s.description = <<-DESC
18
+ Whiskers is a dandy little gem for quickly spinning up sites using SASS, CoffeeScript,
19
+ and Thoughtbot’s Bourbon.
20
+ DESC
21
+ s.summary = 'A quick and tidy way to start a site with SASS/Coffeescript'
22
+ s.authors = ['Zane Swafford']
23
+ s.email = 'zane@otters.io'
24
+ s.homepage = 'https://github.com/zaneswafford/whiskers'
25
+ s.license = 'BSD'
26
+ end
Binary file
metadata ADDED
@@ -0,0 +1,173 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: whiskers
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.2
5
+ platform: ruby
6
+ authors:
7
+ - Zane Swafford
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2016-06-09 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: sass
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '3.4'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '3.4'
27
+ - !ruby/object:Gem::Dependency
28
+ name: bourbon
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '4.2'
34
+ type: :runtime
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '4.2'
41
+ - !ruby/object:Gem::Dependency
42
+ name: neat
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: '1.7'
48
+ type: :runtime
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: '1.7'
55
+ - !ruby/object:Gem::Dependency
56
+ name: bitters
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - "~>"
60
+ - !ruby/object:Gem::Version
61
+ version: '1.2'
62
+ type: :runtime
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - "~>"
67
+ - !ruby/object:Gem::Version
68
+ version: '1.2'
69
+ - !ruby/object:Gem::Dependency
70
+ name: thor
71
+ requirement: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - "~>"
74
+ - !ruby/object:Gem::Version
75
+ version: '0.19'
76
+ type: :runtime
77
+ prerelease: false
78
+ version_requirements: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - "~>"
81
+ - !ruby/object:Gem::Version
82
+ version: '0.19'
83
+ description: |2
84
+ Whiskers is a dandy little gem for quickly spinning up sites using SASS, CoffeeScript,
85
+ and Thoughtbot’s Bourbon.
86
+ email: zane@otters.io
87
+ executables:
88
+ - whiskers
89
+ extensions: []
90
+ extra_rdoc_files: []
91
+ files:
92
+ - Gemfile
93
+ - Gemfile.lock
94
+ - LICENSE.md
95
+ - README.md
96
+ - bin/whiskers
97
+ - core/whiskers/base/index.html
98
+ - core/whiskers/base/scripts/src/app.coffee
99
+ - core/whiskers/base/scripts/src/layouts/home.coffee
100
+ - core/whiskers/base/scripts/src/modules/header.coffee
101
+ - core/whiskers/base/stylesheets/app.sass
102
+ - core/whiskers/base/stylesheets/layouts/home.sass
103
+ - core/whiskers/base/stylesheets/layouts/layouts.sass
104
+ - core/whiskers/base/stylesheets/modules/comment.scss
105
+ - core/whiskers/base/stylesheets/modules/device.scss
106
+ - core/whiskers/base/stylesheets/modules/footer.scss
107
+ - core/whiskers/base/stylesheets/modules/grid-item.scss
108
+ - core/whiskers/base/stylesheets/modules/header.scss
109
+ - core/whiskers/base/stylesheets/modules/modules.sass
110
+ - core/whiskers/base/stylesheets/modules/sample-box.sass
111
+ - core/whiskers/base/stylesheets/plugins/plugins.sass
112
+ - core/whiskers/base/stylesheets/plugins/sticky-footer.sass
113
+ - core/whiskers/blog/index.html
114
+ - core/whiskers/blog/scripts/src/app.coffee
115
+ - core/whiskers/blog/scripts/src/layouts/home.coffee
116
+ - core/whiskers/blog/scripts/src/modules/header.coffee
117
+ - core/whiskers/blog/stylesheets/app.sass
118
+ - core/whiskers/blog/stylesheets/layouts/home.sass
119
+ - core/whiskers/blog/stylesheets/layouts/layouts.sass
120
+ - core/whiskers/blog/stylesheets/modules/article.scss
121
+ - core/whiskers/blog/stylesheets/modules/footer.scss
122
+ - core/whiskers/blog/stylesheets/modules/header.scss
123
+ - core/whiskers/blog/stylesheets/modules/hero.scss
124
+ - core/whiskers/blog/stylesheets/modules/modules.sass
125
+ - core/whiskers/blog/stylesheets/plugins/plugins.sass
126
+ - core/whiskers/blog/stylesheets/plugins/sticky-footer.sass
127
+ - core/whiskers/store/index.html
128
+ - core/whiskers/store/scripts/src/app.coffee
129
+ - core/whiskers/store/scripts/src/layouts/home.coffee
130
+ - core/whiskers/store/scripts/src/modules/header.coffee
131
+ - core/whiskers/store/stylesheets/app.sass
132
+ - core/whiskers/store/stylesheets/layouts/home.sass
133
+ - core/whiskers/store/stylesheets/layouts/layouts.sass
134
+ - core/whiskers/store/stylesheets/modules/button-group.scss
135
+ - core/whiskers/store/stylesheets/modules/card.scss
136
+ - core/whiskers/store/stylesheets/modules/footer.scss
137
+ - core/whiskers/store/stylesheets/modules/header.scss
138
+ - core/whiskers/store/stylesheets/modules/hero.scss
139
+ - core/whiskers/store/stylesheets/modules/modules.sass
140
+ - core/whiskers/store/stylesheets/modules/pagination.scss
141
+ - core/whiskers/store/stylesheets/plugins/plugins.sass
142
+ - core/whiskers/store/stylesheets/plugins/sticky-footer.sass
143
+ - lib/whiskers.rb
144
+ - lib/whiskers/generator.rb
145
+ - lib/whiskers/version.rb
146
+ - ruby.version
147
+ - whiskers.gemspec
148
+ - whiskers.png
149
+ homepage: https://github.com/zaneswafford/whiskers
150
+ licenses:
151
+ - BSD
152
+ metadata: {}
153
+ post_install_message:
154
+ rdoc_options: []
155
+ require_paths:
156
+ - lib
157
+ required_ruby_version: !ruby/object:Gem::Requirement
158
+ requirements:
159
+ - - ">="
160
+ - !ruby/object:Gem::Version
161
+ version: '0'
162
+ required_rubygems_version: !ruby/object:Gem::Requirement
163
+ requirements:
164
+ - - ">="
165
+ - !ruby/object:Gem::Version
166
+ version: '0'
167
+ requirements: []
168
+ rubyforge_project:
169
+ rubygems_version: 2.4.5.1
170
+ signing_key:
171
+ specification_version: 4
172
+ summary: A quick and tidy way to start a site with SASS/Coffeescript
173
+ test_files: []