cs_template 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 21bc5d2c008fc16b6310b9ae0fec0d547f12b0d7
4
+ data.tar.gz: d468fad926124046449beceed06613e704e9b9cc
5
+ SHA512:
6
+ metadata.gz: 3662a783df5f50b75695063cffb6a41f49027ed99c76e1503ae51f30f070a962a5751af2cc43b55b9d88bd3d0a33a1282461440fa96b7bc17a5af08980348f2a
7
+ data.tar.gz: d767e4e11264ed7ceb0d539a1150425cd19ce43a41fb77ea2c1b7774cf97de0c4a21c61ced66999360f04a77fd87b88ba71ea1495af5e0651c84f6fc1e057645
data/.gitignore ADDED
@@ -0,0 +1,10 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /Gemfile.lock
4
+ /_yardoc/
5
+ /coverage/
6
+ /doc/
7
+ /pkg/
8
+ /spec/reports/
9
+ /tmp/
10
+ .DS_Store
data/.travis.yml ADDED
@@ -0,0 +1,4 @@
1
+ language: ruby
2
+ rvm:
3
+ - 2.0.0
4
+ before_install: gem install bundler -v 1.10.6
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in cs_template.gemspec
4
+ gemspec
data/LICENSE.txt ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2015 TODO: Write your name
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in
13
+ all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
+ THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,68 @@
1
+ # CsTemplate
2
+
3
+ ## Base template for kickstarting an application.
4
+
5
+ ### Includes
6
+ - 7-1 pattern file structure
7
+ - Bourbon
8
+ - Neat
9
+ - Base styles for...
10
+ - Typography
11
+ - Colors
12
+ - Mixins
13
+ - Headers
14
+ - Footers
15
+ - Buttons
16
+ - Forms
17
+ - Tables
18
+ - Lists
19
+ - Sections
20
+ - Login Screens
21
+ - Night Themes
22
+
23
+ ## Installation
24
+
25
+ Add this line to your application's Gemfile:
26
+
27
+ ```ruby
28
+ gem 'cs_template'
29
+ ```
30
+
31
+ And then execute:
32
+
33
+ $ bundle
34
+
35
+ Or install it yourself as:
36
+
37
+ $ gem install cs_template
38
+
39
+ ## Usage
40
+
41
+ ### Install
42
+
43
+ `cs_template install`
44
+ - Generates all SCSS files in your project
45
+ - Skips over any existing directories that match the 7-1 pattern
46
+ - Example. If you already have a vendor directory, it will not destroy it and create a new one.
47
+ - Installs the SCSS from Bourbon and Neat in your vendor directory
48
+
49
+ ### Destroy
50
+
51
+ `cs_template destroy`
52
+ - Wipes out every directory and file matching the 7-1 pattern
53
+
54
+ This is useful if you just want to install the template for temporary use. Do not
55
+ use this if you wish to only delete select files in each directory. This wipes
56
+ everything.
57
+
58
+ ## Development
59
+
60
+ To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
61
+
62
+ ## Contributing
63
+
64
+ Bug reports and pull requests are welcome on GitHub at https://github.com/havok2905/cs_template.
65
+
66
+ ## License
67
+
68
+ The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).
data/Rakefile ADDED
@@ -0,0 +1 @@
1
+ require "bundler/gem_tasks"
@@ -0,0 +1,4 @@
1
+ html, body {
2
+ margin: 0;
3
+ padding: 0;
4
+ }
@@ -0,0 +1,74 @@
1
+ $normal-font-size: 14px;
2
+ $tiny-font-size: 12px;
3
+
4
+ $header-one-font-size: 48px;
5
+ $header-two-font-size: 36px;
6
+ $header-three-font-size: 28px;
7
+ $header-four-font-size: 24px;
8
+ $header-five-font-size: 20px;
9
+ $header-six-font-size: 14px;
10
+
11
+ $open-sans: 'Open Sans', sans-serif;
12
+
13
+ html, body {
14
+ font-size: $normal-font-size;
15
+ font-family: $open-sans;
16
+ color: $off-black;
17
+ }
18
+
19
+ p {
20
+ @include default-margins();
21
+ line-height: 2.5;
22
+ }
23
+
24
+ a {
25
+ @include anchor-reset($primary-color);
26
+ &:hover { color: lighten($primary-color, 20); }
27
+ }
28
+
29
+ em, cite {
30
+ font-style: italic;
31
+ }
32
+
33
+ strong {
34
+ font-weight: bold;
35
+ }
36
+
37
+ sup {
38
+ vertical-align: super;
39
+ font-size: smaller;
40
+ }
41
+
42
+ sub {
43
+ vertical-align: sub;
44
+ font-size: smaller;
45
+ }
46
+
47
+ h1, h2, h3, h4, h5, h6 {
48
+ font-weight: bold;
49
+ text-transform: uppercase;
50
+ }
51
+
52
+ h1 {
53
+ font-size: $header-one-font-size;
54
+ }
55
+
56
+ h2 {
57
+ font-size: $header-two-font-size;
58
+ }
59
+
60
+ h3 {
61
+ font-size: $header-three-font-size;
62
+ }
63
+
64
+ h4 {
65
+ font-size: $header-four-font-size;
66
+ }
67
+
68
+ h5 {
69
+ font-size: $header-five-font-size;
70
+ }
71
+
72
+ h6 {
73
+ font-size: $header-six-font-size;
74
+ }
@@ -0,0 +1,46 @@
1
+ a.button {
2
+ line-height: 40px;
3
+ &.-small { line-height: 30px; }
4
+ &.-large { line-height: 50px; }
5
+ }
6
+
7
+ .button {
8
+ @include anchor-reset($white);
9
+
10
+ display: inline-block;
11
+ width: 100px;
12
+ height: 40px;
13
+ border: none;
14
+ border-radius: 5px;
15
+ font-size: $tiny-font-size;
16
+ text-align: center;
17
+ vertical-align: middle;
18
+ cursor: pointer;
19
+ transition: background-color 0.3s;
20
+
21
+ &.-small {
22
+ width: 75px;
23
+ height: 30px;
24
+ }
25
+
26
+ &.-large {
27
+ width: 150px;
28
+ height: 50px;
29
+ font-size: $normal-font-size;
30
+ }
31
+
32
+ &.-save {
33
+ background-color: $okay;
34
+ &:hover { background-color: lighten($okay, 10); }
35
+ }
36
+
37
+ &.-neutral {
38
+ background-color: $primary-color;
39
+ &:hover { background-color: lighten($primary-color, 10); }
40
+ }
41
+
42
+ &.-destroy {
43
+ background-color: $alert;
44
+ &:hover { background-color: lighten($alert, 10); }
45
+ }
46
+ }
@@ -0,0 +1,41 @@
1
+ form {
2
+ @include default-margins();
3
+
4
+ fieldset {
5
+ @include default-margins();
6
+ border: none;
7
+ padding: 0;
8
+ }
9
+
10
+ input, label, select, textarea {
11
+ font-size: $normal-font-size;
12
+ display: block;
13
+ width: 100%;
14
+ }
15
+
16
+ input, textarea {
17
+ border: solid 1px $gray;
18
+ height: 40px;
19
+ padding: 10px;
20
+ border-radius: 5px;
21
+ }
22
+
23
+ input[type='checkbox'], input[type='radio'], input[type='file'] {
24
+ border: none;
25
+ display: inline;
26
+ margin: 15px 0;
27
+ width: auto;
28
+ height: auto;
29
+
30
+ + label {
31
+ display: inline;
32
+ vertical-align: middle;
33
+ margin-right: 15px;
34
+ }
35
+ }
36
+
37
+ label {
38
+ font-weight: bold;
39
+ margin: 15px 0;
40
+ }
41
+ }
@@ -0,0 +1,30 @@
1
+ ol, ul, dl {
2
+ @include default-margins();
3
+ }
4
+
5
+ ol, ul {
6
+ margin-left: -20px;
7
+ }
8
+
9
+ ol {
10
+ li {
11
+ list-style-type: decimal;
12
+ }
13
+ }
14
+
15
+ ul {
16
+ li {
17
+ list-style-type: disc;
18
+ }
19
+ }
20
+
21
+ dl {
22
+ dt {
23
+ font-weight: bold;
24
+ margin: 5px 0;
25
+ }
26
+
27
+ dd {
28
+ margin: 0 0 15px 0;
29
+ }
30
+ }
@@ -0,0 +1,4 @@
1
+ section {
2
+ @include outer-container();
3
+ padding: 20px;
4
+ }
@@ -0,0 +1,29 @@
1
+ // Pillaged from Bitters
2
+
3
+ table {
4
+ @include default-margins();
5
+
6
+ table-layout: fixed;
7
+ width: 100%;
8
+ border-collapse: collapse;
9
+
10
+ tr, td, th {
11
+ vertical-align: middle;
12
+ }
13
+
14
+ th {
15
+ border-bottom: 1px solid $gray;
16
+ font-weight: 600;
17
+ padding: 15px;
18
+ text-align: left;
19
+ }
20
+
21
+ td {
22
+ border-bottom: solid 1px $gray;
23
+ padding: 15px;
24
+ }
25
+
26
+ tfoot td {
27
+ border-bottom: none;
28
+ }
29
+ }
@@ -0,0 +1,9 @@
1
+ footer {
2
+ padding: 30px;
3
+ background-color: $primary-color;
4
+ color: $white;
5
+
6
+ div {
7
+ @include outer-container();
8
+ }
9
+ }
@@ -0,0 +1,28 @@
1
+ header {
2
+ nav {
3
+ box-sizing: border-box;
4
+ padding: 20px;
5
+ font-size: $tiny-font-size;
6
+ color: $white;
7
+
8
+ &:after { @include clearfix; }
9
+ }
10
+
11
+ .left { float: left; }
12
+ .right { float: right; }
13
+
14
+ h1 {
15
+ display: inline;
16
+ font-size: $tiny-font-size;
17
+ line-height: normal;
18
+ }
19
+
20
+ ul {
21
+ display: inline;
22
+ }
23
+
24
+ li {
25
+ list-style-type: none;
26
+ display: inline;
27
+ }
28
+ }
@@ -0,0 +1,21 @@
1
+ @import "vendor/bourbon/bourbon";
2
+ @import "vendor/neat/neat";
3
+
4
+ @import "utils/colors";
5
+ @import "utils/mixins";
6
+
7
+ @import "base/body";
8
+ @import "base/type";
9
+
10
+ @import "layout/header";
11
+ @import "layout/footer";
12
+
13
+ @import "components/button";
14
+ @import "components/list";
15
+ @import "components/section";
16
+ @import "components/table";
17
+ @import "components/form";
18
+
19
+ @import "pages/login";
20
+
21
+ @import "themes/night";
@@ -0,0 +1,17 @@
1
+ .login {
2
+ h1 {
3
+ text-align: center;
4
+ }
5
+
6
+ form {
7
+ width: 800px;
8
+ margin: 0 auto;
9
+ }
10
+
11
+ fieldset {
12
+ background: none;
13
+ border: none;
14
+ padding: 0;
15
+ margin: 0;
16
+ }
17
+ }
@@ -0,0 +1,13 @@
1
+ .night {
2
+ background-color: $black;
3
+ color: $gray;
4
+
5
+ fieldset {
6
+ border-color: $black;
7
+ }
8
+
9
+ input, textarea {
10
+ background-color: $off-black;
11
+ border-color: $black;
12
+ }
13
+ }
@@ -0,0 +1,21 @@
1
+ $primary-color: #1E62AE; // Cloudspace Blue
2
+ $secondary-color: #6CC6F7; // Other Blue
3
+ $alert: #DB4848; // Red
4
+ $warning: #E2DE63; // Yellow
5
+ $okay: #67e564; // Green
6
+ $black: #000000;
7
+ $off-black: #333333;
8
+ $gray: #CCCCCC;
9
+ $off-white: #EEEEEE;
10
+ $white: #FFFFFF;
11
+
12
+ .bg-primary-color { background-color: $primary-color; color: $white; }
13
+ .bg-secondary-color { background-color: $secondary-color; color: $white; }
14
+ .bg-alert { background-color: $alert; color: $white; }
15
+ .bg-warning { background-color: $warning; color: $white; }
16
+ .bg-okay { background-color: $okay; color: $white; }
17
+ .bg-black { background-color: $black; color: $white; }
18
+ .bg-off-black { background-color: $off-black; color: $white; }
19
+ .bg-gray { background-color: $gray; color: $black; }
20
+ .bg-off-white { background-color: $off-white; color: $black; }
21
+ .bg-white { background-color: $white; color: $black; }
@@ -0,0 +1,9 @@
1
+ @mixin anchor-reset($color) {
2
+ text-decoration: none;
3
+ color: $color;
4
+ transition: color 0.3s;
5
+ }
6
+
7
+ @mixin default-margins() {
8
+ margin: 15px 0;
9
+ }
data/bin/cs_template ADDED
@@ -0,0 +1,4 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require 'cs_template'
4
+ CsTemplate::Generator.start
@@ -0,0 +1,36 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'cs_template/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "cs_template"
8
+ spec.version = CsTemplate::VERSION
9
+ spec.authors = ["Chris McLean"]
10
+ spec.email = ["havok2905@gmail.com"]
11
+
12
+ spec.summary = %q{Kick off any project with SASS}
13
+ spec.description = %q{A base sass template for kicking off new projects}
14
+ spec.homepage = "https://github.com/havok2905/cs-template"
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'] = "https://rubygems.org/gems/cs_template"
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)/}) }
26
+ spec.executables = ["cs_template"]
27
+ spec.require_paths = ["lib"]
28
+
29
+ spec.add_runtime_dependency 'thor', '~> 0.19.1'
30
+ spec.add_runtime_dependency 'sass', '~> 3.4'
31
+ spec.add_runtime_dependency 'bourbon', '~> 4.2'
32
+ spec.add_runtime_dependency 'neat', '~> 1.7'
33
+
34
+ spec.add_development_dependency "bundler", "~> 1.10"
35
+ spec.add_development_dependency "rake", "~> 10.0"
36
+ end
@@ -0,0 +1,90 @@
1
+ require 'thor'
2
+ require 'fileutils'
3
+
4
+ module CsTemplate
5
+ class Generator < Thor
6
+
7
+ desc 'install', 'Installs the sass files.'
8
+ def install
9
+ sass_files_install
10
+ gem_install 'bourbon'
11
+ gem_install 'neat'
12
+ end
13
+
14
+ desc 'destroy', 'BEWARE! Destroys all SASS files.'
15
+ def destroy
16
+ sass_files_destroy
17
+ end
18
+
19
+ private
20
+
21
+ def seven_one_pattern
22
+ %w(base components layout pages themes utils vendor)
23
+ end
24
+
25
+ def main_scss
26
+ 'main.scss'
27
+ end
28
+
29
+ def sass_files_install
30
+ seven_one_pattern.each do |dir_name|
31
+ copy_directory(dir_name) || init_directory(dir_name) || nil
32
+ end
33
+ main_scss_install
34
+ end
35
+
36
+ def main_scss_install
37
+ !File.file?(main_scss) && FileUtils.cp_r(asset_path(main_scss), './')
38
+ end
39
+
40
+ def sass_files_destroy
41
+ seven_one_pattern.each do |dir_name|
42
+ destroy_directory(dir_name) || nil
43
+ end
44
+ main_scss_destroy
45
+ end
46
+
47
+ def main_scss_destroy
48
+ File.file?(main_scss) && FileUtils.rm_r(local_path(main_scss))
49
+ end
50
+
51
+ def copy_directory(dir_name)
52
+ a_path = asset_path dir_name
53
+ l_path = local_path dir_name
54
+ return if empty_directory?(a_path) || File.directory?(l_path)
55
+ FileUtils.cp_r a_path, './'
56
+ end
57
+
58
+ def init_directory(dir_name)
59
+ a_path = asset_path dir_name
60
+ l_path = local_path dir_name
61
+ return if !empty_directory?(a_path) || File.directory?(l_path)
62
+ FileUtils.mkdir_p dir_name
63
+ end
64
+
65
+ def destroy_directory(dir_name)
66
+ path = local_path dir_name
67
+ return if !File.directory? path
68
+ FileUtils.rm_r path
69
+ end
70
+
71
+ def asset_path(dir_name)
72
+ root_dir = File.dirname(File.dirname(File.dirname(__FILE__)))
73
+ File.join root_dir, 'app', 'assets', 'stylesheets', dir_name
74
+ end
75
+
76
+ def local_path(dir_name)
77
+ "./#{dir_name}"
78
+ end
79
+
80
+ def empty_directory?(path)
81
+ (Dir[path].entries - %w{ . .. }).empty?
82
+ end
83
+
84
+ def gem_install(gem)
85
+ FileUtils.cd 'vendor'
86
+ system "#{gem} install"
87
+ FileUtils.cd '../'
88
+ end
89
+ end
90
+ end
@@ -0,0 +1,3 @@
1
+ module CsTemplate
2
+ VERSION = "0.1.0"
3
+ end
@@ -0,0 +1,5 @@
1
+ require "cs_template/version"
2
+ require "cs_template/generator"
3
+
4
+ module CsTemplate
5
+ end
metadata ADDED
@@ -0,0 +1,155 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: cs_template
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - Chris McLean
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2015-10-23 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: thor
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ~>
18
+ - !ruby/object:Gem::Version
19
+ version: 0.19.1
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ~>
25
+ - !ruby/object:Gem::Version
26
+ version: 0.19.1
27
+ - !ruby/object:Gem::Dependency
28
+ name: sass
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - ~>
32
+ - !ruby/object:Gem::Version
33
+ version: '3.4'
34
+ type: :runtime
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - ~>
39
+ - !ruby/object:Gem::Version
40
+ version: '3.4'
41
+ - !ruby/object:Gem::Dependency
42
+ name: bourbon
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - ~>
46
+ - !ruby/object:Gem::Version
47
+ version: '4.2'
48
+ type: :runtime
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - ~>
53
+ - !ruby/object:Gem::Version
54
+ version: '4.2'
55
+ - !ruby/object:Gem::Dependency
56
+ name: neat
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - ~>
60
+ - !ruby/object:Gem::Version
61
+ version: '1.7'
62
+ type: :runtime
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - ~>
67
+ - !ruby/object:Gem::Version
68
+ version: '1.7'
69
+ - !ruby/object:Gem::Dependency
70
+ name: bundler
71
+ requirement: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - ~>
74
+ - !ruby/object:Gem::Version
75
+ version: '1.10'
76
+ type: :development
77
+ prerelease: false
78
+ version_requirements: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - ~>
81
+ - !ruby/object:Gem::Version
82
+ version: '1.10'
83
+ - !ruby/object:Gem::Dependency
84
+ name: rake
85
+ requirement: !ruby/object:Gem::Requirement
86
+ requirements:
87
+ - - ~>
88
+ - !ruby/object:Gem::Version
89
+ version: '10.0'
90
+ type: :development
91
+ prerelease: false
92
+ version_requirements: !ruby/object:Gem::Requirement
93
+ requirements:
94
+ - - ~>
95
+ - !ruby/object:Gem::Version
96
+ version: '10.0'
97
+ description: A base sass template for kicking off new projects
98
+ email:
99
+ - havok2905@gmail.com
100
+ executables:
101
+ - cs_template
102
+ extensions: []
103
+ extra_rdoc_files: []
104
+ files:
105
+ - .gitignore
106
+ - .travis.yml
107
+ - Gemfile
108
+ - LICENSE.txt
109
+ - README.md
110
+ - Rakefile
111
+ - app/assets/stylesheets/base/body.scss
112
+ - app/assets/stylesheets/base/type.scss
113
+ - app/assets/stylesheets/components/button.scss
114
+ - app/assets/stylesheets/components/form.scss
115
+ - app/assets/stylesheets/components/list.scss
116
+ - app/assets/stylesheets/components/section.scss
117
+ - app/assets/stylesheets/components/table.scss
118
+ - app/assets/stylesheets/layout/footer.scss
119
+ - app/assets/stylesheets/layout/header.scss
120
+ - app/assets/stylesheets/main.scss
121
+ - app/assets/stylesheets/pages/login.scss
122
+ - app/assets/stylesheets/themes/night.scss
123
+ - app/assets/stylesheets/utils/colors.scss
124
+ - app/assets/stylesheets/utils/mixins.scss
125
+ - bin/cs_template
126
+ - cs_template.gemspec
127
+ - lib/cs_template.rb
128
+ - lib/cs_template/generator.rb
129
+ - lib/cs_template/version.rb
130
+ homepage: https://github.com/havok2905/cs-template
131
+ licenses:
132
+ - MIT
133
+ metadata:
134
+ allowed_push_host: https://rubygems.org/gems/cs_template
135
+ post_install_message:
136
+ rdoc_options: []
137
+ require_paths:
138
+ - lib
139
+ required_ruby_version: !ruby/object:Gem::Requirement
140
+ requirements:
141
+ - - '>='
142
+ - !ruby/object:Gem::Version
143
+ version: '0'
144
+ required_rubygems_version: !ruby/object:Gem::Requirement
145
+ requirements:
146
+ - - '>='
147
+ - !ruby/object:Gem::Version
148
+ version: '0'
149
+ requirements: []
150
+ rubyforge_project:
151
+ rubygems_version: 2.0.14.1
152
+ signing_key:
153
+ specification_version: 4
154
+ summary: Kick off any project with SASS
155
+ test_files: []