iruby 0.1.13 → 0.2.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,40 +0,0 @@
1
- /* Placeholder for custom CSS */
2
- /*color: #800000;*/
3
- /*color: #c61a1a;*/
4
- /*color: #e85353;*/
5
-
6
- a {
7
- color: #800000;
8
- }
9
-
10
- a:hover {
11
- color: #000;
12
- }
13
-
14
- a tt {
15
- color: #800000;
16
- }
17
-
18
- a tt:hover {
19
- color: #000;
20
- }
21
-
22
- div.related ul li a {
23
- color: #800000;
24
- }
25
-
26
- div.related ul li a:hover {
27
- color: #000;
28
- }
29
-
30
- h1 {
31
- color: #800000;
32
- }
33
-
34
- div.footer a {
35
- color: #800000;
36
- }
37
-
38
- div.footer a:hover {
39
- color: #000;
40
- }
@@ -1,15 +0,0 @@
1
- $([IPython.events]).on('notebook_loaded.Notebook', function(){
2
- // add here logic that should be run once per **notebook load**
3
- IPython.notebook.metadata.language = 'ruby' ;
4
- });
5
-
6
- $([IPython.events]).on('app_initialized.NotebookApp', function(){
7
- // add here logic that shoudl be run once per **page load**
8
- CodeMirror.requireMode('ruby', function(){
9
- console.log('Ruby mode should now be available in codemirror.');
10
- })
11
- IPython.CodeCell.options_default['cm_config']['mode'] = 'ruby';
12
- IPython.CodeCell.options_default['cm_config']['indentUnit'] = 2;
13
- });
14
-
15
- document.title = document.title.replace('IPython', 'IRuby');