edge_framework 0.9.9 → 0.9.10

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml ADDED
@@ -0,0 +1,15 @@
1
+ ---
2
+ !binary "U0hBMQ==":
3
+ metadata.gz: !binary |-
4
+ MDVlNDM5NDIzMzAwMmE4OTNkNTk3Mjk2ODZhNjBlNjgyZjc5ZmY5Mw==
5
+ data.tar.gz: !binary |-
6
+ Y2FjZmFmOWE3MGYyNjlmYmEyZTY1YzhkMzExMzVmOGUzYmVkMjhlMQ==
7
+ SHA512:
8
+ metadata.gz: !binary |-
9
+ ZDRjOTRmMTZmMzZhYzIwYjQxZGRlMGFiYTI0MGIwODVmMzVjNjBmMjg3NGQ2
10
+ NDQ5N2FhZDVlMmY1ZTgzYWQ2YjViZWJkYTVkMjIyYmEzZTUwMDNmZWU4YjZl
11
+ OGRlMTZlMTU4ZTUyZjc4YjU4ZGU0OGEwYmEyN2I0NmFkNGRhYzU=
12
+ data.tar.gz: !binary |-
13
+ Y2YwYTZjZTZlYTdkYmI0YWU2ZTMxM2M5MzA1MTQ0NTA3MjM0Y2FhYWU1NzQ4
14
+ MDZmYzI4MTAzZGY4NzgzODYzMzgyYWQ1ZmI3ZWZiNDdlYTljMmFmODhlNTQw
15
+ NTIzMTE5YWZiYWQyODBkMGY4MGVkZTgxOTQ2NjZmNzkzZDI5MGE=
data/README.md CHANGED
@@ -1,23 +1,189 @@
1
- Welcome to Edge Framework
1
+ EDGE FRAMEWORK
2
2
  ==========================
3
3
 
4
- Edge is a unobtrusive Sass framework.
4
+ **ABOUT EDGE**
5
+
6
+ Edge is a light-weight responsive Sass framework. No gimmick, just the basic necessity to build modern website.
5
7
 
6
8
  It is based on [Foundation by ZURB](http://www.zurb.com).
7
9
 
8
- Edge is MIT-licensed and absolutely free to use.
10
+ **OUR PHILOSOPHY**
11
+
12
+ My personal preference is to have a framework not do something and implement it myself than have a framework do something and figure out how to do the opposite.
13
+
9
14
 
10
- Installation
15
+ INSTALLATION
11
16
  =============
12
17
 
13
18
  gem install edge_framework
14
19
 
15
- Windows PC doesn't come with Ruby pre-installed, so you can follow [this Ruby installation guide](https://docs.google.com/document/d/155e-Dx4SnQj_bMrM24kI4_ZEmBp-TQ_tuinhMvZsIhM/edit?usp=sharing) we wrote. After you installed Ruby, type in the command above on `cmd` (command prompt).
20
+ Windows PC doesn't come with Ruby pre-installed, so you can follow [this Ruby installation guide](https://docs.google.com/document/d/155e-Dx4SnQj_bMrM24kI4_ZEmBp-TQ_tuinhMvZsIhM/edit?usp=sharing) we wrote.
21
+
22
+ After you installed Ruby, type in the command above on `cmd` (command prompt).
23
+
24
+ GRID SYSTEM - COLUMN
25
+ ==================
26
+
27
+ <div class="row">
28
+ <div class="large-4 small-6 column"></div>
29
+ <div class="large-8 small-6 column"></div>
30
+ </div>
31
+
32
+ Our Grid is divided into **12 columns**. Start with row followed by column and its width.
33
+
34
+ The tag doesn't have to be div, it can be section, article, header, etc.
35
+
36
+ Sizing:
37
+
38
+ - Large - above 768px
39
+
40
+ - Small (optional) - below or equal to 768px, width will be 100% if not specified.
41
+
42
+ The snippets above is `4 - 8` on Large screen and `6 - 6` on Small screen.
43
+
44
+ Centering
45
+ -----------
46
+
47
+ .large-centered
48
+ .small-centered
49
+
50
+ You can make a column **horizontally centered** on your screen by adding the class above. Large centering is inherited on small screen.
51
+
52
+ <div class="row">
53
+ <div class="large-8 large-centered column"></div>
54
+ </div>
55
+
56
+ Feel free to nest the row if you want more than two columns to be centered:
57
+
58
+ <section class="row">
59
+ <div class="large-8 large-centered column">
60
+ <div class="row">
61
+ <div class="large-6 column"></div>
62
+ <div class="large-6 column"></div>
63
+ </div>
64
+ </div>
65
+ </section>
66
+
67
+ Offset
68
+ -----------
69
+
70
+ .large-offset-x
71
+ .small-offset-x
72
+
73
+ Offset is used to leave a **gap** before the column. Large offset is ignored on small screen.
74
+
75
+ <div class="row">
76
+ <div class="large-2 column"></div>
77
+ <div class="large-6 large-offset-4 column"></div>
78
+ </div>
79
+
80
+ The snippets below only has offset on small screen:
81
+
82
+ <div class="row">
83
+ <div class="large-2 small-4 column"></div>
84
+ <div class="large-10 small-6 small-offset-2 column"></div>
85
+ </div>
86
+
87
+ Column Ordering
88
+ -----------------
89
+
90
+ push-x
91
+ pull-x
92
+
93
+ Sometimes you want a column to be on the right for Large screen but left-side for Small screen.
94
+
95
+ **Push** pushes the column to the right, while **Pull** pulls it to the left.
96
+
97
+ Push and Pull is ignored on small screen.
98
+
99
+ <div class="row">
100
+ <aside class="large-4 small-4 push-4 column"></aside>
101
+ <main class="large-8 small-8 pull-8 column"></main>
102
+ </div>
103
+
104
+ The snippet above will look like this:
105
+
106
+ // on Large screen
107
+ |---main---||aside|
108
+
109
+ // on Small screen
110
+ |aside||---main---|
111
+
112
+ GRID SYSTEM - TILE
113
+ =================
114
+
115
+ ul.large-tile-x
116
+ ul.small-tile-x
117
+
118
+ Tile evenly divides the list into column-like size.
119
+
120
+ <ul class="large-tile-4">
121
+ <li></li>
122
+ <li></li>
123
+ <li></li>
124
+ <li></li>
125
+ <li></li>
126
+ </ul>
127
+
128
+ In the example above, there are 4 list-items per row, 25% width each.
129
+
130
+ Without small sizing, each item will be 100% width. Here's how you can control the responsiveness:
131
+
132
+ <ul class="large-tile-6 small-tile-3">
133
+ </ul>
134
+
135
+ VISIBILITY
136
+ ==================
137
+
138
+ .hide-for-<size>
139
+ .show-for-<size>
16
140
 
17
- CLI - Template Generator
141
+ Hide or show element on specific screen size. This class is applicable to any elements.
142
+
143
+ **Hide** means hidden only on that size. **Show** means visible only on that size.
144
+
145
+ Sizing:
146
+
147
+ - Large - above 768px
148
+
149
+ - Small - below or equal to 768px
150
+
151
+ - Mini - below or equal to 480px
152
+
153
+ Note that small size is below 768px which means it includes mini size.
154
+
155
+ **VISIBILITY TABLE**
156
+
157
+ ✓ = visible
158
+
159
+ Large Small Mini
160
+
161
+ .hide-for-large - ✓ ✓
162
+ .hide-for-small ✓ - -
163
+ .hide-for-mini ✓ ✓ -
164
+
165
+ .show-for-large ✓ - -
166
+ .show-for-small - ✓ ✓
167
+ .show-for-mini - - ✓
168
+
169
+ From the table, we can see that some classes like `.hide-for-large` and `.show-for-small` have same result. It is up to your preference on which word makes more sense.
170
+
171
+ **EXAMPLES**
172
+
173
+ Sidebar hidden on mini screen
174
+
175
+ <aside class="sidebar hide-for-mini"></aside>
176
+
177
+ Slider visible only on large screen
178
+
179
+ <div role="banner" class="show-for-large"></div>
180
+ // or
181
+ <div role="banner" class="hide-for-small"></div>
182
+
183
+ TEMPLATE GENERATOR
18
184
  ====================
19
185
 
20
- Edge can generate basic template for your project. Open `cmd` or `terminal` in your project directory and type in one of these commands:
186
+ Edge can generate basic template for your project. Run this command inside your project directory:
21
187
 
22
188
  1. Static HTML
23
189
 
@@ -33,3 +199,65 @@ Edge can generate basic template for your project. Open `cmd` or `terminal` in y
33
199
 
34
200
  4. Coming soon: Rails, Sinatra, Django, Flask
35
201
 
202
+ COMPASS
203
+ =================
204
+
205
+ Inside the generated template, go to `assets/sass/` and you will see `_settings.scss`. This file overrides the default styling like primary color or column's gutter.
206
+
207
+ Just uncomment the variable and change the value:
208
+
209
+ // $column-gutter : 20px;
210
+
211
+ Become:
212
+
213
+ $column-gutter : 30px;
214
+
215
+ **STARTING FROM SCRATCH**
216
+
217
+ Here's the guide if you decided not to use the template generator.
218
+
219
+ There are two main imports:
220
+
221
+ - **edge** - output all of the framework's styling. Used in conjunction with your own generic style that can be re-used in other project.
222
+
223
+ `@import "edge";`
224
+
225
+ - **edge/helpers** - allow the use of Edge's mixin, doesn't output anything. Used in conjunction with site-specific style
226
+
227
+ `@import "edge/helpers";`
228
+
229
+ Then at the top of **config.rb**, add this line:
230
+
231
+ require "edge_framework"
232
+
233
+ RAILS
234
+ =================
235
+
236
+ You can use Edge by including this in your Gemfile:
237
+
238
+ gem 'sass', '= 3.2.14'
239
+ gem 'sass-rails', '~> 4.0.0'
240
+ gem 'compass-rails'
241
+ gem 'edge_framework'
242
+
243
+ The latest version of Sass (3.3.x) is not compatible with latest Compass (0.12.x). So until they fixed it, use Sass version 3.2.14
244
+
245
+ If you're not planning to override any variables, include `require edge` in your assets pipeline (application.css)
246
+
247
+ /*
248
+ *= require_self
249
+ *= require edge
250
+ *= require_tree .
251
+ */
252
+
253
+ Otherwise, use the generator to get the starter kit which includes Setting file.
254
+
255
+ rails g edge:install (COMING SOON)
256
+
257
+ The Rails generator is not ready yet. Alternatively, copy all the Sass files from any of the Template generator and put it on `assets/stylesheets` directory. Then in your application.css:
258
+
259
+ /*
260
+ *= require_self
261
+ *= require framework
262
+ *= require_tree .
263
+ */
@@ -1,6 +1,6 @@
1
1
  /* ----------------------------------
2
2
  - EDGE Framework - edge.setyono.net
3
- - v0.9.9 (Crixalis)
3
+ - v0.9.10 (Crixalis)
4
4
  ------------------------------------- */
5
5
 
6
6
  @import "edge/base";
@@ -1,3 +1,4 @@
1
+ @import "base";
1
2
  @import "helpers/sprites";
2
3
  @import "helpers/sticky-footer";
3
4
 
@@ -16,7 +16,8 @@ $column-gutter : 20px !default;
16
16
  // GRID ROW
17
17
  // - Create container for the grid
18
18
  // ---------------------------------
19
- @mixin grid-row(
19
+
20
+ @mixin row(
20
21
  $nest : false,
21
22
  $collapse : false,
22
23
  $width : $row-max-width,
@@ -110,7 +111,7 @@ $column-gutter : 20px !default;
110
111
  }
111
112
 
112
113
  // ----------------------------------
113
- // Prevent duplicate in grid-column
114
+ // Prevent duplicate in column
114
115
  // ----------------------------------
115
116
  @mixin source-ordering-column(
116
117
  $push : 0,
@@ -133,13 +134,13 @@ $column-gutter : 20px !default;
133
134
  @mixin source-ordering-output() {
134
135
  @for $i from 1 through $total-columns - 1 {
135
136
  .large-offset-#{$i} {
136
- @include grid-column($large-offset:$i);
137
+ @include column($large-offset:$i);
137
138
  }
138
139
  .push#{-$i} {
139
- @include grid-column($push:$i);
140
+ @include column($push:$i);
140
141
  }
141
142
  .pull#{-$i} {
142
- @include grid-column($pull:$i);
143
+ @include column($pull:$i);
143
144
  }
144
145
  }
145
146
  }
@@ -148,7 +149,7 @@ $column-gutter : 20px !default;
148
149
  // GRID COLUMN
149
150
  // - Create the grid
150
151
  // ------------------------
151
- @mixin grid-column(
152
+ @mixin column(
152
153
  $large : 0,
153
154
  $small : 0, // For external call only, small size screen
154
155
  $mini : 0, // For external call only, mini size screen
@@ -270,22 +271,22 @@ $column-gutter : 20px !default;
270
271
 
271
272
  // Normal row
272
273
  .row {
273
- @include grid-row($for-base:true);
274
+ @include row($for-base:true);
274
275
 
275
276
  // Collapsed row
276
277
  &.collapse {
277
- @include grid-row($collapse:true);
278
+ @include row($collapse:true);
278
279
  .column,
279
280
  .columns {
280
- @include grid-column($collapse:true);
281
+ @include column($collapse:true);
281
282
  }
282
283
  }
283
284
 
284
285
  // Nested-collapsed row
285
286
  .row {
286
- @include grid-row($nest:true);
287
+ @include row($nest:true);
287
288
  &.collapse {
288
- @include grid-row($nest:true, $collapse:true);
289
+ @include row($nest:true, $collapse:true);
289
290
  }
290
291
  }
291
292
  }
@@ -293,17 +294,17 @@ $column-gutter : 20px !default;
293
294
  // Normal column
294
295
  .column,
295
296
  .columns {
296
- @include grid-column($large:$total-columns, $for-base:true);
297
+ @include column($large:$total-columns, $for-base:true);
297
298
  }
298
299
 
299
300
  @for $i from 1 through $total-columns {
300
- .large#{-$i} { @include grid-column($large:$i); }
301
+ .large#{-$i} { @include column($large:$i); }
301
302
  }
302
303
 
303
304
  // Centered column
304
305
  .column.large-centered,
305
306
  .columns.large-centered {
306
- @include grid-column($center:true);
307
+ @include column($center:true);
307
308
  }
308
309
 
309
310
  // Source Ordering
@@ -320,23 +321,23 @@ $column-gutter : 20px !default;
320
321
  @include below(small) {
321
322
  .column,
322
323
  .columns {
323
- @include grid-column($large:$total-columns);
324
+ @include column($large:$total-columns);
324
325
  }
325
326
  @for $i from 1 through $total-columns {
326
327
  .small#{-$i} {
327
- @include grid-column($large:$i);
328
+ @include column($large:$i);
328
329
  }
329
330
  }
330
331
 
331
332
  @for $i from 0 through $total-columns - 2 {
332
333
  .small-offset-#{$i} {
333
- @include grid-column($large-offset:$i);
334
+ @include column($large-offset:$i);
334
335
  }
335
336
  }
336
337
 
337
338
  .column.small-centered,
338
339
  .columns.small-centered {
339
- @include grid-column($center:true);
340
+ @include column($center:true);
340
341
  }
341
342
  }
342
343
 
@@ -3,7 +3,7 @@
3
3
 
4
4
 
5
5
  .custom-grid {
6
- @include grid-column($large:3);
6
+ @include column($large:3);
7
7
  }
8
8
 
9
9
  [data-page="animate"] {
@@ -174,85 +174,85 @@
174
174
 
175
175
  /* Custom Grid */
176
176
  .cgrid-1 {
177
- @include grid-column($large:5);
177
+ @include column($large:5);
178
178
  }
179
179
  .cgrid-2 {
180
- @include grid-column($large:7);
180
+ @include column($large:7);
181
181
  }
182
182
 
183
183
  .cgrid-a1 {
184
- @include grid-column($large:5, $small:10);
184
+ @include column($large:5, $small:10);
185
185
  }
186
186
  .cgrid-a2 {
187
- @include grid-column($large:7, $small:2);
187
+ @include column($large:7, $small:2);
188
188
  }
189
189
 
190
190
  .cgrid-b1 {
191
- @include grid-column($large:10, $small:8, $mini:6);
191
+ @include column($large:10, $small:8, $mini:6);
192
192
  }
193
193
  .cgrid-b2 {
194
- @include grid-column($large:2, $small:4, $mini:6);
194
+ @include column($large:2, $small:4, $mini:6);
195
195
  }
196
196
 
197
197
  .cgrid-c1 {
198
- @include grid-column($large:6, $large-offset:4, $small:6);
198
+ @include column($large:6, $large-offset:4, $small:6);
199
199
  }
200
200
  .cgrid-c2 {
201
- @include grid-column($large:2, $small:6);
201
+ @include column($large:2, $small:6);
202
202
  }
203
203
 
204
204
  .cgrid-d1 {
205
- @include grid-column($large:3, $large-offset:6, $small:4, $small-offset:4);
205
+ @include column($large:3, $large-offset:6, $small:4, $small-offset:4);
206
206
  }
207
207
  .cgrid-d2 {
208
- @include grid-column($large:3, $small:4);
208
+ @include column($large:3, $small:4);
209
209
  }
210
210
 
211
211
  .cgrid-e1 {
212
- @include grid-column($large:3, $large-offset:6, $small:4, $small-offset:4, $mini:6);
212
+ @include column($large:3, $large-offset:6, $small:4, $small-offset:4, $mini:6);
213
213
  }
214
214
  .cgrid-e2 {
215
- @include grid-column($large:3, $small:4, $mini:6);
215
+ @include column($large:3, $small:4, $mini:6);
216
216
  }
217
217
 
218
218
  .cgrid-f1 {
219
- @include grid-column($large:3, $large-offset:6, $small:4, $small-offset:4, $mini:5, $mini-offset:1);
219
+ @include column($large:3, $large-offset:6, $small:4, $small-offset:4, $mini:5, $mini-offset:1);
220
220
  }
221
221
  .cgrid-f2 {
222
- @include grid-column($large:3, $small:4, $mini:6);
222
+ @include column($large:3, $small:4, $mini:6);
223
223
  }
224
224
 
225
225
  .cgrid-g1 {
226
- @include grid-column($large:4, $push:8);
226
+ @include column($large:4, $push:8);
227
227
  }
228
228
  .cgrid-g2 {
229
- @include grid-column($large:8, $pull:4);
229
+ @include column($large:8, $pull:4);
230
230
  }
231
231
 
232
232
  .cgrid-h1 {
233
- @include grid-column($large:8, $small:8);
233
+ @include column($large:8, $small:8);
234
234
  }
235
235
  .cgrid-h1-1 {
236
- @include grid-column($large:5, $small:5);
236
+ @include column($large:5, $small:5);
237
237
  }
238
238
  .cgrid-h1-2 {
239
- @include grid-column($large:7, $small:7);
239
+ @include column($large:7, $small:7);
240
240
  }
241
241
  .cgrid-h2 {
242
- @include grid-column($large:4, $small:4);
242
+ @include column($large:4, $small:4);
243
243
  }
244
244
  .cgrid-h2-1 {
245
- @include grid-column($large:6, $small:6, $center:true);
245
+ @include column($large:6, $small:6, $center:true);
246
246
  }
247
247
 
248
248
  .cgrid-i0 {
249
- @include grid-row($gutter:50px);
249
+ @include row($gutter:50px);
250
250
  }
251
251
  .cgrid-i1 {
252
- @include grid-column($large:6, $gutter:50px);
252
+ @include column($large:6, $gutter:50px);
253
253
  }
254
254
  .cgrid-i2 {
255
- @include grid-column($large:6, $gutter:50px);
255
+ @include column($large:6, $gutter:50px);
256
256
  }
257
257
 
258
258
  /* Custom Tile */
data/assets/test.html CHANGED
@@ -224,7 +224,7 @@
224
224
  </div>
225
225
  </div> -->
226
226
 
227
- <div class="row" data-page="vr-comparison">
227
+ <!-- <div class="row" data-page="vr-comparison">
228
228
  <div class="large-6 column">
229
229
  <article class="baseline-comparison">
230
230
  <h1>Lorem ipsum dolor sit amet.</h1>
@@ -293,7 +293,7 @@
293
293
  </p>
294
294
  </article>
295
295
  </div>
296
- </div>
296
+ </div> -->
297
297
 
298
298
  <!-- <div class="row" data-page="code">
299
299
  <div class="large-12 columns">
@@ -552,7 +552,7 @@
552
552
  </div> -->
553
553
 
554
554
 
555
- <!-- <section class="row" data-page="visibility">
555
+ <section class="row" data-page="visibility">
556
556
  <div class="large-12 column">
557
557
  <h2>Using the Class</h2>
558
558
  <div class="visibility-class">
@@ -671,7 +671,7 @@
671
671
  </div>
672
672
 
673
673
  </div>
674
- </section> -->
674
+ </section>
675
675
 
676
676
  <!-- <div class="row collapse demo-grid" data-page="grid">
677
677
  <h1>Collapse not nested</h1>
data/lib/edge/version.rb CHANGED
@@ -1,4 +1,4 @@
1
1
  module Edge
2
- VERSION = "0.9.9"
2
+ VERSION = "0.9.10"
3
3
  CODENAME = "Crixalis"
4
4
  end
@@ -1,6 +1,3 @@
1
- @charset "UTF-8";
2
- @import "edge/base";
3
-
4
1
  // Override EDGE variables here
5
2
  // To override, uncomment the variable and set the new value
6
3
 
@@ -1,8 +1,10 @@
1
1
  @import "setting";
2
2
  @import "edge";
3
3
 
4
- // If you have idea to improve EDGE, write it here temporarily
5
- // And if you are willing, pass it to henner@setyono.net
4
+ // Put your generic style that can be re-used in other project here
5
+
6
+ // And if you are willing, share it to me at henner.renardi@gmail.com
6
7
  //
7
8
  // Thanks,
8
- // - Henner S
9
+ // Henner RS
10
+ // - EDGE Author
@@ -1,4 +1,4 @@
1
- gem "edge_framework", "= 0.9.9" # Remove this line to use the latest EDGE, beware of incompatibility
1
+ gem "edge_framework", "= 0.9.10" # Remove this line to use the latest EDGE, beware of incompatibility
2
2
  require "edge_framework"
3
3
 
4
4
  http_path = "/"
metadata CHANGED
@@ -1,20 +1,18 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: edge_framework
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.9.9
5
- prerelease:
4
+ version: 0.9.10
6
5
  platform: ruby
7
6
  authors:
8
7
  - Henner Setyono
9
8
  autorequire:
10
9
  bindir: bin
11
10
  cert_chain: []
12
- date: 2014-03-12 00:00:00.000000000 Z
11
+ date: 2014-03-16 00:00:00.000000000 Z
13
12
  dependencies:
14
13
  - !ruby/object:Gem::Dependency
15
14
  name: sass
16
15
  requirement: !ruby/object:Gem::Requirement
17
- none: false
18
16
  requirements:
19
17
  - - ! '>='
20
18
  - !ruby/object:Gem::Version
@@ -22,7 +20,6 @@ dependencies:
22
20
  type: :runtime
23
21
  prerelease: false
24
22
  version_requirements: !ruby/object:Gem::Requirement
25
- none: false
26
23
  requirements:
27
24
  - - ! '>='
28
25
  - !ruby/object:Gem::Version
@@ -30,7 +27,6 @@ dependencies:
30
27
  - !ruby/object:Gem::Dependency
31
28
  name: compass
32
29
  requirement: !ruby/object:Gem::Requirement
33
- none: false
34
30
  requirements:
35
31
  - - ! '>='
36
32
  - !ruby/object:Gem::Version
@@ -38,7 +34,6 @@ dependencies:
38
34
  type: :runtime
39
35
  prerelease: false
40
36
  version_requirements: !ruby/object:Gem::Requirement
41
- none: false
42
37
  requirements:
43
38
  - - ! '>='
44
39
  - !ruby/object:Gem::Version
@@ -46,7 +41,6 @@ dependencies:
46
41
  - !ruby/object:Gem::Dependency
47
42
  name: bundler
48
43
  requirement: !ruby/object:Gem::Requirement
49
- none: false
50
44
  requirements:
51
45
  - - ~>
52
46
  - !ruby/object:Gem::Version
@@ -54,7 +48,6 @@ dependencies:
54
48
  type: :development
55
49
  prerelease: false
56
50
  version_requirements: !ruby/object:Gem::Requirement
57
- none: false
58
51
  requirements:
59
52
  - - ~>
60
53
  - !ruby/object:Gem::Version
@@ -62,7 +55,6 @@ dependencies:
62
55
  - !ruby/object:Gem::Dependency
63
56
  name: rake
64
57
  requirement: !ruby/object:Gem::Requirement
65
- none: false
66
58
  requirements:
67
59
  - - ! '>='
68
60
  - !ruby/object:Gem::Version
@@ -70,7 +62,6 @@ dependencies:
70
62
  type: :development
71
63
  prerelease: false
72
64
  version_requirements: !ruby/object:Gem::Requirement
73
- none: false
74
65
  requirements:
75
66
  - - ! '>='
76
67
  - !ruby/object:Gem::Version
@@ -78,7 +69,6 @@ dependencies:
78
69
  - !ruby/object:Gem::Dependency
79
70
  name: rspec
80
71
  requirement: !ruby/object:Gem::Requirement
81
- none: false
82
72
  requirements:
83
73
  - - ! '>='
84
74
  - !ruby/object:Gem::Version
@@ -86,7 +76,6 @@ dependencies:
86
76
  type: :development
87
77
  prerelease: false
88
78
  version_requirements: !ruby/object:Gem::Requirement
89
- none: false
90
79
  requirements:
91
80
  - - ! '>='
92
81
  - !ruby/object:Gem::Version
@@ -173,26 +162,25 @@ files:
173
162
  homepage: http://edge.setyono.net
174
163
  licenses:
175
164
  - MIT
165
+ metadata: {}
176
166
  post_install_message:
177
167
  rdoc_options: []
178
168
  require_paths:
179
169
  - lib
180
170
  required_ruby_version: !ruby/object:Gem::Requirement
181
- none: false
182
171
  requirements:
183
172
  - - ! '>='
184
173
  - !ruby/object:Gem::Version
185
174
  version: '0'
186
175
  required_rubygems_version: !ruby/object:Gem::Requirement
187
- none: false
188
176
  requirements:
189
177
  - - ! '>='
190
178
  - !ruby/object:Gem::Version
191
179
  version: '0'
192
180
  requirements: []
193
181
  rubyforge_project:
194
- rubygems_version: 1.8.28
182
+ rubygems_version: 2.2.2
195
183
  signing_key:
196
- specification_version: 3
184
+ specification_version: 4
197
185
  summary: Minimalist SASS Framework that utilize Compass to its full extend
198
186
  test_files: []