semin-egor 0.9.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,158 @@
1
+ body {
2
+ background-color: #8DBD82;
3
+ font-family: "Georgia", sans-serif;
4
+ font-size: 16px;
5
+ line-height: 1.6em;
6
+ padding: 1.6em 0 0 0;
7
+ color: #333;
8
+ }
9
+ h1, h2, h3, h4, h5, h6 {
10
+ color: #444;
11
+ }
12
+ h1 {
13
+ font-family: sans-serif;
14
+ font-weight: normal;
15
+ font-size: 4em;
16
+ line-height: 0.8em;
17
+ letter-spacing: -0.1ex;
18
+ margin: 5px;
19
+ }
20
+ li {
21
+ padding: 0;
22
+ margin: 0;
23
+ list-style-type: square;
24
+ }
25
+ a {
26
+ color: #5E5AFF;
27
+ background-color: #A1DDB1;
28
+ font-weight: normal;
29
+ text-decoration: underline;
30
+ }
31
+ blockquote {
32
+ font-size: 90%;
33
+ font-style: italic;
34
+ border-left: 1px solid #111;
35
+ padding-left: 1em;
36
+ }
37
+ .caps {
38
+ font-size: 80%;
39
+ }
40
+
41
+ #main {
42
+ width: 55em;
43
+ padding: 0;
44
+ margin: 0 auto;
45
+ }
46
+ .coda {
47
+ text-align: right;
48
+ color: #77f;
49
+ font-size: smaller;
50
+ }
51
+
52
+ table {
53
+ font-size: 90%;
54
+ line-height: 1.4em;
55
+ color: #ff8;
56
+ background-color: #111;
57
+ padding: 2px 10px 2px 10px;
58
+ border-style: dashed;
59
+ }
60
+
61
+ th {
62
+ color: #fff;
63
+ }
64
+
65
+ td {
66
+ padding: 2px 10px 2px 10px;
67
+ }
68
+
69
+ .success {
70
+ color: #0CC52B;
71
+ }
72
+
73
+ .failed {
74
+ color: #E90A1B;
75
+ }
76
+
77
+ .unknown {
78
+ color: #995000;
79
+ }
80
+ pre, code {
81
+ font-family: monospace;
82
+ font-size: 90%;
83
+ line-height: 1.4em;
84
+ color: #ff8;
85
+ background-color: #111;
86
+ padding: 2px 10px 2px 10px;
87
+ }
88
+ .comment { color: #aaa; font-style: italic; }
89
+ .keyword { color: #eff; font-weight: bold; }
90
+ .punct { color: #eee; font-weight: bold; }
91
+ .symbol { color: #0bb; }
92
+ .string { color: #6b4; }
93
+ .ident { color: #ff8; }
94
+ .constant { color: #66f; }
95
+ .regex { color: #ec6; }
96
+ .number { color: #F99; }
97
+ .expr { color: #227; }
98
+
99
+ .sidebar {
100
+ float: right;
101
+ }
102
+
103
+ #version {
104
+ width: 217px;
105
+ text-align: right;
106
+ font-family: sans-serif;
107
+ font-weight: normal;
108
+ color: #141331;
109
+ padding: 15px 20px 10px 20px;
110
+ margin: 0 auto;
111
+ margin-top: 15px;
112
+ background-color: #9A5535;
113
+ border: 3px solid #7E393E;
114
+ }
115
+
116
+ #version .numbers {
117
+ display: block;
118
+ font-size: 4em;
119
+ line-height: 0.8em;
120
+ letter-spacing: -0.1ex;
121
+ margin-bottom: 15px;
122
+ }
123
+
124
+ #version p {
125
+ text-decoration: none;
126
+ color: #F1F4FF;
127
+ background-color: #9A5535;
128
+ margin: 0;
129
+ padding: 0;
130
+ }
131
+
132
+ #version a {
133
+ text-decoration: none;
134
+ color: #F1F4FF;
135
+ background-color: #9A5535;
136
+ }
137
+
138
+ .clickable {
139
+ cursor: pointer;
140
+ cursor: hand;
141
+ }
142
+
143
+ #twitter_search {
144
+ margin: 40px 0 10px 15px;
145
+ color: #F1F4FF;
146
+ background-color: #9A5535;
147
+ border: 3px solid #7E393E;
148
+ }
149
+
150
+ #twitter_search h3 {
151
+ color: #F1F4FF;
152
+ margin-bottom: 0px;
153
+ }
154
+
155
+ #twitter_search center b {
156
+ display: none;
157
+ }
158
+
@@ -0,0 +1,57 @@
1
+ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
2
+ "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
3
+ <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
4
+ <head>
5
+ <link rel="stylesheet" href="stylesheets/screen.css" type="text/css" media="screen" />
6
+ <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
7
+ <title>
8
+ <%= title %>
9
+ </title>
10
+ <script src="javascripts/rounded_corners_lite.inc.js" type="text/javascript"></script>
11
+ <style>
12
+
13
+ </style>
14
+ <script type="text/javascript">
15
+ window.onload = function() {
16
+ settings = {
17
+ tl: { radius: 10 },
18
+ tr: { radius: 10 },
19
+ bl: { radius: 10 },
20
+ br: { radius: 10 },
21
+ antiAlias: true,
22
+ autoPad: true,
23
+ validTags: ["div"]
24
+ }
25
+ var versionBox = new curvyCorners(settings, document.getElementById("version"));
26
+ versionBox.applyCornersToAll();
27
+ }
28
+ </script>
29
+ </head>
30
+ <body>
31
+ <div id="main">
32
+
33
+ <h1><%= title %></h1>
34
+ <div class="sidebar">
35
+ <div id="version" class="clickable" onclick='document.location = "<%= download %>"; return false'>
36
+ <p>Get Version</p>
37
+ <a href="<%= download %>" class="numbers"><%= version %></a>
38
+ </div>
39
+ </div>
40
+ <%= body %>
41
+ <p class="coda">
42
+ Semin Lee, <%= modified.pretty %><br>
43
+ Theme extended from <a href="http://rb2js.rubyforge.org/">Paul Battley</a>
44
+ </p>
45
+ </div>
46
+
47
+ <!-- insert site tracking codes here, like Google Urchin -->
48
+ <script type="text/javascript">
49
+ var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
50
+ document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
51
+ </script>
52
+ <script type="text/javascript">
53
+ var pageTracker = _gat._getTracker("UA-6291956-1");
54
+ pageTracker._trackPageview();
55
+ </script>
56
+ </body>
57
+ </html>
metadata ADDED
@@ -0,0 +1,155 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: semin-egor
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.9.0
5
+ platform: ruby
6
+ authors:
7
+ - Semin Lee
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+
12
+ date: 2009-02-12 00:00:00 -08:00
13
+ default_executable: egor
14
+ dependencies:
15
+ - !ruby/object:Gem::Dependency
16
+ name: narray
17
+ version_requirement:
18
+ version_requirements: !ruby/object:Gem::Requirement
19
+ requirements:
20
+ - - ">="
21
+ - !ruby/object:Gem::Version
22
+ version: 0.5.9.5
23
+ version:
24
+ - !ruby/object:Gem::Dependency
25
+ name: bio
26
+ version_requirement:
27
+ version_requirements: !ruby/object:Gem::Requirement
28
+ requirements:
29
+ - - ">="
30
+ - !ruby/object:Gem::Version
31
+ version: 1.2.1
32
+ version:
33
+ - !ruby/object:Gem::Dependency
34
+ name: facets
35
+ version_requirement:
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - ">="
39
+ - !ruby/object:Gem::Version
40
+ version: 2.4.5
41
+ version:
42
+ - !ruby/object:Gem::Dependency
43
+ name: rmagick
44
+ version_requirement:
45
+ version_requirements: !ruby/object:Gem::Requirement
46
+ requirements:
47
+ - - ">="
48
+ - !ruby/object:Gem::Version
49
+ version: 2.9.1
50
+ version:
51
+ - !ruby/object:Gem::Dependency
52
+ name: newgem
53
+ version_requirement:
54
+ version_requirements: !ruby/object:Gem::Requirement
55
+ requirements:
56
+ - - ">="
57
+ - !ruby/object:Gem::Version
58
+ version: 1.2.3
59
+ version:
60
+ - !ruby/object:Gem::Dependency
61
+ name: hoe
62
+ version_requirement:
63
+ version_requirements: !ruby/object:Gem::Requirement
64
+ requirements:
65
+ - - ">="
66
+ - !ruby/object:Gem::Version
67
+ version: 1.8.0
68
+ version:
69
+ description:
70
+ email:
71
+ - seminlee@gmail.com
72
+ executables:
73
+ - egor
74
+ extensions: []
75
+
76
+ extra_rdoc_files:
77
+ - History.txt
78
+ - Manifest.txt
79
+ - PostInstall.txt
80
+ - website/index.txt
81
+ files:
82
+ - History.txt
83
+ - Manifest.txt
84
+ - PostInstall.txt
85
+ - Rakefile
86
+ - bin/egor
87
+ - config/website.yml
88
+ - config/website.yml.sample
89
+ - egor.gemspec
90
+ - lib/egor.rb
91
+ - lib/egor/cli.rb
92
+ - lib/egor/environment.rb
93
+ - lib/egor/environment_class_hash.rb
94
+ - lib/egor/environment_feature.rb
95
+ - lib/egor/environment_feature_array.rb
96
+ - lib/egor/heatmap_array.rb
97
+ - lib/math_extensions.rb
98
+ - lib/narray_extensions.rb
99
+ - lib/nmatrix_extensions.rb
100
+ - lib/string_extensions.rb
101
+ - script/console
102
+ - script/destroy
103
+ - script/generate
104
+ - script/txt2html
105
+ - test/test_egor.rb
106
+ - test/test_egor_cli.rb
107
+ - test/test_egor_environment_class_hash.rb
108
+ - test/test_egor_environment_feature.rb
109
+ - test/test_helper.rb
110
+ - test/test_math_extensions.rb
111
+ - test/test_narray_extensions.rb
112
+ - test/test_nmatrix_extensions.rb
113
+ - test/test_string_extensions.rb
114
+ - website/index.html
115
+ - website/index.txt
116
+ - website/javascripts/rounded_corners_lite.inc.js
117
+ - website/stylesheets/screen.css
118
+ - website/template.html.erb
119
+ has_rdoc: true
120
+ homepage:
121
+ post_install_message: PostInstall.txt
122
+ rdoc_options:
123
+ - --main
124
+ - README.markdown
125
+ require_paths:
126
+ - lib
127
+ required_ruby_version: !ruby/object:Gem::Requirement
128
+ requirements:
129
+ - - ">="
130
+ - !ruby/object:Gem::Version
131
+ version: "0"
132
+ version:
133
+ required_rubygems_version: !ruby/object:Gem::Requirement
134
+ requirements:
135
+ - - ">="
136
+ - !ruby/object:Gem::Version
137
+ version: "0"
138
+ version:
139
+ requirements: []
140
+
141
+ rubyforge_project: egor
142
+ rubygems_version: 1.2.0
143
+ signing_key:
144
+ specification_version: 2
145
+ summary: A new ESST generator
146
+ test_files:
147
+ - test/test_string_extensions.rb
148
+ - test/test_nmatrix_extensions.rb
149
+ - test/test_egor_cli.rb
150
+ - test/test_egor_environment_class_hash.rb
151
+ - test/test_math_extensions.rb
152
+ - test/test_helper.rb
153
+ - test/test_egor_environment_feature.rb
154
+ - test/test_narray_extensions.rb
155
+ - test/test_egor.rb