app_sleuth 0.0.1.pre
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.
- data/.gitignore +25 -0
- data/Gemfile +7 -0
- data/LICENSE +22 -0
- data/README.md +29 -0
- data/Rakefile +2 -0
- data/app_sleuth.gemspec +20 -0
- data/bin/app_sleuth +20 -0
- data/config.ru +10 -0
- data/lib/app_sleuth.rb +10 -0
- data/lib/app_sleuth/colors.rb +36 -0
- data/lib/app_sleuth/fonts.rb +108 -0
- data/lib/app_sleuth/server.rb +22 -0
- data/lib/app_sleuth/server/assets/css/style.css +910 -0
- data/lib/app_sleuth/server/assets/js/libs/jquery-1.7.1.js +9266 -0
- data/lib/app_sleuth/server/assets/js/libs/jquery-1.7.1.min.js +4 -0
- data/lib/app_sleuth/server/assets/js/libs/modernizr-2.5.3.min.js +4 -0
- data/lib/app_sleuth/server/assets/js/plugins.js +11 -0
- data/lib/app_sleuth/server/assets/js/script.js +26 -0
- data/lib/app_sleuth/server/assets/sass/_boilerplate.scss +88 -0
- data/lib/app_sleuth/server/assets/sass/_marcotte-grid.scss +206 -0
- data/lib/app_sleuth/server/assets/sass/_normalize.scss +504 -0
- data/lib/app_sleuth/server/assets/sass/_print.scss +19 -0
- data/lib/app_sleuth/server/assets/sass/mixins/_mixins.scss +136 -0
- data/lib/app_sleuth/server/assets/sass/mixins/addons/_button.scss +170 -0
- data/lib/app_sleuth/server/assets/sass/mixins/addons/_font-family.scss +30 -0
- data/lib/app_sleuth/server/assets/sass/mixins/addons/_html5-input-types.scss +36 -0
- data/lib/app_sleuth/server/assets/sass/mixins/addons/_non-semantic-helpers.scss +58 -0
- data/lib/app_sleuth/server/assets/sass/mixins/addons/_position.scss +30 -0
- data/lib/app_sleuth/server/assets/sass/mixins/addons/_timing-functions.scss +32 -0
- data/lib/app_sleuth/server/assets/sass/mixins/css3/_animation.scss +171 -0
- data/lib/app_sleuth/server/assets/sass/mixins/css3/_appearance.scss +7 -0
- data/lib/app_sleuth/server/assets/sass/mixins/css3/_background-clip.scss +10 -0
- data/lib/app_sleuth/server/assets/sass/mixins/css3/_background-image.scss +147 -0
- data/lib/app_sleuth/server/assets/sass/mixins/css3/_background-origin.scss +10 -0
- data/lib/app_sleuth/server/assets/sass/mixins/css3/_background-size.scss +15 -0
- data/lib/app_sleuth/server/assets/sass/mixins/css3/_border-image.scss +7 -0
- data/lib/app_sleuth/server/assets/sass/mixins/css3/_border-radius.scss +59 -0
- data/lib/app_sleuth/server/assets/sass/mixins/css3/_box-shadow.scss +16 -0
- data/lib/app_sleuth/server/assets/sass/mixins/css3/_box-sizing.scss +8 -0
- data/lib/app_sleuth/server/assets/sass/mixins/css3/_columns.scss +67 -0
- data/lib/app_sleuth/server/assets/sass/mixins/css3/_flex-box.scss +67 -0
- data/lib/app_sleuth/server/assets/sass/mixins/css3/_font-smoothing.scss +9 -0
- data/lib/app_sleuth/server/assets/sass/mixins/css3/_inline-block.scss +10 -0
- data/lib/app_sleuth/server/assets/sass/mixins/css3/_linear-gradient.scss +41 -0
- data/lib/app_sleuth/server/assets/sass/mixins/css3/_radial-gradient.scss +31 -0
- data/lib/app_sleuth/server/assets/sass/mixins/css3/_transform.scss +57 -0
- data/lib/app_sleuth/server/assets/sass/mixins/css3/_transition.scss +104 -0
- data/lib/app_sleuth/server/assets/sass/mixins/functions/_deprecated-webkit-gradient.scss +36 -0
- data/lib/app_sleuth/server/assets/sass/mixins/functions/_linear-gradient.scss +23 -0
- data/lib/app_sleuth/server/assets/sass/mixins/functions/_modular-scale.scss +40 -0
- data/lib/app_sleuth/server/assets/sass/mixins/functions/_radial-gradient.scss +15 -0
- data/lib/app_sleuth/server/assets/sass/mixins/functions/_render-gradients.scss +14 -0
- data/lib/app_sleuth/server/assets/sass/mixins/functions/_tint-shade.scss +9 -0
- data/lib/app_sleuth/server/assets/sass/mixins/hacks/_ie.scss +37 -0
- data/lib/app_sleuth/server/assets/sass/style.scss +219 -0
- data/lib/app_sleuth/server/views/colors.html.erb +44 -0
- data/lib/app_sleuth/version.rb +3 -0
- metadata +124 -0
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
@function linear-gradient($pos: top, $G1: false, $G2: false,
|
|
2
|
+
$G3: false, $G4: false,
|
|
3
|
+
$G5: false, $G6: false,
|
|
4
|
+
$G7: false, $G8: false,
|
|
5
|
+
$G9: false, $G10: false) {
|
|
6
|
+
|
|
7
|
+
// Detect what type of value exists in $pos
|
|
8
|
+
$pos-type: type-of(nth($pos, 1));
|
|
9
|
+
|
|
10
|
+
// If $pos is missing from mixin, reassign vars and add default position
|
|
11
|
+
@if ($pos-type == color) or (nth($pos, 1) == "transparent") {
|
|
12
|
+
$G10: $G9; $G9: $G8; $G8: $G7; $G7: $G6; $G6: $G5;
|
|
13
|
+
$G5: $G4; $G4: $G3; $G3: $G2; $G2: $G1; $G1: $pos;
|
|
14
|
+
$pos: top; // Default position
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
$type: linear;
|
|
18
|
+
$gradient: compact($pos, $G1, $G2, $G3, $G4, $G5, $G6, $G7, $G8, $G9, $G10);
|
|
19
|
+
$type-gradient: append($type, $gradient, comma);
|
|
20
|
+
|
|
21
|
+
@return $type-gradient;
|
|
22
|
+
}
|
|
23
|
+
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
@function modular-scale($value, $increment, $ratio) {
|
|
2
|
+
@if $increment > 0 {
|
|
3
|
+
@for $i from 1 through $increment {
|
|
4
|
+
$value: ($value * $ratio);
|
|
5
|
+
}
|
|
6
|
+
}
|
|
7
|
+
|
|
8
|
+
@if $increment < 0 {
|
|
9
|
+
$increment: abs($increment);
|
|
10
|
+
@for $i from 1 through $increment {
|
|
11
|
+
$value: ($value / $ratio);
|
|
12
|
+
}
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
@return $value;
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
// div {
|
|
19
|
+
// Increment Up GR with positive value
|
|
20
|
+
// font-size: modular-scale(14px, 1, 1.618); // returns: 22.652px
|
|
21
|
+
//
|
|
22
|
+
// Increment Down GR with negative value
|
|
23
|
+
// font-size: modular-scale(14px, -1, 1.618); // returns: 8.653px
|
|
24
|
+
//
|
|
25
|
+
// Can be used with ceil(round up) or floor(round down)
|
|
26
|
+
// font-size: floor( modular-scale(14px, 1, 1.618) ); // returns: 22px
|
|
27
|
+
// font-size: ceil( modular-scale(14px, 1, 1.618) ); // returns: 23px
|
|
28
|
+
// }
|
|
29
|
+
//
|
|
30
|
+
// modularscale.com
|
|
31
|
+
|
|
32
|
+
@function golden-ratio($value, $increment) {
|
|
33
|
+
@return modular-scale($value, $increment, 1.618)
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
// div {
|
|
37
|
+
// font-size: golden-ratio(14px, 1); // returns: 22.652px
|
|
38
|
+
// }
|
|
39
|
+
//
|
|
40
|
+
// goldenratiocalculator.com
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
// This function is required and used by the background-image mixin.
|
|
2
|
+
@function radial-gradient($pos, $shape-size,
|
|
3
|
+
$G1, $G2,
|
|
4
|
+
$G3: false, $G4: false,
|
|
5
|
+
$G5: false, $G6: false,
|
|
6
|
+
$G7: false, $G8: false,
|
|
7
|
+
$G9: false, $G10: false) {
|
|
8
|
+
|
|
9
|
+
$type: radial;
|
|
10
|
+
$gradient: compact($pos, $shape-size, $G1, $G2, $G3, $G4, $G5, $G6, $G7, $G8, $G9, $G10);
|
|
11
|
+
$type-gradient: append($type, $gradient, comma);
|
|
12
|
+
|
|
13
|
+
@return $type-gradient;
|
|
14
|
+
}
|
|
15
|
+
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
// User for linear and radial gradients within background-image or border-image properties
|
|
2
|
+
|
|
3
|
+
@function render-gradients($gradients, $gradient-type, $vendor: false) {
|
|
4
|
+
$vendor-gradients: false;
|
|
5
|
+
@if $vendor {
|
|
6
|
+
$vendor-gradients: -#{$vendor}-#{$gradient-type}-gradient($gradients);
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
@else if $vendor == false {
|
|
10
|
+
$vendor-gradients: "#{$gradient-type}-gradient(#{$gradients})";
|
|
11
|
+
$vendor-gradients: unquote($vendor-gradients);
|
|
12
|
+
}
|
|
13
|
+
@return $vendor-gradients;
|
|
14
|
+
}
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
// IE Hacks
|
|
2
|
+
|
|
3
|
+
// IE7 inline-block
|
|
4
|
+
// ----------------
|
|
5
|
+
@mixin ie7-inline-block() {
|
|
6
|
+
*display: inline; /* IE7 inline-block hack */
|
|
7
|
+
*zoom: 1;
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
// IE7 likes to collapse whitespace on either side of the inline-block elements.
|
|
11
|
+
// Ems because we're attempting to match the width of a space character. Left
|
|
12
|
+
// version is for form buttons, which typically come after other elements, and
|
|
13
|
+
// right version is for icons, which come before. Applying both is ok, but it will
|
|
14
|
+
// mean that space between those elements will be .6em (~2 space characters) in IE7,
|
|
15
|
+
// instead of the 1 space in other browsers.
|
|
16
|
+
@mixin ie7-restore-left-whitespace() {
|
|
17
|
+
*margin-left: .3em;
|
|
18
|
+
|
|
19
|
+
&:first-child {
|
|
20
|
+
*margin-left: 0;
|
|
21
|
+
}
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
@mixin ie7-restore-right-whitespace() {
|
|
25
|
+
*margin-right: .3em;
|
|
26
|
+
|
|
27
|
+
&:last-child {
|
|
28
|
+
*margin-left: 0;
|
|
29
|
+
}
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
|
|
33
|
+
// Reset filters for IE
|
|
34
|
+
@mixin reset-filter() {
|
|
35
|
+
filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
|
|
36
|
+
}
|
|
37
|
+
|
|
@@ -0,0 +1,219 @@
|
|
|
1
|
+
//
|
|
2
|
+
// HTML5 ✰ Boilerplate (SCSS Edition)
|
|
3
|
+
//
|
|
4
|
+
// What follows is the result of much research on cross-browser styling.
|
|
5
|
+
// Credit left inline and big thanks to Nicolas Gallagher, Jonathan Neal,
|
|
6
|
+
// Kroc Camen, and the H5BP dev community and team.
|
|
7
|
+
//
|
|
8
|
+
// Detailed information about this CSS: h5bp.com/css
|
|
9
|
+
//
|
|
10
|
+
|
|
11
|
+
@import "mixins/mixins";
|
|
12
|
+
@import "marcotte-grid";
|
|
13
|
+
@import "normalize";
|
|
14
|
+
@import "boilerplate";
|
|
15
|
+
|
|
16
|
+
$black: #000;
|
|
17
|
+
$white: #fff;
|
|
18
|
+
$gray: #a29f99;
|
|
19
|
+
$grayLight: tint($gray, 20%);
|
|
20
|
+
$grayLighter: tint($gray, 50%);
|
|
21
|
+
$grayLightest: tint($gray, 90%);
|
|
22
|
+
$grayDark: shade($gray, 20%);
|
|
23
|
+
$grayDarker: shade($gray, 50%);
|
|
24
|
+
$grayDarkest: shade($gray, 80%);
|
|
25
|
+
|
|
26
|
+
// ==|== primary styles =====================================================
|
|
27
|
+
// Author: Lynn Wallenstein
|
|
28
|
+
// =======================================================================
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
// Base
|
|
32
|
+
|
|
33
|
+
html {
|
|
34
|
+
body {
|
|
35
|
+
background: #666;
|
|
36
|
+
header#page-header {
|
|
37
|
+
} //header#page-header
|
|
38
|
+
div#main {
|
|
39
|
+
a#light-switch {
|
|
40
|
+
float: right;
|
|
41
|
+
margin: 20px;
|
|
42
|
+
}
|
|
43
|
+
ul#swatches {
|
|
44
|
+
padding: 100px 0 0 0;
|
|
45
|
+
li.swatch {
|
|
46
|
+
@include border-radius(15px);
|
|
47
|
+
@include box-shadow(2px 2px 2px hsla(0,0,0,.5));
|
|
48
|
+
@include transition(transform .15s linear);
|
|
49
|
+
border-left: 20px solid #fff;
|
|
50
|
+
border-right: 20px solid #000;
|
|
51
|
+
float: left;
|
|
52
|
+
list-style: none;
|
|
53
|
+
height: 100px;
|
|
54
|
+
padding-top: 40px;
|
|
55
|
+
position: relative;
|
|
56
|
+
margin: 20px;
|
|
57
|
+
text-align: center;
|
|
58
|
+
width: 130px;
|
|
59
|
+
z-index: 100;
|
|
60
|
+
&:hover {
|
|
61
|
+
@include transform(scale(2));
|
|
62
|
+
z-index: 9999 !important;
|
|
63
|
+
span.help {
|
|
64
|
+
display: block;
|
|
65
|
+
font-size: 6px;
|
|
66
|
+
opacity: .5;
|
|
67
|
+
padding-top: 5px;
|
|
68
|
+
}
|
|
69
|
+
}
|
|
70
|
+
&:before {
|
|
71
|
+
content: attr(data-hex);
|
|
72
|
+
}
|
|
73
|
+
&.light-switch {
|
|
74
|
+
color: #fff;
|
|
75
|
+
.close {
|
|
76
|
+
color: #fff !important;
|
|
77
|
+
}
|
|
78
|
+
}
|
|
79
|
+
.close {
|
|
80
|
+
@include opacity(20);
|
|
81
|
+
color: #666 !important;
|
|
82
|
+
float: right;
|
|
83
|
+
font-size: 20px;
|
|
84
|
+
font-weight: bold;
|
|
85
|
+
line-height: 18px;
|
|
86
|
+
position: absolute;
|
|
87
|
+
right: 5px;
|
|
88
|
+
text-decoration: none;
|
|
89
|
+
text-shadow: 1px 1px 0 hsla(0,0,0,.9);
|
|
90
|
+
top: 5px;
|
|
91
|
+
&:hover {
|
|
92
|
+
@include opacity(40);
|
|
93
|
+
color: #000;
|
|
94
|
+
cursor: pointer;
|
|
95
|
+
text-decoration: none;
|
|
96
|
+
}
|
|
97
|
+
} // .close
|
|
98
|
+
span.help {
|
|
99
|
+
display: none;
|
|
100
|
+
}
|
|
101
|
+
} // li.swatch
|
|
102
|
+
}
|
|
103
|
+
} // div#main
|
|
104
|
+
footer#page-footer {
|
|
105
|
+
} // footer#page-footer
|
|
106
|
+
} // body
|
|
107
|
+
} // html
|
|
108
|
+
|
|
109
|
+
|
|
110
|
+
|
|
111
|
+
// ------------------------------------------------------------------
|
|
112
|
+
// Mixin for generating button backgrounds
|
|
113
|
+
// ------------------------------------------------------------------
|
|
114
|
+
|
|
115
|
+
@mixin buttonBackground($startColor, $endColor) {
|
|
116
|
+
// gradientBar will set the background to a pleasing blend of these, to support IE<=9
|
|
117
|
+
@include gradientBar($startColor, $endColor);
|
|
118
|
+
@include reset-filter();
|
|
119
|
+
|
|
120
|
+
// in these cases the gradient won't cover the background, so we override
|
|
121
|
+
&:hover, &:active, &.active {
|
|
122
|
+
background-color: $endColor;
|
|
123
|
+
}
|
|
124
|
+
|
|
125
|
+
&.disabled, &[disabled] {
|
|
126
|
+
&:hover {
|
|
127
|
+
@include gradientBar($startColor, $endColor);
|
|
128
|
+
@include reset-filter();
|
|
129
|
+
}
|
|
130
|
+
}
|
|
131
|
+
|
|
132
|
+
// IE 7 + 8 can't handle box-shadow to show active, so we darken a bit ourselves
|
|
133
|
+
&:active,
|
|
134
|
+
&.active {
|
|
135
|
+
background-color: darken($endColor, 10%) #{"\9"};
|
|
136
|
+
@include gradientBar($endColor, $startColor);
|
|
137
|
+
}
|
|
138
|
+
}
|
|
139
|
+
|
|
140
|
+
// ------------------------------------------------------------------
|
|
141
|
+
// Base Styles
|
|
142
|
+
// ------------------------------------------------------------------
|
|
143
|
+
|
|
144
|
+
button, input[type="button"], input[type="submit"], input[type="reset"], .btn {
|
|
145
|
+
display: inline-block;
|
|
146
|
+
padding: 4px 10px 4px;
|
|
147
|
+
font-size: 13px;
|
|
148
|
+
line-height: 18px;
|
|
149
|
+
color: $grayDarker !important;
|
|
150
|
+
text-align: center;
|
|
151
|
+
text-decoration: none !important;
|
|
152
|
+
text-shadow: 0 1px 1px rgba(255,255,255,.75);
|
|
153
|
+
@include gradient-vertical-three-colors($white, $white, 25%, darken($white, 10%)); // Don't use .gradientbar() here since it does a three-color gradient
|
|
154
|
+
border: 1px solid $grayLighter;
|
|
155
|
+
border-bottom-color: $grayLight;
|
|
156
|
+
@include border-radius(4px);
|
|
157
|
+
$shadow: inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);
|
|
158
|
+
@include box-shadow($shadow);
|
|
159
|
+
cursor: pointer;
|
|
160
|
+
|
|
161
|
+
// Give IE7 some love
|
|
162
|
+
@include ie7-restore-left-whitespace();
|
|
163
|
+
|
|
164
|
+
// Hover state
|
|
165
|
+
&:hover {
|
|
166
|
+
@include transition(background-position .1s linear);
|
|
167
|
+
color: $grayDarker;
|
|
168
|
+
text-decoration: none;
|
|
169
|
+
background-color: darken($white, 10%);
|
|
170
|
+
background-position: 0 -15px;
|
|
171
|
+
}
|
|
172
|
+
// transition is only when going to hover, otherwise the background
|
|
173
|
+
// behind the gradient (there for IE<=9 fallback) gets mismatched
|
|
174
|
+
|
|
175
|
+
// Focus state for keyboard and accessibility
|
|
176
|
+
&:focus {
|
|
177
|
+
@include tab-focus();
|
|
178
|
+
}
|
|
179
|
+
|
|
180
|
+
// Active state
|
|
181
|
+
&.active,
|
|
182
|
+
&:active {
|
|
183
|
+
@include transition(background-position .1s linear);
|
|
184
|
+
background-image: none;
|
|
185
|
+
$shadow: inset 0 2px 4px rgba(0,0,0,.45), 0 1px 2px rgba(0,0,0,.05);
|
|
186
|
+
@include box-shadow($shadow);
|
|
187
|
+
background-color: darken($white, 10%);
|
|
188
|
+
color: rgba(0,0,0,.5);
|
|
189
|
+
outline: 0;
|
|
190
|
+
}
|
|
191
|
+
|
|
192
|
+
// Disabled state
|
|
193
|
+
&.disabled,
|
|
194
|
+
&[disabled] {
|
|
195
|
+
cursor: default;
|
|
196
|
+
background-image: none;
|
|
197
|
+
background-color: darken($white, 10%);
|
|
198
|
+
@include opacity(65);
|
|
199
|
+
@include box-shadow(none);
|
|
200
|
+
&:hover {
|
|
201
|
+
@include transition(background-position .1s linear);
|
|
202
|
+
color: $grayDarker;
|
|
203
|
+
text-decoration: none;
|
|
204
|
+
background-color: none;
|
|
205
|
+
background-position: none;
|
|
206
|
+
}
|
|
207
|
+
}
|
|
208
|
+
}
|
|
209
|
+
|
|
210
|
+
|
|
211
|
+
// ==|== media queries ======================================================
|
|
212
|
+
// EXAMPLE Media Query for Responsive Design.
|
|
213
|
+
// This example overrides the primary ('mobile first') styles
|
|
214
|
+
// Modify as content requires.
|
|
215
|
+
// ========================================================================== */
|
|
216
|
+
|
|
217
|
+
@media only screen and (min-width: 35em) {
|
|
218
|
+
// Style adjustments for viewports that meet the condition */
|
|
219
|
+
}
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
<!doctype html>
|
|
2
|
+
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7" lang="en"> <![endif]-->
|
|
3
|
+
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8" lang="en"> <![endif]-->
|
|
4
|
+
<!--[if IE 8]> <html class="no-js lt-ie9" lang="en"> <![endif]-->
|
|
5
|
+
<!--[if gt IE 8]><!--> <html class="no-js" lang="en"> <!--<![endif]-->
|
|
6
|
+
<head>
|
|
7
|
+
<meta charset="utf-8">
|
|
8
|
+
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
|
|
9
|
+
<title>Color Sleuth</title>
|
|
10
|
+
<meta name="description" content="">
|
|
11
|
+
<meta name="viewport" content="width=device-width">
|
|
12
|
+
<link rel="stylesheet" href="css/style.css">
|
|
13
|
+
<script src="js/libs/modernizr-2.5.3.min.js"></script>
|
|
14
|
+
</head>
|
|
15
|
+
<body>
|
|
16
|
+
<!--[if lt IE 7]><p class=chromeframe>Your browser is <em>ancient!</em> <a href="http://browsehappy.com/">Upgrade to a different browser</a> or <a href="http://www.google.com/chromeframe/?redirect=true">install Google Chrome Frame</a> to experience this site.</p><![endif]-->
|
|
17
|
+
<header>
|
|
18
|
+
|
|
19
|
+
</header>
|
|
20
|
+
<div id="main" role="main">
|
|
21
|
+
|
|
22
|
+
<a class='btn' id="light-switch">Toggle Text Color</a>
|
|
23
|
+
<ul id="swatches">
|
|
24
|
+
<%= colors %>
|
|
25
|
+
</ul>
|
|
26
|
+
</div>
|
|
27
|
+
<footer>
|
|
28
|
+
|
|
29
|
+
</footer>
|
|
30
|
+
|
|
31
|
+
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
|
|
32
|
+
<script src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.18/jquery-ui.min.js"></script>
|
|
33
|
+
<script src="js/plugins.js"></script>
|
|
34
|
+
<script src="js/script.js"></script>
|
|
35
|
+
|
|
36
|
+
|
|
37
|
+
<script>
|
|
38
|
+
var _gaq=[['_setAccount','UA-30291020-1'],['_trackPageview']];
|
|
39
|
+
(function(d,t){var g=d.createElement(t),s=d.getElementsByTagName(t)[0];
|
|
40
|
+
g.src="http://www.google-analytics.com/ga.js";
|
|
41
|
+
s.parentNode.insertBefore(g,s)}(document,'script'));
|
|
42
|
+
</script>
|
|
43
|
+
</body>
|
|
44
|
+
</html>
|
metadata
ADDED
|
@@ -0,0 +1,124 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: app_sleuth
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 0.0.1.pre
|
|
5
|
+
prerelease: 6
|
|
6
|
+
platform: ruby
|
|
7
|
+
authors:
|
|
8
|
+
- Dan Ahern
|
|
9
|
+
- Lynn Wallenstein
|
|
10
|
+
autorequire:
|
|
11
|
+
bindir: bin
|
|
12
|
+
cert_chain: []
|
|
13
|
+
date: 2012-03-28 00:00:00.000000000 Z
|
|
14
|
+
dependencies:
|
|
15
|
+
- !ruby/object:Gem::Dependency
|
|
16
|
+
name: sinatra
|
|
17
|
+
requirement: !ruby/object:Gem::Requirement
|
|
18
|
+
none: false
|
|
19
|
+
requirements:
|
|
20
|
+
- - ! '>='
|
|
21
|
+
- !ruby/object:Gem::Version
|
|
22
|
+
version: '0'
|
|
23
|
+
type: :runtime
|
|
24
|
+
prerelease: false
|
|
25
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
26
|
+
none: false
|
|
27
|
+
requirements:
|
|
28
|
+
- - ! '>='
|
|
29
|
+
- !ruby/object:Gem::Version
|
|
30
|
+
version: '0'
|
|
31
|
+
description: Generates color, font, image information about your project
|
|
32
|
+
email:
|
|
33
|
+
- danahern@gmail.com
|
|
34
|
+
- lwallenstein@gmail.com
|
|
35
|
+
executables:
|
|
36
|
+
- app_sleuth
|
|
37
|
+
extensions: []
|
|
38
|
+
extra_rdoc_files: []
|
|
39
|
+
files:
|
|
40
|
+
- .gitignore
|
|
41
|
+
- Gemfile
|
|
42
|
+
- LICENSE
|
|
43
|
+
- README.md
|
|
44
|
+
- Rakefile
|
|
45
|
+
- app_sleuth.gemspec
|
|
46
|
+
- bin/app_sleuth
|
|
47
|
+
- config.ru
|
|
48
|
+
- lib/app_sleuth.rb
|
|
49
|
+
- lib/app_sleuth/colors.rb
|
|
50
|
+
- lib/app_sleuth/fonts.rb
|
|
51
|
+
- lib/app_sleuth/server.rb
|
|
52
|
+
- lib/app_sleuth/server/assets/css/style.css
|
|
53
|
+
- lib/app_sleuth/server/assets/js/libs/jquery-1.7.1.js
|
|
54
|
+
- lib/app_sleuth/server/assets/js/libs/jquery-1.7.1.min.js
|
|
55
|
+
- lib/app_sleuth/server/assets/js/libs/modernizr-2.5.3.min.js
|
|
56
|
+
- lib/app_sleuth/server/assets/js/plugins.js
|
|
57
|
+
- lib/app_sleuth/server/assets/js/script.js
|
|
58
|
+
- lib/app_sleuth/server/assets/sass/_boilerplate.scss
|
|
59
|
+
- lib/app_sleuth/server/assets/sass/_marcotte-grid.scss
|
|
60
|
+
- lib/app_sleuth/server/assets/sass/_normalize.scss
|
|
61
|
+
- lib/app_sleuth/server/assets/sass/_print.scss
|
|
62
|
+
- lib/app_sleuth/server/assets/sass/mixins/_mixins.scss
|
|
63
|
+
- lib/app_sleuth/server/assets/sass/mixins/addons/_button.scss
|
|
64
|
+
- lib/app_sleuth/server/assets/sass/mixins/addons/_font-family.scss
|
|
65
|
+
- lib/app_sleuth/server/assets/sass/mixins/addons/_html5-input-types.scss
|
|
66
|
+
- lib/app_sleuth/server/assets/sass/mixins/addons/_non-semantic-helpers.scss
|
|
67
|
+
- lib/app_sleuth/server/assets/sass/mixins/addons/_position.scss
|
|
68
|
+
- lib/app_sleuth/server/assets/sass/mixins/addons/_timing-functions.scss
|
|
69
|
+
- lib/app_sleuth/server/assets/sass/mixins/css3/_animation.scss
|
|
70
|
+
- lib/app_sleuth/server/assets/sass/mixins/css3/_appearance.scss
|
|
71
|
+
- lib/app_sleuth/server/assets/sass/mixins/css3/_background-clip.scss
|
|
72
|
+
- lib/app_sleuth/server/assets/sass/mixins/css3/_background-image.scss
|
|
73
|
+
- lib/app_sleuth/server/assets/sass/mixins/css3/_background-origin.scss
|
|
74
|
+
- lib/app_sleuth/server/assets/sass/mixins/css3/_background-size.scss
|
|
75
|
+
- lib/app_sleuth/server/assets/sass/mixins/css3/_border-image.scss
|
|
76
|
+
- lib/app_sleuth/server/assets/sass/mixins/css3/_border-radius.scss
|
|
77
|
+
- lib/app_sleuth/server/assets/sass/mixins/css3/_box-shadow.scss
|
|
78
|
+
- lib/app_sleuth/server/assets/sass/mixins/css3/_box-sizing.scss
|
|
79
|
+
- lib/app_sleuth/server/assets/sass/mixins/css3/_columns.scss
|
|
80
|
+
- lib/app_sleuth/server/assets/sass/mixins/css3/_flex-box.scss
|
|
81
|
+
- lib/app_sleuth/server/assets/sass/mixins/css3/_font-smoothing.scss
|
|
82
|
+
- lib/app_sleuth/server/assets/sass/mixins/css3/_inline-block.scss
|
|
83
|
+
- lib/app_sleuth/server/assets/sass/mixins/css3/_linear-gradient.scss
|
|
84
|
+
- lib/app_sleuth/server/assets/sass/mixins/css3/_radial-gradient.scss
|
|
85
|
+
- lib/app_sleuth/server/assets/sass/mixins/css3/_transform.scss
|
|
86
|
+
- lib/app_sleuth/server/assets/sass/mixins/css3/_transition.scss
|
|
87
|
+
- lib/app_sleuth/server/assets/sass/mixins/functions/_deprecated-webkit-gradient.scss
|
|
88
|
+
- lib/app_sleuth/server/assets/sass/mixins/functions/_linear-gradient.scss
|
|
89
|
+
- lib/app_sleuth/server/assets/sass/mixins/functions/_modular-scale.scss
|
|
90
|
+
- lib/app_sleuth/server/assets/sass/mixins/functions/_radial-gradient.scss
|
|
91
|
+
- lib/app_sleuth/server/assets/sass/mixins/functions/_render-gradients.scss
|
|
92
|
+
- lib/app_sleuth/server/assets/sass/mixins/functions/_tint-shade.scss
|
|
93
|
+
- lib/app_sleuth/server/assets/sass/mixins/hacks/_ie.scss
|
|
94
|
+
- lib/app_sleuth/server/assets/sass/style.scss
|
|
95
|
+
- lib/app_sleuth/server/views/colors.html.erb
|
|
96
|
+
- lib/app_sleuth/version.rb
|
|
97
|
+
homepage: https://github.com/danahern/app_sleuth
|
|
98
|
+
licenses: []
|
|
99
|
+
post_install_message:
|
|
100
|
+
rdoc_options: []
|
|
101
|
+
require_paths:
|
|
102
|
+
- lib
|
|
103
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
104
|
+
none: false
|
|
105
|
+
requirements:
|
|
106
|
+
- - ! '>='
|
|
107
|
+
- !ruby/object:Gem::Version
|
|
108
|
+
version: '0'
|
|
109
|
+
segments:
|
|
110
|
+
- 0
|
|
111
|
+
hash: -2537352471087112450
|
|
112
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
113
|
+
none: false
|
|
114
|
+
requirements:
|
|
115
|
+
- - ! '>'
|
|
116
|
+
- !ruby/object:Gem::Version
|
|
117
|
+
version: 1.3.1
|
|
118
|
+
requirements: []
|
|
119
|
+
rubyforge_project:
|
|
120
|
+
rubygems_version: 1.8.19
|
|
121
|
+
signing_key:
|
|
122
|
+
specification_version: 3
|
|
123
|
+
summary: Generate Design Info about Project
|
|
124
|
+
test_files: []
|