gump 0.1.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.
- checksums.yaml +7 -0
- data/.gitignore +24 -0
- data/Gemfile +4 -0
- data/LICENSE.txt +22 -0
- data/README.md +71 -0
- data/Rakefile +2 -0
- data/bin/gump +37 -0
- data/gump.gemspec +17 -0
- data/lib/gump.rb +50 -0
- data/lib/version.rb +3 -0
- data/server/assets/css/style.css +6949 -0
- data/server/assets/images/arrow.png +0 -0
- data/server/assets/images/logo.png +0 -0
- data/server/assets/js/bootstrap/dist/css/bootstrap-theme.css +347 -0
- data/server/assets/js/bootstrap/dist/css/bootstrap-theme.css.map +1 -0
- data/server/assets/js/bootstrap/dist/css/bootstrap-theme.min.css +7 -0
- data/server/assets/js/bootstrap/dist/css/bootstrap.css +5785 -0
- data/server/assets/js/bootstrap/dist/css/bootstrap.css.map +1 -0
- data/server/assets/js/bootstrap/dist/css/bootstrap.min.css +7 -0
- data/server/assets/js/bootstrap/dist/fonts/glyphicons-halflings-regular.eot +0 -0
- data/server/assets/js/bootstrap/dist/fonts/glyphicons-halflings-regular.svg +229 -0
- data/server/assets/js/bootstrap/dist/fonts/glyphicons-halflings-regular.ttf +0 -0
- data/server/assets/js/bootstrap/dist/fonts/glyphicons-halflings-regular.woff +0 -0
- data/server/assets/js/bootstrap/dist/js/bootstrap.js +1951 -0
- data/server/assets/js/bootstrap/dist/js/bootstrap.min.js +6 -0
- data/server/assets/js/jquery.codemirror/.gitattributes +8 -0
- data/server/assets/js/jquery.codemirror/.gitignore +6 -0
- data/server/assets/js/jquery.codemirror/.travis.yml +3 -0
- data/server/assets/js/jquery.codemirror/AUTHORS +255 -0
- data/server/assets/js/jquery.codemirror/CONTRIBUTING.md +72 -0
- data/server/assets/js/jquery.codemirror/LICENSE +19 -0
- data/server/assets/js/jquery.codemirror/README.md +11 -0
- data/server/assets/js/jquery.codemirror/addon/comment/comment.js +145 -0
- data/server/assets/js/jquery.codemirror/addon/comment/continuecomment.js +54 -0
- data/server/assets/js/jquery.codemirror/addon/dialog/dialog.css +32 -0
- data/server/assets/js/jquery.codemirror/addon/dialog/dialog.js +121 -0
- data/server/assets/js/jquery.codemirror/addon/display/fullscreen.css +6 -0
- data/server/assets/js/jquery.codemirror/addon/display/fullscreen.js +31 -0
- data/server/assets/js/jquery.codemirror/addon/display/placeholder.js +48 -0
- data/server/assets/js/jquery.codemirror/addon/edit/closebrackets.js +82 -0
- data/server/assets/js/jquery.codemirror/addon/edit/closetag.js +89 -0
- data/server/assets/js/jquery.codemirror/addon/edit/continuelist.js +25 -0
- data/server/assets/js/jquery.codemirror/addon/edit/matchbrackets.js +87 -0
- data/server/assets/js/jquery.codemirror/addon/edit/matchtags.js +56 -0
- data/server/assets/js/jquery.codemirror/addon/edit/trailingspace.js +15 -0
- data/server/assets/js/jquery.codemirror/addon/fold/brace-fold.js +93 -0
- data/server/assets/js/jquery.codemirror/addon/fold/comment-fold.js +40 -0
- data/server/assets/js/jquery.codemirror/addon/fold/foldcode.js +75 -0
- data/server/assets/js/jquery.codemirror/addon/fold/foldgutter.css +21 -0
- data/server/assets/js/jquery.codemirror/addon/fold/foldgutter.js +124 -0
- data/server/assets/js/jquery.codemirror/addon/fold/indent-fold.js +30 -0
- data/server/assets/js/jquery.codemirror/addon/fold/xml-fold.js +167 -0
- data/server/assets/js/jquery.codemirror/addon/hint/anyword-hint.js +34 -0
- data/server/assets/js/jquery.codemirror/addon/hint/css-hint.js +50 -0
- data/server/assets/js/jquery.codemirror/addon/hint/html-hint.js +337 -0
- data/server/assets/js/jquery.codemirror/addon/hint/javascript-hint.js +131 -0
- data/server/assets/js/jquery.codemirror/addon/hint/pig-hint.js +121 -0
- data/server/assets/js/jquery.codemirror/addon/hint/python-hint.js +95 -0
- data/server/assets/js/jquery.codemirror/addon/hint/show-hint.css +38 -0
- data/server/assets/js/jquery.codemirror/addon/hint/show-hint.js +286 -0
- data/server/assets/js/jquery.codemirror/addon/hint/sql-hint.js +105 -0
- data/server/assets/js/jquery.codemirror/addon/hint/xml-hint.js +69 -0
- data/server/assets/js/jquery.codemirror/addon/lint/coffeescript-lint.js +27 -0
- data/server/assets/js/jquery.codemirror/addon/lint/css-lint.js +19 -0
- data/server/assets/js/jquery.codemirror/addon/lint/javascript-lint.js +126 -0
- data/server/assets/js/jquery.codemirror/addon/lint/json-lint.js +17 -0
- data/server/assets/js/jquery.codemirror/addon/lint/lint.css +73 -0
- data/server/assets/js/jquery.codemirror/addon/lint/lint.js +203 -0
- data/server/assets/js/jquery.codemirror/addon/merge/dep/diff_match_patch.js +50 -0
- data/server/assets/js/jquery.codemirror/addon/merge/merge.css +92 -0
- data/server/assets/js/jquery.codemirror/addon/merge/merge.js +474 -0
- data/server/assets/js/jquery.codemirror/addon/mode/loadmode.js +51 -0
- data/server/assets/js/jquery.codemirror/addon/mode/multiplex.js +101 -0
- data/server/assets/js/jquery.codemirror/addon/mode/multiplex_test.js +30 -0
- data/server/assets/js/jquery.codemirror/addon/mode/overlay.js +59 -0
- data/server/assets/js/jquery.codemirror/addon/runmode/colorize.js +29 -0
- data/server/assets/js/jquery.codemirror/addon/runmode/runmode-standalone.js +136 -0
- data/server/assets/js/jquery.codemirror/addon/runmode/runmode.js +56 -0
- data/server/assets/js/jquery.codemirror/addon/runmode/runmode.node.js +103 -0
- data/server/assets/js/jquery.codemirror/addon/scroll/scrollpastend.js +34 -0
- data/server/assets/js/jquery.codemirror/addon/search/match-highlighter.js +91 -0
- data/server/assets/js/jquery.codemirror/addon/search/search.js +133 -0
- data/server/assets/js/jquery.codemirror/addon/search/searchcursor.js +143 -0
- data/server/assets/js/jquery.codemirror/addon/selection/active-line.js +39 -0
- data/server/assets/js/jquery.codemirror/addon/selection/mark-selection.js +108 -0
- data/server/assets/js/jquery.codemirror/addon/tern/tern.css +85 -0
- data/server/assets/js/jquery.codemirror/addon/tern/tern.js +632 -0
- data/server/assets/js/jquery.codemirror/addon/tern/worker.js +41 -0
- data/server/assets/js/jquery.codemirror/addon/wrap/hardwrap.js +99 -0
- data/server/assets/js/jquery.codemirror/bin/authors.sh +6 -0
- data/server/assets/js/jquery.codemirror/bin/compress +92 -0
- data/server/assets/js/jquery.codemirror/bin/lint +16 -0
- data/server/assets/js/jquery.codemirror/bin/source-highlight +61 -0
- data/server/assets/js/jquery.codemirror/bower.json +15 -0
- data/server/assets/js/jquery.codemirror/demo/activeline.html +78 -0
- data/server/assets/js/jquery.codemirror/demo/anywordhint.html +79 -0
- data/server/assets/js/jquery.codemirror/demo/bidi.html +74 -0
- data/server/assets/js/jquery.codemirror/demo/btree.html +86 -0
- data/server/assets/js/jquery.codemirror/demo/buffers.html +109 -0
- data/server/assets/js/jquery.codemirror/demo/changemode.html +59 -0
- data/server/assets/js/jquery.codemirror/demo/closebrackets.html +63 -0
- data/server/assets/js/jquery.codemirror/demo/closetag.html +40 -0
- data/server/assets/js/jquery.codemirror/demo/complete.html +80 -0
- data/server/assets/js/jquery.codemirror/demo/emacs.html +75 -0
- data/server/assets/js/jquery.codemirror/demo/folding.html +75 -0
- data/server/assets/js/jquery.codemirror/demo/fullscreen.html +130 -0
- data/server/assets/js/jquery.codemirror/demo/hardwrap.html +69 -0
- data/server/assets/js/jquery.codemirror/demo/html5complete.html +54 -0
- data/server/assets/js/jquery.codemirror/demo/indentwrap.html +58 -0
- data/server/assets/js/jquery.codemirror/demo/lint.html +171 -0
- data/server/assets/js/jquery.codemirror/demo/loadmode.html +49 -0
- data/server/assets/js/jquery.codemirror/demo/marker.html +52 -0
- data/server/assets/js/jquery.codemirror/demo/markselection.html +45 -0
- data/server/assets/js/jquery.codemirror/demo/matchhighlighter.html +47 -0
- data/server/assets/js/jquery.codemirror/demo/matchtags.html +49 -0
- data/server/assets/js/jquery.codemirror/demo/merge.html +82 -0
- data/server/assets/js/jquery.codemirror/demo/multiplex.html +75 -0
- data/server/assets/js/jquery.codemirror/demo/mustache.html +68 -0
- data/server/assets/js/jquery.codemirror/demo/placeholder.html +45 -0
- data/server/assets/js/jquery.codemirror/demo/preview.html +88 -0
- data/server/assets/js/jquery.codemirror/demo/resize.html +58 -0
- data/server/assets/js/jquery.codemirror/demo/runmode.html +62 -0
- data/server/assets/js/jquery.codemirror/demo/search.html +94 -0
- data/server/assets/js/jquery.codemirror/demo/spanaffectswrapping_shim.html +85 -0
- data/server/assets/js/jquery.codemirror/demo/tern.html +129 -0
- data/server/assets/js/jquery.codemirror/demo/theme.html +121 -0
- data/server/assets/js/jquery.codemirror/demo/trailingspace.html +48 -0
- data/server/assets/js/jquery.codemirror/demo/variableheight.html +67 -0
- data/server/assets/js/jquery.codemirror/demo/vim.html +74 -0
- data/server/assets/js/jquery.codemirror/demo/visibletabs.html +62 -0
- data/server/assets/js/jquery.codemirror/demo/widget.html +85 -0
- data/server/assets/js/jquery.codemirror/demo/xmlcomplete.html +116 -0
- data/server/assets/js/jquery.codemirror/index.html +192 -0
- data/server/assets/js/jquery.codemirror/keymap/emacs.js +387 -0
- data/server/assets/js/jquery.codemirror/keymap/extra.js +43 -0
- data/server/assets/js/jquery.codemirror/keymap/vim.js +3703 -0
- data/server/assets/js/jquery.codemirror/lib/codemirror.css +263 -0
- data/server/assets/js/jquery.codemirror/lib/codemirror.js +5944 -0
- data/server/assets/js/jquery.codemirror/mode/apl/apl.js +160 -0
- data/server/assets/js/jquery.codemirror/mode/apl/index.html +72 -0
- data/server/assets/js/jquery.codemirror/mode/asterisk/asterisk.js +183 -0
- data/server/assets/js/jquery.codemirror/mode/asterisk/index.html +154 -0
- data/server/assets/js/jquery.codemirror/mode/clike/clike.js +362 -0
- data/server/assets/js/jquery.codemirror/mode/clike/index.html +195 -0
- data/server/assets/js/jquery.codemirror/mode/clike/scala.html +767 -0
- data/server/assets/js/jquery.codemirror/mode/clojure/clojure.js +224 -0
- data/server/assets/js/jquery.codemirror/mode/clojure/index.html +88 -0
- data/server/assets/js/jquery.codemirror/mode/cobol/cobol.js +240 -0
- data/server/assets/js/jquery.codemirror/mode/cobol/index.html +210 -0
- data/server/assets/js/jquery.codemirror/mode/coffeescript/coffeescript.js +354 -0
- data/server/assets/js/jquery.codemirror/mode/coffeescript/index.html +740 -0
- data/server/assets/js/jquery.codemirror/mode/commonlisp/commonlisp.js +105 -0
- data/server/assets/js/jquery.codemirror/mode/commonlisp/index.html +177 -0
- data/server/assets/js/jquery.codemirror/mode/css/css.js +639 -0
- data/server/assets/js/jquery.codemirror/mode/css/index.html +70 -0
- data/server/assets/js/jquery.codemirror/mode/css/scss.html +157 -0
- data/server/assets/js/jquery.codemirror/mode/css/scss_test.js +93 -0
- data/server/assets/js/jquery.codemirror/mode/css/test.js +142 -0
- data/server/assets/js/jquery.codemirror/mode/d/d.js +205 -0
- data/server/assets/js/jquery.codemirror/mode/d/index.html +273 -0
- data/server/assets/js/jquery.codemirror/mode/diff/diff.js +32 -0
- data/server/assets/js/jquery.codemirror/mode/diff/index.html +117 -0
- data/server/assets/js/jquery.codemirror/mode/dtd/dtd.js +127 -0
- data/server/assets/js/jquery.codemirror/mode/dtd/index.html +89 -0
- data/server/assets/js/jquery.codemirror/mode/ecl/ecl.js +192 -0
- data/server/assets/js/jquery.codemirror/mode/ecl/index.html +52 -0
- data/server/assets/js/jquery.codemirror/mode/eiffel/eiffel.js +147 -0
- data/server/assets/js/jquery.codemirror/mode/eiffel/index.html +430 -0
- data/server/assets/js/jquery.codemirror/mode/erlang/erlang.js +484 -0
- data/server/assets/js/jquery.codemirror/mode/erlang/index.html +75 -0
- data/server/assets/js/jquery.codemirror/mode/fortran/fortran.js +173 -0
- data/server/assets/js/jquery.codemirror/mode/fortran/index.html +81 -0
- data/server/assets/js/jquery.codemirror/mode/gas/gas.js +330 -0
- data/server/assets/js/jquery.codemirror/mode/gas/index.html +68 -0
- data/server/assets/js/jquery.codemirror/mode/gfm/gfm.js +97 -0
- data/server/assets/js/jquery.codemirror/mode/gfm/index.html +82 -0
- data/server/assets/js/jquery.codemirror/mode/gfm/test.js +112 -0
- data/server/assets/js/jquery.codemirror/mode/gherkin/gherkin.js +168 -0
- data/server/assets/js/jquery.codemirror/mode/gherkin/index.html +48 -0
- data/server/assets/js/jquery.codemirror/mode/go/go.js +168 -0
- data/server/assets/js/jquery.codemirror/mode/go/index.html +85 -0
- data/server/assets/js/jquery.codemirror/mode/groovy/groovy.js +211 -0
- data/server/assets/js/jquery.codemirror/mode/groovy/index.html +84 -0
- data/server/assets/js/jquery.codemirror/mode/haml/haml.js +153 -0
- data/server/assets/js/jquery.codemirror/mode/haml/index.html +79 -0
- data/server/assets/js/jquery.codemirror/mode/haml/test.js +94 -0
- data/server/assets/js/jquery.codemirror/mode/haskell/haskell.js +250 -0
- data/server/assets/js/jquery.codemirror/mode/haskell/index.html +73 -0
- data/server/assets/js/jquery.codemirror/mode/haxe/haxe.js +429 -0
- data/server/assets/js/jquery.codemirror/mode/haxe/index.html +103 -0
- data/server/assets/js/jquery.codemirror/mode/htmlembedded/htmlembedded.js +73 -0
- data/server/assets/js/jquery.codemirror/mode/htmlembedded/index.html +60 -0
- data/server/assets/js/jquery.codemirror/mode/htmlmixed/htmlmixed.js +104 -0
- data/server/assets/js/jquery.codemirror/mode/htmlmixed/index.html +85 -0
- data/server/assets/js/jquery.codemirror/mode/http/http.js +98 -0
- data/server/assets/js/jquery.codemirror/mode/http/index.html +45 -0
- data/server/assets/js/jquery.codemirror/mode/index.html +114 -0
- data/server/assets/js/jquery.codemirror/mode/jade/index.html +66 -0
- data/server/assets/js/jquery.codemirror/mode/jade/jade.js +90 -0
- data/server/assets/js/jquery.codemirror/mode/javascript/index.html +107 -0
- data/server/assets/js/jquery.codemirror/mode/javascript/javascript.js +617 -0
- data/server/assets/js/jquery.codemirror/mode/javascript/test.js +72 -0
- data/server/assets/js/jquery.codemirror/mode/javascript/typescript.html +61 -0
- data/server/assets/js/jquery.codemirror/mode/jinja2/index.html +50 -0
- data/server/assets/js/jquery.codemirror/mode/jinja2/jinja2.js +42 -0
- data/server/assets/js/jquery.codemirror/mode/julia/index.html +187 -0
- data/server/assets/js/jquery.codemirror/mode/julia/julia.js +262 -0
- data/server/assets/js/jquery.codemirror/mode/less/index.html +753 -0
- data/server/assets/js/jquery.codemirror/mode/less/less.js +346 -0
- data/server/assets/js/jquery.codemirror/mode/livescript/index.html +459 -0
- data/server/assets/js/jquery.codemirror/mode/livescript/livescript.js +267 -0
- data/server/assets/js/jquery.codemirror/mode/livescript/livescript.ls +266 -0
- data/server/assets/js/jquery.codemirror/mode/lua/index.html +86 -0
- data/server/assets/js/jquery.codemirror/mode/lua/lua.js +144 -0
- data/server/assets/js/jquery.codemirror/mode/markdown/index.html +359 -0
- data/server/assets/js/jquery.codemirror/mode/markdown/markdown.js +560 -0
- data/server/assets/js/jquery.codemirror/mode/markdown/test.js +664 -0
- data/server/assets/js/jquery.codemirror/mode/meta.js +91 -0
- data/server/assets/js/jquery.codemirror/mode/mirc/index.html +161 -0
- data/server/assets/js/jquery.codemirror/mode/mirc/mirc.js +177 -0
- data/server/assets/js/jquery.codemirror/mode/nginx/index.html +181 -0
- data/server/assets/js/jquery.codemirror/mode/nginx/nginx.js +163 -0
- data/server/assets/js/jquery.codemirror/mode/ntriples/index.html +45 -0
- data/server/assets/js/jquery.codemirror/mode/ntriples/ntriples.js +170 -0
- data/server/assets/js/jquery.codemirror/mode/ocaml/index.html +146 -0
- data/server/assets/js/jquery.codemirror/mode/ocaml/ocaml.js +116 -0
- data/server/assets/js/jquery.codemirror/mode/octave/index.html +95 -0
- data/server/assets/js/jquery.codemirror/mode/octave/octave.js +118 -0
- data/server/assets/js/jquery.codemirror/mode/pascal/index.html +61 -0
- data/server/assets/js/jquery.codemirror/mode/pascal/pascal.js +94 -0
- data/server/assets/js/jquery.codemirror/mode/pegjs/index.html +66 -0
- data/server/assets/js/jquery.codemirror/mode/pegjs/pegjs.js +103 -0
- data/server/assets/js/jquery.codemirror/mode/perl/index.html +75 -0
- data/server/assets/js/jquery.codemirror/mode/perl/perl.js +816 -0
- data/server/assets/js/jquery.codemirror/mode/php/index.html +62 -0
- data/server/assets/js/jquery.codemirror/mode/php/php.js +132 -0
- data/server/assets/js/jquery.codemirror/mode/pig/index.html +55 -0
- data/server/assets/js/jquery.codemirror/mode/pig/pig.js +171 -0
- data/server/assets/js/jquery.codemirror/mode/properties/index.html +53 -0
- data/server/assets/js/jquery.codemirror/mode/properties/properties.js +63 -0
- data/server/assets/js/jquery.codemirror/mode/python/index.html +187 -0
- data/server/assets/js/jquery.codemirror/mode/python/python.js +368 -0
- data/server/assets/js/jquery.codemirror/mode/q/index.html +144 -0
- data/server/assets/js/jquery.codemirror/mode/q/q.js +124 -0
- data/server/assets/js/jquery.codemirror/mode/r/index.html +86 -0
- data/server/assets/js/jquery.codemirror/mode/r/r.js +141 -0
- data/server/assets/js/jquery.codemirror/mode/rpm/changes/changes.js +19 -0
- data/server/assets/js/jquery.codemirror/mode/rpm/changes/index.html +67 -0
- data/server/assets/js/jquery.codemirror/mode/rpm/spec/index.html +114 -0
- data/server/assets/js/jquery.codemirror/mode/rpm/spec/spec.css +5 -0
- data/server/assets/js/jquery.codemirror/mode/rpm/spec/spec.js +66 -0
- data/server/assets/js/jquery.codemirror/mode/rst/index.html +534 -0
- data/server/assets/js/jquery.codemirror/mode/rst/rst.js +560 -0
- data/server/assets/js/jquery.codemirror/mode/ruby/index.html +185 -0
- data/server/assets/js/jquery.codemirror/mode/ruby/ruby.js +247 -0
- data/server/assets/js/jquery.codemirror/mode/rust/index.html +61 -0
- data/server/assets/js/jquery.codemirror/mode/rust/rust.js +436 -0
- data/server/assets/js/jquery.codemirror/mode/sass/index.html +66 -0
- data/server/assets/js/jquery.codemirror/mode/sass/sass.js +330 -0
- data/server/assets/js/jquery.codemirror/mode/scheme/index.html +77 -0
- data/server/assets/js/jquery.codemirror/mode/scheme/scheme.js +232 -0
- data/server/assets/js/jquery.codemirror/mode/shell/index.html +66 -0
- data/server/assets/js/jquery.codemirror/mode/shell/shell.js +118 -0
- data/server/assets/js/jquery.codemirror/mode/sieve/index.html +93 -0
- data/server/assets/js/jquery.codemirror/mode/sieve/sieve.js +183 -0
- data/server/assets/js/jquery.codemirror/mode/smalltalk/index.html +68 -0
- data/server/assets/js/jquery.codemirror/mode/smalltalk/smalltalk.js +151 -0
- data/server/assets/js/jquery.codemirror/mode/smarty/index.html +136 -0
- data/server/assets/js/jquery.codemirror/mode/smarty/smarty.js +205 -0
- data/server/assets/js/jquery.codemirror/mode/smartymixed/index.html +114 -0
- data/server/assets/js/jquery.codemirror/mode/smartymixed/smartymixed.js +175 -0
- data/server/assets/js/jquery.codemirror/mode/sparql/index.html +54 -0
- data/server/assets/js/jquery.codemirror/mode/sparql/sparql.js +145 -0
- data/server/assets/js/jquery.codemirror/mode/sql/index.html +75 -0
- data/server/assets/js/jquery.codemirror/mode/sql/sql.js +365 -0
- data/server/assets/js/jquery.codemirror/mode/stex/index.html +110 -0
- data/server/assets/js/jquery.codemirror/mode/stex/stex.js +246 -0
- data/server/assets/js/jquery.codemirror/mode/stex/test.js +120 -0
- data/server/assets/js/jquery.codemirror/mode/tcl/index.html +143 -0
- data/server/assets/js/jquery.codemirror/mode/tcl/tcl.js +131 -0
- data/server/assets/js/jquery.codemirror/mode/tiddlywiki/index.html +155 -0
- data/server/assets/js/jquery.codemirror/mode/tiddlywiki/tiddlywiki.css +14 -0
- data/server/assets/js/jquery.codemirror/mode/tiddlywiki/tiddlywiki.js +353 -0
- data/server/assets/js/jquery.codemirror/mode/tiki/index.html +95 -0
- data/server/assets/js/jquery.codemirror/mode/tiki/tiki.css +26 -0
- data/server/assets/js/jquery.codemirror/mode/tiki/tiki.js +308 -0
- data/server/assets/js/jquery.codemirror/mode/toml/index.html +73 -0
- data/server/assets/js/jquery.codemirror/mode/toml/toml.js +71 -0
- data/server/assets/js/jquery.codemirror/mode/turtle/index.html +51 -0
- data/server/assets/js/jquery.codemirror/mode/turtle/turtle.js +145 -0
- data/server/assets/js/jquery.codemirror/mode/vb/index.html +103 -0
- data/server/assets/js/jquery.codemirror/mode/vb/vb.js +259 -0
- data/server/assets/js/jquery.codemirror/mode/vbscript/index.html +55 -0
- data/server/assets/js/jquery.codemirror/mode/vbscript/vbscript.js +334 -0
- data/server/assets/js/jquery.codemirror/mode/velocity/index.html +119 -0
- data/server/assets/js/jquery.codemirror/mode/velocity/velocity.js +186 -0
- data/server/assets/js/jquery.codemirror/mode/verilog/index.html +132 -0
- data/server/assets/js/jquery.codemirror/mode/verilog/verilog.js +182 -0
- data/server/assets/js/jquery.codemirror/mode/xml/index.html +57 -0
- data/server/assets/js/jquery.codemirror/mode/xml/xml.js +345 -0
- data/server/assets/js/jquery.codemirror/mode/xquery/index.html +210 -0
- data/server/assets/js/jquery.codemirror/mode/xquery/test.js +64 -0
- data/server/assets/js/jquery.codemirror/mode/xquery/xquery.js +432 -0
- data/server/assets/js/jquery.codemirror/mode/yaml/index.html +80 -0
- data/server/assets/js/jquery.codemirror/mode/yaml/yaml.js +97 -0
- data/server/assets/js/jquery.codemirror/mode/z80/index.html +52 -0
- data/server/assets/js/jquery.codemirror/mode/z80/z80.js +85 -0
- data/server/assets/js/jquery.codemirror/package.json +19 -0
- data/server/assets/js/jquery.codemirror/test/comment_test.js +51 -0
- data/server/assets/js/jquery.codemirror/test/doc_test.js +329 -0
- data/server/assets/js/jquery.codemirror/test/driver.js +139 -0
- data/server/assets/js/jquery.codemirror/test/emacs_test.js +135 -0
- data/server/assets/js/jquery.codemirror/test/index.html +209 -0
- data/server/assets/js/jquery.codemirror/test/lint/acorn.js +1593 -0
- data/server/assets/js/jquery.codemirror/test/lint/lint.js +139 -0
- data/server/assets/js/jquery.codemirror/test/lint/walk.js +216 -0
- data/server/assets/js/jquery.codemirror/test/mode_test.css +10 -0
- data/server/assets/js/jquery.codemirror/test/mode_test.js +200 -0
- data/server/assets/js/jquery.codemirror/test/phantom_driver.js +31 -0
- data/server/assets/js/jquery.codemirror/test/run.js +34 -0
- data/server/assets/js/jquery.codemirror/test/test.js +1562 -0
- data/server/assets/js/jquery.codemirror/test/vim_test.js +2391 -0
- data/server/assets/js/jquery.codemirror/theme/3024-day.css +34 -0
- data/server/assets/js/jquery.codemirror/theme/3024-night.css +34 -0
- data/server/assets/js/jquery.codemirror/theme/ambiance-mobile.css +5 -0
- data/server/assets/js/jquery.codemirror/theme/ambiance.css +70 -0
- data/server/assets/js/jquery.codemirror/theme/base16-dark.css +34 -0
- data/server/assets/js/jquery.codemirror/theme/base16-light.css +34 -0
- data/server/assets/js/jquery.codemirror/theme/blackboard.css +28 -0
- data/server/assets/js/jquery.codemirror/theme/cobalt.css +21 -0
- data/server/assets/js/jquery.codemirror/theme/eclipse.css +23 -0
- data/server/assets/js/jquery.codemirror/theme/elegant.css +13 -0
- data/server/assets/js/jquery.codemirror/theme/erlang-dark.css +30 -0
- data/server/assets/js/jquery.codemirror/theme/lesser-dark.css +47 -0
- data/server/assets/js/jquery.codemirror/theme/mbo.css +37 -0
- data/server/assets/js/jquery.codemirror/theme/midnight.css +43 -0
- data/server/assets/js/jquery.codemirror/theme/monokai.css +29 -0
- data/server/assets/js/jquery.codemirror/theme/neat.css +12 -0
- data/server/assets/js/jquery.codemirror/theme/night.css +24 -0
- data/server/assets/js/jquery.codemirror/theme/paraiso-dark.css +34 -0
- data/server/assets/js/jquery.codemirror/theme/paraiso-light.css +34 -0
- data/server/assets/js/jquery.codemirror/theme/rubyblue.css +23 -0
- data/server/assets/js/jquery.codemirror/theme/solarized.css +180 -0
- data/server/assets/js/jquery.codemirror/theme/the-matrix.css +26 -0
- data/server/assets/js/jquery.codemirror/theme/tomorrow-night-eighties.css +34 -0
- data/server/assets/js/jquery.codemirror/theme/twilight.css +28 -0
- data/server/assets/js/jquery.codemirror/theme/vibrant-ink.css +30 -0
- data/server/assets/js/jquery.codemirror/theme/xq-dark.css +49 -0
- data/server/assets/js/jquery.codemirror/theme/xq-light.css +43 -0
- data/server/assets/js/jquery.js +4 -0
- data/server/assets/js/jquery.nanoscroller/jquery.nanoscroller.js +2 -0
- data/server/assets/js/jquery.nanoscroller/nanoscroller.css +49 -0
- data/server/assets/js/tester.js +161 -0
- data/server/config.ru +2 -0
- data/server/server.rb +41 -0
- data/server/views/_content.erb +65 -0
- data/server/views/_sidebar.erb +32 -0
- data/server/views/index.erb +40 -0
- metadata +402 -0
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
<!DOCTYPE html>
|
|
2
|
+
<html lang="en">
|
|
3
|
+
<head>
|
|
4
|
+
<meta charset="utf-8">
|
|
5
|
+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
6
|
+
<link rel="shortcut icon" href="/images/favicon.png">
|
|
7
|
+
|
|
8
|
+
<title><%= "Gump - #{@title}" %></title>
|
|
9
|
+
|
|
10
|
+
<link rel="stylesheet" href="/js/bootstrap/dist/css/bootstrap.css"/>
|
|
11
|
+
<link rel="stylesheet" href="/js/jquery.nanoscroller/nanoscroller.css" />
|
|
12
|
+
<link rel="stylesheet" href="/js/jquery.codemirror/lib/codemirror.css">
|
|
13
|
+
<link rel="stylesheet" href="/js/jquery.codemirror/theme/ambiance.css">
|
|
14
|
+
<link rel="stylesheet" href="/css/style.css"/>
|
|
15
|
+
<script type="text/javascript" src="/js/jquery.js"></script>
|
|
16
|
+
</head>
|
|
17
|
+
|
|
18
|
+
<body>
|
|
19
|
+
<div id="head-nav" class="navbar navbar-default navbar-fixed-top">
|
|
20
|
+
<div class="container-fluid">
|
|
21
|
+
<div class="navbar-header">
|
|
22
|
+
<a class="navbar-brand" href="javascript:;"><span><%= "Gump - #{@title}" %></span></a>
|
|
23
|
+
</div>
|
|
24
|
+
</div>
|
|
25
|
+
</div>
|
|
26
|
+
|
|
27
|
+
<div class="fixed-menu" id="cl-wrapper">
|
|
28
|
+
<div class="cl-sidebar">
|
|
29
|
+
<%= erb :'_sidebar' %>
|
|
30
|
+
</div>
|
|
31
|
+
|
|
32
|
+
<div class="container-fluid" id="pcont">
|
|
33
|
+
<%= erb :'_content' %>
|
|
34
|
+
</div>
|
|
35
|
+
</div>
|
|
36
|
+
|
|
37
|
+
<script type="text/javascript" src="/js/jquery.nanoscroller/jquery.nanoscroller.js"></script>
|
|
38
|
+
<script type="text/javascript" src="/js/tester.js"></script>
|
|
39
|
+
</body>
|
|
40
|
+
</html>
|
metadata
ADDED
|
@@ -0,0 +1,402 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: gump
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 0.1.6
|
|
5
|
+
platform: ruby
|
|
6
|
+
authors:
|
|
7
|
+
- wuyue
|
|
8
|
+
autorequire:
|
|
9
|
+
bindir: bin
|
|
10
|
+
cert_chain: []
|
|
11
|
+
date: 2014-06-30 00:00:00.000000000 Z
|
|
12
|
+
dependencies: []
|
|
13
|
+
description: API doc and test tool
|
|
14
|
+
email:
|
|
15
|
+
- wuyueit@gmail.com
|
|
16
|
+
executables:
|
|
17
|
+
- gump
|
|
18
|
+
extensions: []
|
|
19
|
+
extra_rdoc_files: []
|
|
20
|
+
files:
|
|
21
|
+
- .gitignore
|
|
22
|
+
- Gemfile
|
|
23
|
+
- LICENSE.txt
|
|
24
|
+
- README.md
|
|
25
|
+
- Rakefile
|
|
26
|
+
- bin/gump
|
|
27
|
+
- gump.gemspec
|
|
28
|
+
- lib/gump.rb
|
|
29
|
+
- lib/version.rb
|
|
30
|
+
- server/assets/css/style.css
|
|
31
|
+
- server/assets/images/arrow.png
|
|
32
|
+
- server/assets/images/logo.png
|
|
33
|
+
- server/assets/js/bootstrap/dist/css/bootstrap-theme.css
|
|
34
|
+
- server/assets/js/bootstrap/dist/css/bootstrap-theme.css.map
|
|
35
|
+
- server/assets/js/bootstrap/dist/css/bootstrap-theme.min.css
|
|
36
|
+
- server/assets/js/bootstrap/dist/css/bootstrap.css
|
|
37
|
+
- server/assets/js/bootstrap/dist/css/bootstrap.css.map
|
|
38
|
+
- server/assets/js/bootstrap/dist/css/bootstrap.min.css
|
|
39
|
+
- server/assets/js/bootstrap/dist/fonts/glyphicons-halflings-regular.eot
|
|
40
|
+
- server/assets/js/bootstrap/dist/fonts/glyphicons-halflings-regular.svg
|
|
41
|
+
- server/assets/js/bootstrap/dist/fonts/glyphicons-halflings-regular.ttf
|
|
42
|
+
- server/assets/js/bootstrap/dist/fonts/glyphicons-halflings-regular.woff
|
|
43
|
+
- server/assets/js/bootstrap/dist/js/bootstrap.js
|
|
44
|
+
- server/assets/js/bootstrap/dist/js/bootstrap.min.js
|
|
45
|
+
- server/assets/js/jquery.codemirror/.gitattributes
|
|
46
|
+
- server/assets/js/jquery.codemirror/.gitignore
|
|
47
|
+
- server/assets/js/jquery.codemirror/.travis.yml
|
|
48
|
+
- server/assets/js/jquery.codemirror/AUTHORS
|
|
49
|
+
- server/assets/js/jquery.codemirror/CONTRIBUTING.md
|
|
50
|
+
- server/assets/js/jquery.codemirror/LICENSE
|
|
51
|
+
- server/assets/js/jquery.codemirror/README.md
|
|
52
|
+
- server/assets/js/jquery.codemirror/addon/comment/comment.js
|
|
53
|
+
- server/assets/js/jquery.codemirror/addon/comment/continuecomment.js
|
|
54
|
+
- server/assets/js/jquery.codemirror/addon/dialog/dialog.css
|
|
55
|
+
- server/assets/js/jquery.codemirror/addon/dialog/dialog.js
|
|
56
|
+
- server/assets/js/jquery.codemirror/addon/display/fullscreen.css
|
|
57
|
+
- server/assets/js/jquery.codemirror/addon/display/fullscreen.js
|
|
58
|
+
- server/assets/js/jquery.codemirror/addon/display/placeholder.js
|
|
59
|
+
- server/assets/js/jquery.codemirror/addon/edit/closebrackets.js
|
|
60
|
+
- server/assets/js/jquery.codemirror/addon/edit/closetag.js
|
|
61
|
+
- server/assets/js/jquery.codemirror/addon/edit/continuelist.js
|
|
62
|
+
- server/assets/js/jquery.codemirror/addon/edit/matchbrackets.js
|
|
63
|
+
- server/assets/js/jquery.codemirror/addon/edit/matchtags.js
|
|
64
|
+
- server/assets/js/jquery.codemirror/addon/edit/trailingspace.js
|
|
65
|
+
- server/assets/js/jquery.codemirror/addon/fold/brace-fold.js
|
|
66
|
+
- server/assets/js/jquery.codemirror/addon/fold/comment-fold.js
|
|
67
|
+
- server/assets/js/jquery.codemirror/addon/fold/foldcode.js
|
|
68
|
+
- server/assets/js/jquery.codemirror/addon/fold/foldgutter.css
|
|
69
|
+
- server/assets/js/jquery.codemirror/addon/fold/foldgutter.js
|
|
70
|
+
- server/assets/js/jquery.codemirror/addon/fold/indent-fold.js
|
|
71
|
+
- server/assets/js/jquery.codemirror/addon/fold/xml-fold.js
|
|
72
|
+
- server/assets/js/jquery.codemirror/addon/hint/anyword-hint.js
|
|
73
|
+
- server/assets/js/jquery.codemirror/addon/hint/css-hint.js
|
|
74
|
+
- server/assets/js/jquery.codemirror/addon/hint/html-hint.js
|
|
75
|
+
- server/assets/js/jquery.codemirror/addon/hint/javascript-hint.js
|
|
76
|
+
- server/assets/js/jquery.codemirror/addon/hint/pig-hint.js
|
|
77
|
+
- server/assets/js/jquery.codemirror/addon/hint/python-hint.js
|
|
78
|
+
- server/assets/js/jquery.codemirror/addon/hint/show-hint.css
|
|
79
|
+
- server/assets/js/jquery.codemirror/addon/hint/show-hint.js
|
|
80
|
+
- server/assets/js/jquery.codemirror/addon/hint/sql-hint.js
|
|
81
|
+
- server/assets/js/jquery.codemirror/addon/hint/xml-hint.js
|
|
82
|
+
- server/assets/js/jquery.codemirror/addon/lint/coffeescript-lint.js
|
|
83
|
+
- server/assets/js/jquery.codemirror/addon/lint/css-lint.js
|
|
84
|
+
- server/assets/js/jquery.codemirror/addon/lint/javascript-lint.js
|
|
85
|
+
- server/assets/js/jquery.codemirror/addon/lint/json-lint.js
|
|
86
|
+
- server/assets/js/jquery.codemirror/addon/lint/lint.css
|
|
87
|
+
- server/assets/js/jquery.codemirror/addon/lint/lint.js
|
|
88
|
+
- server/assets/js/jquery.codemirror/addon/merge/dep/diff_match_patch.js
|
|
89
|
+
- server/assets/js/jquery.codemirror/addon/merge/merge.css
|
|
90
|
+
- server/assets/js/jquery.codemirror/addon/merge/merge.js
|
|
91
|
+
- server/assets/js/jquery.codemirror/addon/mode/loadmode.js
|
|
92
|
+
- server/assets/js/jquery.codemirror/addon/mode/multiplex.js
|
|
93
|
+
- server/assets/js/jquery.codemirror/addon/mode/multiplex_test.js
|
|
94
|
+
- server/assets/js/jquery.codemirror/addon/mode/overlay.js
|
|
95
|
+
- server/assets/js/jquery.codemirror/addon/runmode/colorize.js
|
|
96
|
+
- server/assets/js/jquery.codemirror/addon/runmode/runmode-standalone.js
|
|
97
|
+
- server/assets/js/jquery.codemirror/addon/runmode/runmode.js
|
|
98
|
+
- server/assets/js/jquery.codemirror/addon/runmode/runmode.node.js
|
|
99
|
+
- server/assets/js/jquery.codemirror/addon/scroll/scrollpastend.js
|
|
100
|
+
- server/assets/js/jquery.codemirror/addon/search/match-highlighter.js
|
|
101
|
+
- server/assets/js/jquery.codemirror/addon/search/search.js
|
|
102
|
+
- server/assets/js/jquery.codemirror/addon/search/searchcursor.js
|
|
103
|
+
- server/assets/js/jquery.codemirror/addon/selection/active-line.js
|
|
104
|
+
- server/assets/js/jquery.codemirror/addon/selection/mark-selection.js
|
|
105
|
+
- server/assets/js/jquery.codemirror/addon/tern/tern.css
|
|
106
|
+
- server/assets/js/jquery.codemirror/addon/tern/tern.js
|
|
107
|
+
- server/assets/js/jquery.codemirror/addon/tern/worker.js
|
|
108
|
+
- server/assets/js/jquery.codemirror/addon/wrap/hardwrap.js
|
|
109
|
+
- server/assets/js/jquery.codemirror/bin/authors.sh
|
|
110
|
+
- server/assets/js/jquery.codemirror/bin/compress
|
|
111
|
+
- server/assets/js/jquery.codemirror/bin/lint
|
|
112
|
+
- server/assets/js/jquery.codemirror/bin/source-highlight
|
|
113
|
+
- server/assets/js/jquery.codemirror/bower.json
|
|
114
|
+
- server/assets/js/jquery.codemirror/demo/activeline.html
|
|
115
|
+
- server/assets/js/jquery.codemirror/demo/anywordhint.html
|
|
116
|
+
- server/assets/js/jquery.codemirror/demo/bidi.html
|
|
117
|
+
- server/assets/js/jquery.codemirror/demo/btree.html
|
|
118
|
+
- server/assets/js/jquery.codemirror/demo/buffers.html
|
|
119
|
+
- server/assets/js/jquery.codemirror/demo/changemode.html
|
|
120
|
+
- server/assets/js/jquery.codemirror/demo/closebrackets.html
|
|
121
|
+
- server/assets/js/jquery.codemirror/demo/closetag.html
|
|
122
|
+
- server/assets/js/jquery.codemirror/demo/complete.html
|
|
123
|
+
- server/assets/js/jquery.codemirror/demo/emacs.html
|
|
124
|
+
- server/assets/js/jquery.codemirror/demo/folding.html
|
|
125
|
+
- server/assets/js/jquery.codemirror/demo/fullscreen.html
|
|
126
|
+
- server/assets/js/jquery.codemirror/demo/hardwrap.html
|
|
127
|
+
- server/assets/js/jquery.codemirror/demo/html5complete.html
|
|
128
|
+
- server/assets/js/jquery.codemirror/demo/indentwrap.html
|
|
129
|
+
- server/assets/js/jquery.codemirror/demo/lint.html
|
|
130
|
+
- server/assets/js/jquery.codemirror/demo/loadmode.html
|
|
131
|
+
- server/assets/js/jquery.codemirror/demo/marker.html
|
|
132
|
+
- server/assets/js/jquery.codemirror/demo/markselection.html
|
|
133
|
+
- server/assets/js/jquery.codemirror/demo/matchhighlighter.html
|
|
134
|
+
- server/assets/js/jquery.codemirror/demo/matchtags.html
|
|
135
|
+
- server/assets/js/jquery.codemirror/demo/merge.html
|
|
136
|
+
- server/assets/js/jquery.codemirror/demo/multiplex.html
|
|
137
|
+
- server/assets/js/jquery.codemirror/demo/mustache.html
|
|
138
|
+
- server/assets/js/jquery.codemirror/demo/placeholder.html
|
|
139
|
+
- server/assets/js/jquery.codemirror/demo/preview.html
|
|
140
|
+
- server/assets/js/jquery.codemirror/demo/resize.html
|
|
141
|
+
- server/assets/js/jquery.codemirror/demo/runmode.html
|
|
142
|
+
- server/assets/js/jquery.codemirror/demo/search.html
|
|
143
|
+
- server/assets/js/jquery.codemirror/demo/spanaffectswrapping_shim.html
|
|
144
|
+
- server/assets/js/jquery.codemirror/demo/tern.html
|
|
145
|
+
- server/assets/js/jquery.codemirror/demo/theme.html
|
|
146
|
+
- server/assets/js/jquery.codemirror/demo/trailingspace.html
|
|
147
|
+
- server/assets/js/jquery.codemirror/demo/variableheight.html
|
|
148
|
+
- server/assets/js/jquery.codemirror/demo/vim.html
|
|
149
|
+
- server/assets/js/jquery.codemirror/demo/visibletabs.html
|
|
150
|
+
- server/assets/js/jquery.codemirror/demo/widget.html
|
|
151
|
+
- server/assets/js/jquery.codemirror/demo/xmlcomplete.html
|
|
152
|
+
- server/assets/js/jquery.codemirror/index.html
|
|
153
|
+
- server/assets/js/jquery.codemirror/keymap/emacs.js
|
|
154
|
+
- server/assets/js/jquery.codemirror/keymap/extra.js
|
|
155
|
+
- server/assets/js/jquery.codemirror/keymap/vim.js
|
|
156
|
+
- server/assets/js/jquery.codemirror/lib/codemirror.css
|
|
157
|
+
- server/assets/js/jquery.codemirror/lib/codemirror.js
|
|
158
|
+
- server/assets/js/jquery.codemirror/mode/apl/apl.js
|
|
159
|
+
- server/assets/js/jquery.codemirror/mode/apl/index.html
|
|
160
|
+
- server/assets/js/jquery.codemirror/mode/asterisk/asterisk.js
|
|
161
|
+
- server/assets/js/jquery.codemirror/mode/asterisk/index.html
|
|
162
|
+
- server/assets/js/jquery.codemirror/mode/clike/clike.js
|
|
163
|
+
- server/assets/js/jquery.codemirror/mode/clike/index.html
|
|
164
|
+
- server/assets/js/jquery.codemirror/mode/clike/scala.html
|
|
165
|
+
- server/assets/js/jquery.codemirror/mode/clojure/clojure.js
|
|
166
|
+
- server/assets/js/jquery.codemirror/mode/clojure/index.html
|
|
167
|
+
- server/assets/js/jquery.codemirror/mode/cobol/cobol.js
|
|
168
|
+
- server/assets/js/jquery.codemirror/mode/cobol/index.html
|
|
169
|
+
- server/assets/js/jquery.codemirror/mode/coffeescript/coffeescript.js
|
|
170
|
+
- server/assets/js/jquery.codemirror/mode/coffeescript/index.html
|
|
171
|
+
- server/assets/js/jquery.codemirror/mode/commonlisp/commonlisp.js
|
|
172
|
+
- server/assets/js/jquery.codemirror/mode/commonlisp/index.html
|
|
173
|
+
- server/assets/js/jquery.codemirror/mode/css/css.js
|
|
174
|
+
- server/assets/js/jquery.codemirror/mode/css/index.html
|
|
175
|
+
- server/assets/js/jquery.codemirror/mode/css/scss.html
|
|
176
|
+
- server/assets/js/jquery.codemirror/mode/css/scss_test.js
|
|
177
|
+
- server/assets/js/jquery.codemirror/mode/css/test.js
|
|
178
|
+
- server/assets/js/jquery.codemirror/mode/d/d.js
|
|
179
|
+
- server/assets/js/jquery.codemirror/mode/d/index.html
|
|
180
|
+
- server/assets/js/jquery.codemirror/mode/diff/diff.js
|
|
181
|
+
- server/assets/js/jquery.codemirror/mode/diff/index.html
|
|
182
|
+
- server/assets/js/jquery.codemirror/mode/dtd/dtd.js
|
|
183
|
+
- server/assets/js/jquery.codemirror/mode/dtd/index.html
|
|
184
|
+
- server/assets/js/jquery.codemirror/mode/ecl/ecl.js
|
|
185
|
+
- server/assets/js/jquery.codemirror/mode/ecl/index.html
|
|
186
|
+
- server/assets/js/jquery.codemirror/mode/eiffel/eiffel.js
|
|
187
|
+
- server/assets/js/jquery.codemirror/mode/eiffel/index.html
|
|
188
|
+
- server/assets/js/jquery.codemirror/mode/erlang/erlang.js
|
|
189
|
+
- server/assets/js/jquery.codemirror/mode/erlang/index.html
|
|
190
|
+
- server/assets/js/jquery.codemirror/mode/fortran/fortran.js
|
|
191
|
+
- server/assets/js/jquery.codemirror/mode/fortran/index.html
|
|
192
|
+
- server/assets/js/jquery.codemirror/mode/gas/gas.js
|
|
193
|
+
- server/assets/js/jquery.codemirror/mode/gas/index.html
|
|
194
|
+
- server/assets/js/jquery.codemirror/mode/gfm/gfm.js
|
|
195
|
+
- server/assets/js/jquery.codemirror/mode/gfm/index.html
|
|
196
|
+
- server/assets/js/jquery.codemirror/mode/gfm/test.js
|
|
197
|
+
- server/assets/js/jquery.codemirror/mode/gherkin/gherkin.js
|
|
198
|
+
- server/assets/js/jquery.codemirror/mode/gherkin/index.html
|
|
199
|
+
- server/assets/js/jquery.codemirror/mode/go/go.js
|
|
200
|
+
- server/assets/js/jquery.codemirror/mode/go/index.html
|
|
201
|
+
- server/assets/js/jquery.codemirror/mode/groovy/groovy.js
|
|
202
|
+
- server/assets/js/jquery.codemirror/mode/groovy/index.html
|
|
203
|
+
- server/assets/js/jquery.codemirror/mode/haml/haml.js
|
|
204
|
+
- server/assets/js/jquery.codemirror/mode/haml/index.html
|
|
205
|
+
- server/assets/js/jquery.codemirror/mode/haml/test.js
|
|
206
|
+
- server/assets/js/jquery.codemirror/mode/haskell/haskell.js
|
|
207
|
+
- server/assets/js/jquery.codemirror/mode/haskell/index.html
|
|
208
|
+
- server/assets/js/jquery.codemirror/mode/haxe/haxe.js
|
|
209
|
+
- server/assets/js/jquery.codemirror/mode/haxe/index.html
|
|
210
|
+
- server/assets/js/jquery.codemirror/mode/htmlembedded/htmlembedded.js
|
|
211
|
+
- server/assets/js/jquery.codemirror/mode/htmlembedded/index.html
|
|
212
|
+
- server/assets/js/jquery.codemirror/mode/htmlmixed/htmlmixed.js
|
|
213
|
+
- server/assets/js/jquery.codemirror/mode/htmlmixed/index.html
|
|
214
|
+
- server/assets/js/jquery.codemirror/mode/http/http.js
|
|
215
|
+
- server/assets/js/jquery.codemirror/mode/http/index.html
|
|
216
|
+
- server/assets/js/jquery.codemirror/mode/index.html
|
|
217
|
+
- server/assets/js/jquery.codemirror/mode/jade/index.html
|
|
218
|
+
- server/assets/js/jquery.codemirror/mode/jade/jade.js
|
|
219
|
+
- server/assets/js/jquery.codemirror/mode/javascript/index.html
|
|
220
|
+
- server/assets/js/jquery.codemirror/mode/javascript/javascript.js
|
|
221
|
+
- server/assets/js/jquery.codemirror/mode/javascript/test.js
|
|
222
|
+
- server/assets/js/jquery.codemirror/mode/javascript/typescript.html
|
|
223
|
+
- server/assets/js/jquery.codemirror/mode/jinja2/index.html
|
|
224
|
+
- server/assets/js/jquery.codemirror/mode/jinja2/jinja2.js
|
|
225
|
+
- server/assets/js/jquery.codemirror/mode/julia/index.html
|
|
226
|
+
- server/assets/js/jquery.codemirror/mode/julia/julia.js
|
|
227
|
+
- server/assets/js/jquery.codemirror/mode/less/index.html
|
|
228
|
+
- server/assets/js/jquery.codemirror/mode/less/less.js
|
|
229
|
+
- server/assets/js/jquery.codemirror/mode/livescript/index.html
|
|
230
|
+
- server/assets/js/jquery.codemirror/mode/livescript/livescript.js
|
|
231
|
+
- server/assets/js/jquery.codemirror/mode/livescript/livescript.ls
|
|
232
|
+
- server/assets/js/jquery.codemirror/mode/lua/index.html
|
|
233
|
+
- server/assets/js/jquery.codemirror/mode/lua/lua.js
|
|
234
|
+
- server/assets/js/jquery.codemirror/mode/markdown/index.html
|
|
235
|
+
- server/assets/js/jquery.codemirror/mode/markdown/markdown.js
|
|
236
|
+
- server/assets/js/jquery.codemirror/mode/markdown/test.js
|
|
237
|
+
- server/assets/js/jquery.codemirror/mode/meta.js
|
|
238
|
+
- server/assets/js/jquery.codemirror/mode/mirc/index.html
|
|
239
|
+
- server/assets/js/jquery.codemirror/mode/mirc/mirc.js
|
|
240
|
+
- server/assets/js/jquery.codemirror/mode/nginx/index.html
|
|
241
|
+
- server/assets/js/jquery.codemirror/mode/nginx/nginx.js
|
|
242
|
+
- server/assets/js/jquery.codemirror/mode/ntriples/index.html
|
|
243
|
+
- server/assets/js/jquery.codemirror/mode/ntriples/ntriples.js
|
|
244
|
+
- server/assets/js/jquery.codemirror/mode/ocaml/index.html
|
|
245
|
+
- server/assets/js/jquery.codemirror/mode/ocaml/ocaml.js
|
|
246
|
+
- server/assets/js/jquery.codemirror/mode/octave/index.html
|
|
247
|
+
- server/assets/js/jquery.codemirror/mode/octave/octave.js
|
|
248
|
+
- server/assets/js/jquery.codemirror/mode/pascal/index.html
|
|
249
|
+
- server/assets/js/jquery.codemirror/mode/pascal/pascal.js
|
|
250
|
+
- server/assets/js/jquery.codemirror/mode/pegjs/index.html
|
|
251
|
+
- server/assets/js/jquery.codemirror/mode/pegjs/pegjs.js
|
|
252
|
+
- server/assets/js/jquery.codemirror/mode/perl/index.html
|
|
253
|
+
- server/assets/js/jquery.codemirror/mode/perl/perl.js
|
|
254
|
+
- server/assets/js/jquery.codemirror/mode/php/index.html
|
|
255
|
+
- server/assets/js/jquery.codemirror/mode/php/php.js
|
|
256
|
+
- server/assets/js/jquery.codemirror/mode/pig/index.html
|
|
257
|
+
- server/assets/js/jquery.codemirror/mode/pig/pig.js
|
|
258
|
+
- server/assets/js/jquery.codemirror/mode/properties/index.html
|
|
259
|
+
- server/assets/js/jquery.codemirror/mode/properties/properties.js
|
|
260
|
+
- server/assets/js/jquery.codemirror/mode/python/index.html
|
|
261
|
+
- server/assets/js/jquery.codemirror/mode/python/python.js
|
|
262
|
+
- server/assets/js/jquery.codemirror/mode/q/index.html
|
|
263
|
+
- server/assets/js/jquery.codemirror/mode/q/q.js
|
|
264
|
+
- server/assets/js/jquery.codemirror/mode/r/index.html
|
|
265
|
+
- server/assets/js/jquery.codemirror/mode/r/r.js
|
|
266
|
+
- server/assets/js/jquery.codemirror/mode/rpm/changes/changes.js
|
|
267
|
+
- server/assets/js/jquery.codemirror/mode/rpm/changes/index.html
|
|
268
|
+
- server/assets/js/jquery.codemirror/mode/rpm/spec/index.html
|
|
269
|
+
- server/assets/js/jquery.codemirror/mode/rpm/spec/spec.css
|
|
270
|
+
- server/assets/js/jquery.codemirror/mode/rpm/spec/spec.js
|
|
271
|
+
- server/assets/js/jquery.codemirror/mode/rst/index.html
|
|
272
|
+
- server/assets/js/jquery.codemirror/mode/rst/rst.js
|
|
273
|
+
- server/assets/js/jquery.codemirror/mode/ruby/index.html
|
|
274
|
+
- server/assets/js/jquery.codemirror/mode/ruby/ruby.js
|
|
275
|
+
- server/assets/js/jquery.codemirror/mode/rust/index.html
|
|
276
|
+
- server/assets/js/jquery.codemirror/mode/rust/rust.js
|
|
277
|
+
- server/assets/js/jquery.codemirror/mode/sass/index.html
|
|
278
|
+
- server/assets/js/jquery.codemirror/mode/sass/sass.js
|
|
279
|
+
- server/assets/js/jquery.codemirror/mode/scheme/index.html
|
|
280
|
+
- server/assets/js/jquery.codemirror/mode/scheme/scheme.js
|
|
281
|
+
- server/assets/js/jquery.codemirror/mode/shell/index.html
|
|
282
|
+
- server/assets/js/jquery.codemirror/mode/shell/shell.js
|
|
283
|
+
- server/assets/js/jquery.codemirror/mode/sieve/index.html
|
|
284
|
+
- server/assets/js/jquery.codemirror/mode/sieve/sieve.js
|
|
285
|
+
- server/assets/js/jquery.codemirror/mode/smalltalk/index.html
|
|
286
|
+
- server/assets/js/jquery.codemirror/mode/smalltalk/smalltalk.js
|
|
287
|
+
- server/assets/js/jquery.codemirror/mode/smarty/index.html
|
|
288
|
+
- server/assets/js/jquery.codemirror/mode/smarty/smarty.js
|
|
289
|
+
- server/assets/js/jquery.codemirror/mode/smartymixed/index.html
|
|
290
|
+
- server/assets/js/jquery.codemirror/mode/smartymixed/smartymixed.js
|
|
291
|
+
- server/assets/js/jquery.codemirror/mode/sparql/index.html
|
|
292
|
+
- server/assets/js/jquery.codemirror/mode/sparql/sparql.js
|
|
293
|
+
- server/assets/js/jquery.codemirror/mode/sql/index.html
|
|
294
|
+
- server/assets/js/jquery.codemirror/mode/sql/sql.js
|
|
295
|
+
- server/assets/js/jquery.codemirror/mode/stex/index.html
|
|
296
|
+
- server/assets/js/jquery.codemirror/mode/stex/stex.js
|
|
297
|
+
- server/assets/js/jquery.codemirror/mode/stex/test.js
|
|
298
|
+
- server/assets/js/jquery.codemirror/mode/tcl/index.html
|
|
299
|
+
- server/assets/js/jquery.codemirror/mode/tcl/tcl.js
|
|
300
|
+
- server/assets/js/jquery.codemirror/mode/tiddlywiki/index.html
|
|
301
|
+
- server/assets/js/jquery.codemirror/mode/tiddlywiki/tiddlywiki.css
|
|
302
|
+
- server/assets/js/jquery.codemirror/mode/tiddlywiki/tiddlywiki.js
|
|
303
|
+
- server/assets/js/jquery.codemirror/mode/tiki/index.html
|
|
304
|
+
- server/assets/js/jquery.codemirror/mode/tiki/tiki.css
|
|
305
|
+
- server/assets/js/jquery.codemirror/mode/tiki/tiki.js
|
|
306
|
+
- server/assets/js/jquery.codemirror/mode/toml/index.html
|
|
307
|
+
- server/assets/js/jquery.codemirror/mode/toml/toml.js
|
|
308
|
+
- server/assets/js/jquery.codemirror/mode/turtle/index.html
|
|
309
|
+
- server/assets/js/jquery.codemirror/mode/turtle/turtle.js
|
|
310
|
+
- server/assets/js/jquery.codemirror/mode/vb/index.html
|
|
311
|
+
- server/assets/js/jquery.codemirror/mode/vb/vb.js
|
|
312
|
+
- server/assets/js/jquery.codemirror/mode/vbscript/index.html
|
|
313
|
+
- server/assets/js/jquery.codemirror/mode/vbscript/vbscript.js
|
|
314
|
+
- server/assets/js/jquery.codemirror/mode/velocity/index.html
|
|
315
|
+
- server/assets/js/jquery.codemirror/mode/velocity/velocity.js
|
|
316
|
+
- server/assets/js/jquery.codemirror/mode/verilog/index.html
|
|
317
|
+
- server/assets/js/jquery.codemirror/mode/verilog/verilog.js
|
|
318
|
+
- server/assets/js/jquery.codemirror/mode/xml/index.html
|
|
319
|
+
- server/assets/js/jquery.codemirror/mode/xml/xml.js
|
|
320
|
+
- server/assets/js/jquery.codemirror/mode/xquery/index.html
|
|
321
|
+
- server/assets/js/jquery.codemirror/mode/xquery/test.js
|
|
322
|
+
- server/assets/js/jquery.codemirror/mode/xquery/xquery.js
|
|
323
|
+
- server/assets/js/jquery.codemirror/mode/yaml/index.html
|
|
324
|
+
- server/assets/js/jquery.codemirror/mode/yaml/yaml.js
|
|
325
|
+
- server/assets/js/jquery.codemirror/mode/z80/index.html
|
|
326
|
+
- server/assets/js/jquery.codemirror/mode/z80/z80.js
|
|
327
|
+
- server/assets/js/jquery.codemirror/package.json
|
|
328
|
+
- server/assets/js/jquery.codemirror/test/comment_test.js
|
|
329
|
+
- server/assets/js/jquery.codemirror/test/doc_test.js
|
|
330
|
+
- server/assets/js/jquery.codemirror/test/driver.js
|
|
331
|
+
- server/assets/js/jquery.codemirror/test/emacs_test.js
|
|
332
|
+
- server/assets/js/jquery.codemirror/test/index.html
|
|
333
|
+
- server/assets/js/jquery.codemirror/test/lint/acorn.js
|
|
334
|
+
- server/assets/js/jquery.codemirror/test/lint/lint.js
|
|
335
|
+
- server/assets/js/jquery.codemirror/test/lint/walk.js
|
|
336
|
+
- server/assets/js/jquery.codemirror/test/mode_test.css
|
|
337
|
+
- server/assets/js/jquery.codemirror/test/mode_test.js
|
|
338
|
+
- server/assets/js/jquery.codemirror/test/phantom_driver.js
|
|
339
|
+
- server/assets/js/jquery.codemirror/test/run.js
|
|
340
|
+
- server/assets/js/jquery.codemirror/test/test.js
|
|
341
|
+
- server/assets/js/jquery.codemirror/test/vim_test.js
|
|
342
|
+
- server/assets/js/jquery.codemirror/theme/3024-day.css
|
|
343
|
+
- server/assets/js/jquery.codemirror/theme/3024-night.css
|
|
344
|
+
- server/assets/js/jquery.codemirror/theme/ambiance-mobile.css
|
|
345
|
+
- server/assets/js/jquery.codemirror/theme/ambiance.css
|
|
346
|
+
- server/assets/js/jquery.codemirror/theme/base16-dark.css
|
|
347
|
+
- server/assets/js/jquery.codemirror/theme/base16-light.css
|
|
348
|
+
- server/assets/js/jquery.codemirror/theme/blackboard.css
|
|
349
|
+
- server/assets/js/jquery.codemirror/theme/cobalt.css
|
|
350
|
+
- server/assets/js/jquery.codemirror/theme/eclipse.css
|
|
351
|
+
- server/assets/js/jquery.codemirror/theme/elegant.css
|
|
352
|
+
- server/assets/js/jquery.codemirror/theme/erlang-dark.css
|
|
353
|
+
- server/assets/js/jquery.codemirror/theme/lesser-dark.css
|
|
354
|
+
- server/assets/js/jquery.codemirror/theme/mbo.css
|
|
355
|
+
- server/assets/js/jquery.codemirror/theme/midnight.css
|
|
356
|
+
- server/assets/js/jquery.codemirror/theme/monokai.css
|
|
357
|
+
- server/assets/js/jquery.codemirror/theme/neat.css
|
|
358
|
+
- server/assets/js/jquery.codemirror/theme/night.css
|
|
359
|
+
- server/assets/js/jquery.codemirror/theme/paraiso-dark.css
|
|
360
|
+
- server/assets/js/jquery.codemirror/theme/paraiso-light.css
|
|
361
|
+
- server/assets/js/jquery.codemirror/theme/rubyblue.css
|
|
362
|
+
- server/assets/js/jquery.codemirror/theme/solarized.css
|
|
363
|
+
- server/assets/js/jquery.codemirror/theme/the-matrix.css
|
|
364
|
+
- server/assets/js/jquery.codemirror/theme/tomorrow-night-eighties.css
|
|
365
|
+
- server/assets/js/jquery.codemirror/theme/twilight.css
|
|
366
|
+
- server/assets/js/jquery.codemirror/theme/vibrant-ink.css
|
|
367
|
+
- server/assets/js/jquery.codemirror/theme/xq-dark.css
|
|
368
|
+
- server/assets/js/jquery.codemirror/theme/xq-light.css
|
|
369
|
+
- server/assets/js/jquery.js
|
|
370
|
+
- server/assets/js/jquery.nanoscroller/jquery.nanoscroller.js
|
|
371
|
+
- server/assets/js/jquery.nanoscroller/nanoscroller.css
|
|
372
|
+
- server/assets/js/tester.js
|
|
373
|
+
- server/config.ru
|
|
374
|
+
- server/server.rb
|
|
375
|
+
- server/views/_content.erb
|
|
376
|
+
- server/views/_sidebar.erb
|
|
377
|
+
- server/views/index.erb
|
|
378
|
+
homepage: http://www.github.com/wuyue/gump
|
|
379
|
+
licenses:
|
|
380
|
+
- MIT
|
|
381
|
+
metadata: {}
|
|
382
|
+
post_install_message:
|
|
383
|
+
rdoc_options: []
|
|
384
|
+
require_paths:
|
|
385
|
+
- lib
|
|
386
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
387
|
+
requirements:
|
|
388
|
+
- - '>='
|
|
389
|
+
- !ruby/object:Gem::Version
|
|
390
|
+
version: '0'
|
|
391
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
392
|
+
requirements:
|
|
393
|
+
- - '>='
|
|
394
|
+
- !ruby/object:Gem::Version
|
|
395
|
+
version: '0'
|
|
396
|
+
requirements: []
|
|
397
|
+
rubyforge_project:
|
|
398
|
+
rubygems_version: 2.2.2
|
|
399
|
+
signing_key:
|
|
400
|
+
specification_version: 4
|
|
401
|
+
summary: Gump
|
|
402
|
+
test_files: []
|