mars-nesta 0.9.5 → 0.9.6
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/Gemfile.lock +2 -2
- data/lib/nesta/version.rb +1 -1
- data/views/coderay.scss +37 -0
- data/views/master.sass +4 -3
- metadata +2 -1
data/Gemfile.lock
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
PATH
|
|
2
2
|
remote: .
|
|
3
3
|
specs:
|
|
4
|
-
mars-nesta (0.9.
|
|
4
|
+
mars-nesta (0.9.6)
|
|
5
5
|
RedCloth (~> 4.2)
|
|
6
6
|
coderay (>= 0.9.7)
|
|
7
7
|
haml (~> 3.0)
|
|
@@ -22,7 +22,7 @@ GEM
|
|
|
22
22
|
rack-test (0.5.7)
|
|
23
23
|
rack (>= 1.0)
|
|
24
24
|
rake (0.8.7)
|
|
25
|
-
redcarpet (1.11.
|
|
25
|
+
redcarpet (1.11.4)
|
|
26
26
|
rspec (1.3.0)
|
|
27
27
|
rspec_hpricot_matchers (1.0)
|
|
28
28
|
shotgun (0.9)
|
data/lib/nesta/version.rb
CHANGED
data/views/coderay.scss
ADDED
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
.CodeRay {
|
|
2
|
+
background-color: #232323;
|
|
3
|
+
border: 1px solid black;
|
|
4
|
+
font-family: 'Courier New', 'Terminal', monospace;
|
|
5
|
+
color: #E6E0DB;
|
|
6
|
+
padding: 3px 5px;
|
|
7
|
+
overflow: auto;
|
|
8
|
+
font-size: 12px;
|
|
9
|
+
margin: 12px 0;
|
|
10
|
+
}
|
|
11
|
+
.CodeRay pre {
|
|
12
|
+
background-color: #232323;
|
|
13
|
+
font-family: 'Courier New', 'Terminal', monospace;
|
|
14
|
+
color: #E6E0DB;
|
|
15
|
+
margin: 0px;
|
|
16
|
+
padding: 0px;
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
.CodeRay .an { color:#E7BE69 } /* html attribute */
|
|
20
|
+
.CodeRay .c { color:#BC9358; font-style: italic; } /* comment */
|
|
21
|
+
.CodeRay .ch { color:#509E4F } /* escaped character */
|
|
22
|
+
.CodeRay .cl { color:#FFF } /* class */
|
|
23
|
+
.CodeRay .co { color:#FFF } /* constant */
|
|
24
|
+
.CodeRay .fl { color:#A4C260 } /* float */
|
|
25
|
+
.CodeRay .fu { color:#FFC56D } /* function */
|
|
26
|
+
.CodeRay .gv { color:#D0CFFE } /* global variable */
|
|
27
|
+
.CodeRay .i { color:#A4C260 } /* integer */
|
|
28
|
+
.CodeRay .il { background:#151515 } /* inline code */
|
|
29
|
+
.CodeRay .iv { color:#D0CFFE } /* instance variable */
|
|
30
|
+
.CodeRay .pp { color:#E7BE69 } /* doctype */
|
|
31
|
+
.CodeRay .r { color:#CB7832 } /* keyword */
|
|
32
|
+
.CodeRay .rx { color:#A4C260 } /* regex */
|
|
33
|
+
.CodeRay .s { color:#A4C260 } /* string */
|
|
34
|
+
.CodeRay .sy { color:#6C9CBD } /* symbol */
|
|
35
|
+
.CodeRay .ta { color:#E7BE69 } /* html tag */
|
|
36
|
+
.CodeRay .pc { color:#6C9CBD } /* boolean */
|
|
37
|
+
|
data/views/master.sass
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
@import "mixins.sass"
|
|
2
2
|
@import "colors.sass"
|
|
3
3
|
|
|
4
|
+
|
|
4
5
|
// Variables
|
|
5
6
|
|
|
6
7
|
$content-width: 37em
|
|
@@ -173,11 +174,9 @@ article
|
|
|
173
174
|
max-width: 100%
|
|
174
175
|
margin-bottom: $base-vertical-margin
|
|
175
176
|
|
|
176
|
-
code,
|
|
177
177
|
pre
|
|
178
178
|
background-color: $tint
|
|
179
|
-
|
|
180
|
-
padding: 1px 3px
|
|
179
|
+
|
|
181
180
|
pre
|
|
182
181
|
border-left: $border-style
|
|
183
182
|
background-color: $tint
|
|
@@ -244,3 +243,5 @@ nav.categories
|
|
|
244
243
|
|
|
245
244
|
div.feed
|
|
246
245
|
margin: $base-vertical-margin 0
|
|
246
|
+
|
|
247
|
+
@import "coderay.scss"
|
metadata
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
name: mars-nesta
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
4
|
prerelease:
|
|
5
|
-
version: 0.9.
|
|
5
|
+
version: 0.9.6
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
8
8
|
- Graham Ashton
|
|
@@ -203,6 +203,7 @@ files:
|
|
|
203
203
|
- views/analytics.haml
|
|
204
204
|
- views/atom.haml
|
|
205
205
|
- views/categories.haml
|
|
206
|
+
- views/coderay.scss
|
|
206
207
|
- views/colors.sass
|
|
207
208
|
- views/comments.haml
|
|
208
209
|
- views/error.haml
|