jeet 0.0.4 → 0.0.5

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,9 @@
1
+ /**
2
+ * Grid settings.
3
+ * All values are defaults and can therefore be easily overidden.
4
+ */
5
+
6
+ $jeet-gutter: 3 !default;
7
+ $jeet-parent-first: false !default;
8
+ $jeet-layout-direction: "LTR" !default;
9
+ $jeet-max-width: 1410px !default;
metadata CHANGED
@@ -1,61 +1,82 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jeet
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.4
4
+ version: 0.0.5
5
5
  platform: ruby
6
6
  authors:
7
- - Cory Simmons / MojoTech
7
+ - Cory Simmons
8
+ - Jonah Ruiz
8
9
  autorequire:
9
10
  bindir: bin
10
11
  cert_chain: []
11
- date: 2011-11-09 00:00:00.000000000 Z
12
+ date: 2014-09-06 00:00:00.000000000 Z
12
13
  dependencies:
13
14
  - !ruby/object:Gem::Dependency
14
- name: compass
15
+ name: sass
15
16
  requirement: !ruby/object:Gem::Requirement
16
17
  requirements:
17
- - - '>='
18
+ - - "~>"
18
19
  - !ruby/object:Gem::Version
19
- version: '0.11'
20
+ version: '3.2'
20
21
  type: :runtime
21
22
  prerelease: false
22
23
  version_requirements: !ruby/object:Gem::Requirement
23
24
  requirements:
24
- - - '>='
25
+ - - "~>"
25
26
  - !ruby/object:Gem::Version
26
- version: '0.11'
27
+ version: '3.2'
27
28
  - !ruby/object:Gem::Dependency
28
- name: breakpoint
29
+ name: bundler
29
30
  requirement: !ruby/object:Gem::Requirement
30
31
  requirements:
31
- - - '>='
32
+ - - "~>"
32
33
  - !ruby/object:Gem::Version
33
- version: '2.0'
34
- type: :runtime
34
+ version: '1.6'
35
+ type: :development
36
+ prerelease: false
37
+ version_requirements: !ruby/object:Gem::Requirement
38
+ requirements:
39
+ - - "~>"
40
+ - !ruby/object:Gem::Version
41
+ version: '1.6'
42
+ - !ruby/object:Gem::Dependency
43
+ name: rake
44
+ requirement: !ruby/object:Gem::Requirement
45
+ requirements:
46
+ - - "~>"
47
+ - !ruby/object:Gem::Version
48
+ version: '10.0'
49
+ type: :development
35
50
  prerelease: false
36
51
  version_requirements: !ruby/object:Gem::Requirement
37
52
  requirements:
38
- - - '>='
53
+ - - "~>"
39
54
  - !ruby/object:Gem::Version
40
- version: '2.0'
41
- description: Jeet was originally a Stylus grid framework but has since been ported
42
- to SCSS. This is the Compass gem to make Jeet integration into Ruby projects seamless.
43
- email: cory@mojotech.com
55
+ version: '10.0'
56
+ description: The most advanced and intuitive Sass grid system on the planet.
57
+ email:
58
+ - csimmonswork@gmail.com
59
+ - jonah@pixelhipsters.com
44
60
  executables: []
45
61
  extensions: []
46
62
  extra_rdoc_files: []
47
63
  files:
64
+ - ".gitignore"
65
+ - Changelog.md
66
+ - Gemfile
67
+ - LICENSE
68
+ - README.md
69
+ - Rakefile
70
+ - jeet.gemspec
48
71
  - lib/jeet.rb
49
- - stylesheets/_jeet.scss
50
- - stylesheets/jeet/_grid.scss
51
- - stylesheets/jeet/_index.scss
52
- - stylesheets/jeet/_reset.scss
53
- - stylesheets/jeet/_settings.scss
54
- - stylesheets/jeet/_shame.scss
55
- - stylesheets/jeet/_typography.scss
56
- - stylesheets/jeet/_utilities.scss
57
- homepage: http://jeetframework.com
58
- licenses: []
72
+ - lib/jeet/version.rb
73
+ - vendor/assets/stylesheets/jeet.scss
74
+ - vendor/assets/stylesheets/jeet/_functions.scss
75
+ - vendor/assets/stylesheets/jeet/_grid.scss
76
+ - vendor/assets/stylesheets/jeet/_settings.scss
77
+ homepage: http://jeet.gs
78
+ licenses:
79
+ - MIT
59
80
  metadata: {}
60
81
  post_install_message:
61
82
  rdoc_options: []
@@ -63,18 +84,18 @@ require_paths:
63
84
  - lib
64
85
  required_ruby_version: !ruby/object:Gem::Requirement
65
86
  requirements:
66
- - - '>='
87
+ - - ">="
67
88
  - !ruby/object:Gem::Version
68
89
  version: '0'
69
90
  required_rubygems_version: !ruby/object:Gem::Requirement
70
91
  requirements:
71
- - - '>='
92
+ - - ">="
72
93
  - !ruby/object:Gem::Version
73
94
  version: '0'
74
95
  requirements: []
75
96
  rubyforge_project:
76
- rubygems_version: 2.1.10
97
+ rubygems_version: 2.4.1
77
98
  signing_key:
78
99
  specification_version: 4
79
- summary: Modern Compass grid framework
100
+ summary: A grid system for humans.
80
101
  test_files: []
@@ -1 +0,0 @@
1
- @import 'jeet/index';
@@ -1,93 +0,0 @@
1
- // Columns with Gutters
2
- @mixin column($ratios: 1, $offset: 0, $cycle: 0, $uncycle: 0) {
3
- $side: get_layout_direction();
4
- $column_widths: get_column($ratios);
5
- $margin_l: 0;
6
- $margin_last: $margin_l;
7
- $margin_r: nth($column_widths, 2);
8
- @if $offset != 0 {
9
- @if $offset < 0 {
10
- $offset: $offset * -1;
11
- $offset: nth(get_column($offset, nth($column_widths, 2)), 1);
12
- $margin_r: $offset + nth($column_widths, 2) * 2;
13
- $margin_last: $margin_r;
14
- } @else {
15
- $offset: nth(get_column($offset, nth($column_widths, 2)), 1);
16
- $margin_l: $offset + nth($column_widths, 2);
17
- }
18
- }
19
- @include cf;
20
- float: $side;
21
- display: inline;
22
- clear: none;
23
- text-align: inherit;
24
- padding-left: 0;
25
- padding-right: 0;
26
- width: nth($column_widths, 1) + unquote("%");
27
- margin-#{$side}: $margin_l + unquote("%");
28
- margin-#{opposite-position($side)}: $margin_r + unquote("%");
29
- @if $uncycle != 0 {
30
- &:nth-child(#{$uncycle}n) {
31
- margin-#{opposite-position($side)}: $margin_r + unquote("%");
32
- float: $side;
33
- }
34
- }
35
- @if $cycle != 0 {
36
- &:nth-child(#{$cycle}n) {
37
- margin-#{opposite-position($side)}: $margin_last + unquote("%");
38
- float: opposite-position($side);
39
- }
40
- }
41
- @else {
42
- &:last-child {
43
- margin-#{opposite-position($side)}: $margin_last + unquote("%");
44
- }
45
- }
46
- }
47
-
48
- // Columns without Gutters
49
- @mixin span($ratio: 1, $offset: 0) {
50
- $side: get_layout_direction();
51
- $span_width: get_span($ratio);
52
- $margin_l: 0;
53
- $margin_r: $margin_l;
54
- @if $offset != 0 {
55
- @if $offset < 0 {
56
- $offset: $offset * -1;
57
- $margin_r: get_span($offset);
58
- } @else {
59
- $margin_l: get_span($offset);
60
- }
61
- }
62
- @include cf;
63
- float: $side;
64
- display: inline;
65
- clear: none;
66
- padding-left: 0;
67
- padding-right: 0;
68
- text-align: inherit;
69
- width: $span_width + unquote("%");
70
- margin-#{$side}: $margin_l + unquote("%");
71
- margin-#{opposite-position($side)}: $margin_r + unquote("%");
72
- }
73
-
74
- // Source Ordering
75
- @mixin shift($ratios: 0, $col_or_span: column){
76
- $side: get_layout_direction();
77
- @if $side == right {
78
- $ratios: replace_nth($ratios, 0, nth($ratios, 1) * -1);
79
- }
80
- @if $col_or_span == column or $col_or_span == col or $col_or_span == c {
81
- $column_widths: get_column($ratios);
82
- $translate: nth($column_widths, 1) + nth($column_widths, 2);
83
- left: $translate + unquote("%");
84
- } @else {
85
- $translate: get_span($ratios);
86
- left: $translate + unquote("%");
87
- }
88
- position: relative;
89
- }
90
- @mixin unshift() {
91
- position: static;
92
- left: 0;
93
- }
@@ -1,21 +0,0 @@
1
- /* Syntax Quick Reference
2
- ----------------------
3
- @include edit;
4
- @include center($max_width: 1410px, $pad: 0);
5
- @include stack($pad: 0, $align: center);
6
- @include unstack;
7
- @include align($direction: both);
8
- @include cf;
9
- @include column($ratios: 1, $offset: 0, $cycle: 0, $uncycle: 0);
10
- @include span($ratio: 1, $offset: 0);
11
- @include shift($ratios: 0, $col_or_span: column);
12
- @include unshift;
13
- */
14
-
15
- @import 'breakpoint'; // http://breakpoint-sass.com
16
- @import '_settings';
17
- @import '_shame';
18
- @import '_utilities';
19
- @import '_reset';
20
- @import '_grid';
21
- @import '_typography';
@@ -1,207 +0,0 @@
1
- @mixin normalize() { // v2.1.3
2
- article,
3
- aside,
4
- details,
5
- figcaption,
6
- figure,
7
- footer,
8
- header,
9
- hgroup,
10
- main,
11
- nav,
12
- section,
13
- summary {
14
- display: block;
15
- }
16
- audio,
17
- canvas,
18
- video {
19
- display: inline-block;
20
- }
21
- audio:not([controls]) {
22
- display: none;
23
- height: 0;
24
- }
25
- [hidden],
26
- template {
27
- display: none;
28
- }
29
- html {
30
- font-family: sans-serif;
31
- text-size-adjust: 100%;
32
- }
33
- body {
34
- margin: 0;
35
- }
36
- a {
37
- background: transparent;
38
- }
39
- a:focus {
40
- outline: thin dotted;
41
- }
42
- a:active,
43
- a:hover {
44
- outline: 0;
45
- }
46
- h1 {
47
- font-size: 2em;
48
- margin: 0.67em 0;
49
- }
50
- abbr[title] {
51
- border-bottom: 1px dotted;
52
- }
53
- b,
54
- strong {
55
- font-weight: bold;
56
- }
57
- dfn {
58
- font-style: italic;
59
- }
60
- hr {
61
- box-sizing: content-box;
62
- height: 0;
63
- }
64
- mark {
65
- background: #ff0;
66
- color: #000;
67
- }
68
- code,
69
- kbd,
70
- pre,
71
- samp {
72
- font-family: monospace, serif;
73
- font-size: 1em;
74
- }
75
- pre {
76
- white-space: pre-wrap;
77
- }
78
- q {
79
- quotes: "\201C" "\201D" "\2018" "\2019";
80
- }
81
- small {
82
- font-size: 80%;
83
- }
84
- sub,
85
- sup {
86
- font-size: 75%;
87
- line-height: 0;
88
- position: relative;
89
- vertical-align: baseline;
90
- }
91
- sup {
92
- top: -0.5em;
93
- }
94
- sub {
95
- bottom: -0.25em;
96
- }
97
- img {
98
- border: 0;
99
- }
100
- svg:not(:root) {
101
- overflow: hidden;
102
- }
103
- figure {
104
- margin: 0;
105
- }
106
- fieldset {
107
- border: 1px solid #c0c0c0;
108
- margin: 0 2px;
109
- padding: 0.35em 0.625em 0.75em;
110
- }
111
- legend {
112
- border: 0;
113
- padding: 0;
114
- }
115
- button,
116
- input,
117
- select,
118
- textarea {
119
- font-family: inherit;
120
- font-size: 100%;
121
- margin: 0;
122
- }
123
- button,
124
- input {
125
- line-height: normal;
126
- }
127
- button,
128
- select {
129
- text-transform: none;
130
- }
131
- button,
132
- html input[type="button"],
133
- input[type="reset"],
134
- input[type="submit"] {
135
- -webkit-appearance: button;
136
- cursor: pointer;
137
- }
138
- button[disabled],
139
- html input[disabled] {
140
- cursor: default;
141
- }
142
- input[type="checkbox"],
143
- input[type="radio"] {
144
- box-sizing: border-box;
145
- padding: 0;
146
- }
147
- input[type="search"] {
148
- -webkit-appearance: textfield;
149
- box-sizing: content-box;
150
- }
151
- input[type="search"]::-webkit-search-cancel-button,
152
- input[type="search"]::-webkit-search-decoration {
153
- -webkit-appearance: none;
154
- }
155
- button::-moz-focus-inner,
156
- input::-moz-focus-inner {
157
- border: 0;
158
- padding: 0;
159
- }
160
- textarea {
161
- overflow: auto;
162
- vertical-align: top;
163
- }
164
- table {
165
- border-collapse: collapse;
166
- border-spacing: 0;
167
- }
168
- }
169
-
170
- @include normalize();
171
-
172
- *, *:before, *:after, *::before, *::after {
173
- *behavior: url(js/vendor/boxsizing.htc);
174
- box-sizing: border-box;
175
- margin: 0;
176
- padding: 0;
177
- }
178
- html {
179
- overflow-y: scroll;
180
- overflow-x: hidden;
181
- }
182
- body {
183
- @include cf;
184
- width: 100%;
185
- }
186
- img, video, audio, embed, object, input, iframe {
187
- max-width: 100%;
188
- }
189
- .cf {
190
- @include cf;
191
- }
192
- .browsehappy {
193
- width: 100%;
194
- padding: 15px 0;
195
- background: #fff;
196
- border-bottom: 1px solid #ddd;
197
- p {
198
- @include center;
199
- text-align: center;
200
- &:last-of-type {
201
- margin-bottom: 0;
202
- }
203
- }
204
- a {
205
- color: blue;
206
- }
207
- }