smack_down 0.0.4
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +15 -0
- data/.gitignore +17 -0
- data/Gemfile +4 -0
- data/LICENSE.txt +22 -0
- data/README.md +29 -0
- data/Rakefile +1 -0
- data/app/assets/stylesheets/_smack_down.scss +21 -0
- data/app/assets/stylesheets/smack_down/base/_base.scss +13 -0
- data/app/assets/stylesheets/smack_down/base/_reset.scss +48 -0
- data/app/assets/stylesheets/smack_down/base/_typography.scss +71 -0
- data/app/assets/stylesheets/smack_down/layout/_layouts.scss +16 -0
- data/app/assets/stylesheets/smack_down/modules/_breadcrumbs.scss +9 -0
- data/app/assets/stylesheets/smack_down/modules/_buttons.scss +6 -0
- data/app/assets/stylesheets/smack_down/modules/_footers.scss +27 -0
- data/app/assets/stylesheets/smack_down/modules/_forms.scss +6 -0
- data/app/assets/stylesheets/smack_down/modules/_headers.scss +17 -0
- data/app/assets/stylesheets/smack_down/modules/_images.scss +14 -0
- data/app/assets/stylesheets/smack_down/modules/_wrappers.scss +9 -0
- data/app/assets/stylesheets/smack_down/settings/_breakpoints.scss +7 -0
- data/app/assets/stylesheets/smack_down/settings/_colors.scss +14 -0
- data/app/assets/stylesheets/smack_down/settings/_spaces.scss +5 -0
- data/app/assets/stylesheets/smack_down/settings/_typography.scss +40 -0
- data/app/assets/stylesheets/smack_down/state/_links.scss +5 -0
- data/lib/smack_down/engine.rb +5 -0
- data/lib/smack_down/version.rb +3 -0
- data/lib/smack_down.rb +11 -0
- data/smack_down.gemspec +27 -0
- metadata +140 -0
checksums.yaml
ADDED
@@ -0,0 +1,15 @@
|
|
1
|
+
---
|
2
|
+
!binary "U0hBMQ==":
|
3
|
+
metadata.gz: !binary |-
|
4
|
+
ZDFlNTc2ZTE3Y2Q0ZTU2MjllODQzODhmZThmMjI2Mjk3ZmJhNmEwZQ==
|
5
|
+
data.tar.gz: !binary |-
|
6
|
+
NTUwMTI5MmViZDQ1NGIwYmM0MjllZWY5YmFmN2ZiODc4NzlhYzZmMQ==
|
7
|
+
SHA512:
|
8
|
+
metadata.gz: !binary |-
|
9
|
+
ODEwNzQ5Zjk2N2Q4NDhjODhiNWJmY2YyZDExODZlMjViYzhlNmZjMzdkYmYx
|
10
|
+
ZWI1ZjQxOTJmMWQ0NWRjN2FkYTQ3ODQ4ZDIwNjYxNDcwN2U3YzJiMmI4MjIz
|
11
|
+
YWZkOWM1YWM5MDI3ZjkzOWIwYWRkNjNmN2Q0N2NmNDg1MTQ3MDc=
|
12
|
+
data.tar.gz: !binary |-
|
13
|
+
NzViZmM5YTYzODMyNGIxYmQzNjkxMjFhNDk3M2FjMjg1OGRiMWY0NzZmNGY2
|
14
|
+
OTEzOWIxNTYzZDFjYzdjODJkMjc1ZDA1YmVlZTkwZDFkYTZmOWQxZjkwYjFl
|
15
|
+
ODg1Y2Q3NWFiMjQ2ZDVlZTAxMTdhMzQ3MTY1MGUyNjA1ZDEzM2U=
|
data/.gitignore
ADDED
data/Gemfile
ADDED
data/LICENSE.txt
ADDED
@@ -0,0 +1,22 @@
|
|
1
|
+
Copyright (c) 2013 Dave Woodall
|
2
|
+
|
3
|
+
MIT License
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
6
|
+
a copy of this software and associated documentation files (the
|
7
|
+
"Software"), to deal in the Software without restriction, including
|
8
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
9
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
10
|
+
permit persons to whom the Software is furnished to do so, subject to
|
11
|
+
the following conditions:
|
12
|
+
|
13
|
+
The above copyright notice and this permission notice shall be
|
14
|
+
included in all copies or substantial portions of the Software.
|
15
|
+
|
16
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
17
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
18
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
19
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
20
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
21
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
22
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/README.md
ADDED
@@ -0,0 +1,29 @@
|
|
1
|
+
# SmackDown
|
2
|
+
|
3
|
+
TODO: Write a gem description
|
4
|
+
|
5
|
+
## Installation
|
6
|
+
|
7
|
+
Add this line to your application's Gemfile:
|
8
|
+
|
9
|
+
gem 'smack_down'
|
10
|
+
|
11
|
+
And then execute:
|
12
|
+
|
13
|
+
$ bundle
|
14
|
+
|
15
|
+
Or install it yourself as:
|
16
|
+
|
17
|
+
$ gem install smack_down
|
18
|
+
|
19
|
+
## Usage
|
20
|
+
|
21
|
+
TODO: Write usage instructions here
|
22
|
+
|
23
|
+
## Contributing
|
24
|
+
|
25
|
+
1. Fork it
|
26
|
+
2. Create your feature branch (`git checkout -b my-new-feature`)
|
27
|
+
3. Commit your changes (`git commit -am 'Add some feature'`)
|
28
|
+
4. Push to the branch (`git push origin my-new-feature`)
|
29
|
+
5. Create new Pull Request
|
data/Rakefile
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
require "bundler/gem_tasks"
|
@@ -0,0 +1,21 @@
|
|
1
|
+
@import 'smack_down/settings/typography';
|
2
|
+
@import 'smack_down/settings/colors';
|
3
|
+
@import 'smack_down/settings/breakpoints';
|
4
|
+
@import 'smack_down/settings/spaces';
|
5
|
+
|
6
|
+
@import 'smack_down/base/reset';
|
7
|
+
@import 'smack_down/base/base';
|
8
|
+
@import 'smack_down/base/typography';
|
9
|
+
|
10
|
+
@import 'smack_down/layout/layouts';
|
11
|
+
|
12
|
+
@import 'smack_down/modules/wrappers';
|
13
|
+
@import 'smack_down/modules/headers';
|
14
|
+
@import 'smack_down/modules/footers';
|
15
|
+
@import 'smack_down/modules/buttons';
|
16
|
+
@import 'smack_down/modules/forms';
|
17
|
+
@import 'smack_down/modules/images';
|
18
|
+
@import 'smack_down/modules/breadcrumbs';
|
19
|
+
|
20
|
+
@import 'smack_down/state/links';
|
21
|
+
|
@@ -0,0 +1,13 @@
|
|
1
|
+
* {
|
2
|
+
-webkit-font-smoothing: antialiased !important;
|
3
|
+
-moz-osx-font-smoothing: grayscale !important;
|
4
|
+
}
|
5
|
+
|
6
|
+
body {
|
7
|
+
background: $dkblue;
|
8
|
+
color: $text-color;
|
9
|
+
font-size: $base-font-size;
|
10
|
+
font-family: $base-font-family;
|
11
|
+
font-weight: $base-font-weight;
|
12
|
+
line-height: $normal-height;
|
13
|
+
}
|
@@ -0,0 +1,48 @@
|
|
1
|
+
/* http://meyerweb.com/eric/tools/css/reset/
|
2
|
+
v2.0 | 20110126
|
3
|
+
License: none (public domain)
|
4
|
+
*/
|
5
|
+
|
6
|
+
html, body, div, span, applet, object, iframe,
|
7
|
+
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
|
8
|
+
a, abbr, acronym, address, big, cite, code,
|
9
|
+
del, dfn, em, img, ins, kbd, q, s, samp,
|
10
|
+
small, strike, strong, sub, sup, tt, var,
|
11
|
+
b, u, i, center,
|
12
|
+
dl, dt, dd, ol, ul, li,
|
13
|
+
fieldset, form, label, legend,
|
14
|
+
table, caption, tbody, tfoot, thead, tr, th, td,
|
15
|
+
article, aside, canvas, details, embed,
|
16
|
+
figure, figcaption, footer, header, hgroup,
|
17
|
+
menu, nav, output, ruby, section, summary,
|
18
|
+
time, mark, audio, video {
|
19
|
+
margin: 0;
|
20
|
+
padding: 0;
|
21
|
+
border: 0;
|
22
|
+
font-size: 100%;
|
23
|
+
font: inherit;
|
24
|
+
vertical-align: baseline;
|
25
|
+
}
|
26
|
+
/* HTML5 display-role reset for older browsers */
|
27
|
+
article, aside, details, figcaption, figure,
|
28
|
+
footer, header, hgroup, menu, nav, section {
|
29
|
+
display: block;
|
30
|
+
}
|
31
|
+
body {
|
32
|
+
line-height: 1;
|
33
|
+
}
|
34
|
+
ol, ul {
|
35
|
+
list-style: none;
|
36
|
+
}
|
37
|
+
blockquote, q {
|
38
|
+
quotes: none;
|
39
|
+
}
|
40
|
+
blockquote:before, blockquote:after,
|
41
|
+
q:before, q:after {
|
42
|
+
content: '';
|
43
|
+
content: none;
|
44
|
+
}
|
45
|
+
table {
|
46
|
+
border-collapse: collapse;
|
47
|
+
border-spacing: 0;
|
48
|
+
}
|
@@ -0,0 +1,71 @@
|
|
1
|
+
.h1, .h2, .h3, .h4, .h5, .h6 { font-weight: $heading-font-weight; }
|
2
|
+
|
3
|
+
.h1, .h2 {
|
4
|
+
line-height: 1.1;
|
5
|
+
color: $white;
|
6
|
+
text-shadow: 0px 1px 2px $text-color;
|
7
|
+
}
|
8
|
+
|
9
|
+
.h1 {
|
10
|
+
font-family: $heading-font-family;
|
11
|
+
}
|
12
|
+
|
13
|
+
.h2, .h4 {
|
14
|
+
font-family: $condensed;
|
15
|
+
}
|
16
|
+
|
17
|
+
.h3, .h4 {
|
18
|
+
line-height: 1.3;
|
19
|
+
color: $title;
|
20
|
+
}
|
21
|
+
|
22
|
+
.h1 { font-size: 400%; }
|
23
|
+
.h2 { font-size: 180%; }
|
24
|
+
.h3 { font-size: 160%; }
|
25
|
+
.h4 {
|
26
|
+
font-size: 150%;
|
27
|
+
font-weight: $base-font-bold;
|
28
|
+
}
|
29
|
+
.h5 { font-size: 130%; }
|
30
|
+
|
31
|
+
.p {
|
32
|
+
font-family: $paragraph-font;
|
33
|
+
line-height: $extra-height;
|
34
|
+
}
|
35
|
+
.a {
|
36
|
+
color: $blue;
|
37
|
+
text-decoration: none;
|
38
|
+
&:hover{
|
39
|
+
color: $ltblue;
|
40
|
+
}
|
41
|
+
}
|
42
|
+
.italic { font-style: italic; }
|
43
|
+
.block-margins { margin: 0.5em 0; }
|
44
|
+
.unordered-list { font-family: $base-font-family;}
|
45
|
+
.ordered-list { list-style: decimal; }
|
46
|
+
|
47
|
+
.typography {
|
48
|
+
b, strong { @extend .bold; }
|
49
|
+
|
50
|
+
h1, .h1 { @extend .h1; }
|
51
|
+
h2, .h2 { @extend .h2; }
|
52
|
+
h3, .h3 { @extend .h3; margin: 0.5em 0 0.2em; }
|
53
|
+
h4, .h4 { @extend .h4; margin: 0.5em 0 0.2em; }
|
54
|
+
h5, .h5 { @extend .h5; margin: 0.5em 0 0.2em; }
|
55
|
+
h6, .h6 { @extend .h6; margin: 0.5em 0 0.2em; }
|
56
|
+
p, .p { @extend .p; margin: 0.5em 0 0.2em; }
|
57
|
+
a, .a { @extend .a; margin: 0.5em 0 0.2em; }
|
58
|
+
|
59
|
+
p, ul, ol, pre { @extend .block-margins; }
|
60
|
+
|
61
|
+
ul { @extend .unordered-list; }
|
62
|
+
ol { @extend .ordered-list; }
|
63
|
+
|
64
|
+
pre, code { @extend .fixed; }
|
65
|
+
blockquote {
|
66
|
+
font-family: courier;
|
67
|
+
padding-left: 1em;
|
68
|
+
border-left: 2px solid $dkgrey;
|
69
|
+
color: $dkgrey;
|
70
|
+
}
|
71
|
+
}
|
@@ -0,0 +1,27 @@
|
|
1
|
+
.m-footer{
|
2
|
+
@include row;
|
3
|
+
color: $white;
|
4
|
+
a {
|
5
|
+
color: $ltblue;
|
6
|
+
text-decoration: none;
|
7
|
+
&:hover{
|
8
|
+
text-decoration: underline;
|
9
|
+
}
|
10
|
+
}
|
11
|
+
}
|
12
|
+
|
13
|
+
.footer-copy p{
|
14
|
+
font-family: $base-font-family;
|
15
|
+
}
|
16
|
+
|
17
|
+
.footer-column {
|
18
|
+
@include media($bp-tablet) {
|
19
|
+
@include span-columns(3);
|
20
|
+
}
|
21
|
+
}
|
22
|
+
|
23
|
+
.footer-fat-column {
|
24
|
+
@include media($bp-tablet) {
|
25
|
+
@include span-columns(6);
|
26
|
+
}
|
27
|
+
}
|
@@ -0,0 +1,17 @@
|
|
1
|
+
.m-header {
|
2
|
+
@include media($bp-tablet) {
|
3
|
+
padding: 3em 0;
|
4
|
+
}
|
5
|
+
}
|
6
|
+
|
7
|
+
.header-shade{
|
8
|
+
background: rgba(0, 0, 0, 0.5);
|
9
|
+
width: 100%;
|
10
|
+
height: 40%;
|
11
|
+
position: absolute;
|
12
|
+
z-index: -1;
|
13
|
+
}
|
14
|
+
|
15
|
+
.header-sub-title h2 {
|
16
|
+
font-weight: $base-font-bold;
|
17
|
+
}
|
@@ -0,0 +1,40 @@
|
|
1
|
+
$base-font-family: "proxima nova", sans-serif;
|
2
|
+
$paragraph-font: "proxima nova", sans-serif;
|
3
|
+
$condensed: "proxima nova condensed", sans-serif;
|
4
|
+
|
5
|
+
$base-font-size: 100%;
|
6
|
+
$base-font-weight: normal;
|
7
|
+
$base-font-bold: 700;
|
8
|
+
|
9
|
+
$heading-font-family: $base-font-family;
|
10
|
+
$heading-font-weight: 900;
|
11
|
+
|
12
|
+
@mixin text-overrides {
|
13
|
+
h1, h2, h3, h4 {
|
14
|
+
color: $text-color;
|
15
|
+
margin: 0;
|
16
|
+
padding: 0;
|
17
|
+
font-size: $base-font-size + 80%;
|
18
|
+
font-weight: $base-font-bold;
|
19
|
+
}
|
20
|
+
p{
|
21
|
+
margin: 0;
|
22
|
+
padding: 0 1em 1em;
|
23
|
+
img {
|
24
|
+
width: 80%;
|
25
|
+
display: block;
|
26
|
+
margin: 0 auto;
|
27
|
+
}
|
28
|
+
}
|
29
|
+
i, em {
|
30
|
+
font-family: georgia;
|
31
|
+
font-style: italic;
|
32
|
+
font-size: 0.9em;
|
33
|
+
}
|
34
|
+
strong {
|
35
|
+
font-weight: 900;
|
36
|
+
}
|
37
|
+
blockquote {
|
38
|
+
margin-bottom: 1em;
|
39
|
+
}
|
40
|
+
}
|
data/lib/smack_down.rb
ADDED
@@ -0,0 +1,11 @@
|
|
1
|
+
require "bourbon"
|
2
|
+
require "neat"
|
3
|
+
require "smack_down/version"
|
4
|
+
|
5
|
+
module SmackDown
|
6
|
+
if defined?(Rails) && defined?(Rails::Engine)
|
7
|
+
require 'smack_down/engine'
|
8
|
+
else
|
9
|
+
Sass.load_paths << File.expand_path("../../app/assets/stylesheets", __FILE__)
|
10
|
+
end
|
11
|
+
end
|
data/smack_down.gemspec
ADDED
@@ -0,0 +1,27 @@
|
|
1
|
+
# coding: utf-8
|
2
|
+
lib = File.expand_path('../lib', __FILE__)
|
3
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
4
|
+
require 'smack_down/version'
|
5
|
+
|
6
|
+
Gem::Specification.new do |spec|
|
7
|
+
spec.name = "smack_down"
|
8
|
+
spec.version = SmackDown::VERSION
|
9
|
+
spec.authors = ["Dave Woodall"]
|
10
|
+
spec.email = ["dave@hireDave.me"]
|
11
|
+
spec.description = %q{a collection of base styling in smacss format}
|
12
|
+
spec.summary = %q{Yeah, what I just said.}
|
13
|
+
spec.homepage = ""
|
14
|
+
spec.license = "MIT"
|
15
|
+
|
16
|
+
spec.files = `git ls-files`.split($/)
|
17
|
+
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
|
18
|
+
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
|
19
|
+
spec.require_paths = ["lib"]
|
20
|
+
|
21
|
+
spec.add_dependency 'sass', '~> 3.2'
|
22
|
+
spec.add_dependency 'bourbon', '~> 3.1'
|
23
|
+
spec.add_dependency 'neat', '~> 1.2'
|
24
|
+
|
25
|
+
spec.add_development_dependency "bundler", "~> 1.3"
|
26
|
+
spec.add_development_dependency "rake", "~> 0"
|
27
|
+
end
|
metadata
ADDED
@@ -0,0 +1,140 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: smack_down
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.4
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Dave Woodall
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2014-01-01 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.2'
|
20
|
+
type: :runtime
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - ~>
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '3.2'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: bourbon
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - ~>
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '3.1'
|
34
|
+
type: :runtime
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - ~>
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '3.1'
|
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.2'
|
48
|
+
type: :runtime
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - ~>
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '1.2'
|
55
|
+
- !ruby/object:Gem::Dependency
|
56
|
+
name: bundler
|
57
|
+
requirement: !ruby/object:Gem::Requirement
|
58
|
+
requirements:
|
59
|
+
- - ~>
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
version: '1.3'
|
62
|
+
type: :development
|
63
|
+
prerelease: false
|
64
|
+
version_requirements: !ruby/object:Gem::Requirement
|
65
|
+
requirements:
|
66
|
+
- - ~>
|
67
|
+
- !ruby/object:Gem::Version
|
68
|
+
version: '1.3'
|
69
|
+
- !ruby/object:Gem::Dependency
|
70
|
+
name: rake
|
71
|
+
requirement: !ruby/object:Gem::Requirement
|
72
|
+
requirements:
|
73
|
+
- - ~>
|
74
|
+
- !ruby/object:Gem::Version
|
75
|
+
version: '0'
|
76
|
+
type: :development
|
77
|
+
prerelease: false
|
78
|
+
version_requirements: !ruby/object:Gem::Requirement
|
79
|
+
requirements:
|
80
|
+
- - ~>
|
81
|
+
- !ruby/object:Gem::Version
|
82
|
+
version: '0'
|
83
|
+
description: a collection of base styling in smacss format
|
84
|
+
email:
|
85
|
+
- dave@hireDave.me
|
86
|
+
executables: []
|
87
|
+
extensions: []
|
88
|
+
extra_rdoc_files: []
|
89
|
+
files:
|
90
|
+
- .gitignore
|
91
|
+
- Gemfile
|
92
|
+
- LICENSE.txt
|
93
|
+
- README.md
|
94
|
+
- Rakefile
|
95
|
+
- app/assets/stylesheets/_smack_down.scss
|
96
|
+
- app/assets/stylesheets/smack_down/base/_base.scss
|
97
|
+
- app/assets/stylesheets/smack_down/base/_reset.scss
|
98
|
+
- app/assets/stylesheets/smack_down/base/_typography.scss
|
99
|
+
- app/assets/stylesheets/smack_down/layout/_layouts.scss
|
100
|
+
- app/assets/stylesheets/smack_down/modules/_breadcrumbs.scss
|
101
|
+
- app/assets/stylesheets/smack_down/modules/_buttons.scss
|
102
|
+
- app/assets/stylesheets/smack_down/modules/_footers.scss
|
103
|
+
- app/assets/stylesheets/smack_down/modules/_forms.scss
|
104
|
+
- app/assets/stylesheets/smack_down/modules/_headers.scss
|
105
|
+
- app/assets/stylesheets/smack_down/modules/_images.scss
|
106
|
+
- app/assets/stylesheets/smack_down/modules/_wrappers.scss
|
107
|
+
- app/assets/stylesheets/smack_down/settings/_breakpoints.scss
|
108
|
+
- app/assets/stylesheets/smack_down/settings/_colors.scss
|
109
|
+
- app/assets/stylesheets/smack_down/settings/_spaces.scss
|
110
|
+
- app/assets/stylesheets/smack_down/settings/_typography.scss
|
111
|
+
- app/assets/stylesheets/smack_down/state/_links.scss
|
112
|
+
- lib/smack_down.rb
|
113
|
+
- lib/smack_down/engine.rb
|
114
|
+
- lib/smack_down/version.rb
|
115
|
+
- smack_down.gemspec
|
116
|
+
homepage: ''
|
117
|
+
licenses:
|
118
|
+
- MIT
|
119
|
+
metadata: {}
|
120
|
+
post_install_message:
|
121
|
+
rdoc_options: []
|
122
|
+
require_paths:
|
123
|
+
- lib
|
124
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
125
|
+
requirements:
|
126
|
+
- - ! '>='
|
127
|
+
- !ruby/object:Gem::Version
|
128
|
+
version: '0'
|
129
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
130
|
+
requirements:
|
131
|
+
- - ! '>='
|
132
|
+
- !ruby/object:Gem::Version
|
133
|
+
version: '0'
|
134
|
+
requirements: []
|
135
|
+
rubyforge_project:
|
136
|
+
rubygems_version: 2.2.0
|
137
|
+
signing_key:
|
138
|
+
specification_version: 4
|
139
|
+
summary: Yeah, what I just said.
|
140
|
+
test_files: []
|