rubst 0.0.1

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.
@@ -0,0 +1,159 @@
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
+ width: 40em;
87
+ padding: 2px 10px 2px 10px;
88
+ }
89
+ .comment { color: #aaa; font-style: italic; }
90
+ .keyword { color: #eff; font-weight: bold; }
91
+ .punct { color: #eee; font-weight: bold; }
92
+ .symbol { color: #0bb; }
93
+ .string { color: #6b4; }
94
+ .ident { color: #ff8; }
95
+ .constant { color: #66f; }
96
+ .regex { color: #ec6; }
97
+ .number { color: #F99; }
98
+ .expr { color: #227; }
99
+
100
+ .sidebar {
101
+ float: right;
102
+ }
103
+
104
+ #version {
105
+ width: 217px;
106
+ text-align: right;
107
+ font-family: sans-serif;
108
+ font-weight: normal;
109
+ color: #141331;
110
+ padding: 15px 20px 10px 20px;
111
+ margin: 0 auto;
112
+ margin-top: 15px;
113
+ background-color: #9A5535;
114
+ border: 3px solid #7E393E;
115
+ }
116
+
117
+ #version .numbers {
118
+ display: block;
119
+ font-size: 4em;
120
+ line-height: 0.8em;
121
+ letter-spacing: -0.1ex;
122
+ margin-bottom: 15px;
123
+ }
124
+
125
+ #version p {
126
+ text-decoration: none;
127
+ color: #F1F4FF;
128
+ background-color: #9A5535;
129
+ margin: 0;
130
+ padding: 0;
131
+ }
132
+
133
+ #version a {
134
+ text-decoration: none;
135
+ color: #F1F4FF;
136
+ background-color: #9A5535;
137
+ }
138
+
139
+ .clickable {
140
+ cursor: pointer;
141
+ cursor: hand;
142
+ }
143
+
144
+ #twitter_search {
145
+ margin: 40px 0 10px 15px;
146
+ color: #F1F4FF;
147
+ background-color: #9A5535;
148
+ border: 3px solid #7E393E;
149
+ }
150
+
151
+ #twitter_search h3 {
152
+ color: #F1F4FF;
153
+ margin-bottom: 0px;
154
+ }
155
+
156
+ #twitter_search center b {
157
+ display: none;
158
+ }
159
+
@@ -0,0 +1,50 @@
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
+ <a href="">Semin Lee</a>, <%= 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
+
49
+ </body>
50
+ </html>
metadata ADDED
@@ -0,0 +1,165 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: rubst
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - Semin Lee
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain:
11
+ - |
12
+ -----BEGIN CERTIFICATE-----
13
+ MIIDMjCCAhqgAwIBAgIBADANBgkqhkiG9w0BAQUFADA/MREwDwYDVQQDDAhzZW1p
14
+ bmxlZTEVMBMGCgmSJomT8ixkARkWBWdtYWlsMRMwEQYKCZImiZPyLGQBGRYDY29t
15
+ MB4XDTA4MTEwMzEzMzU1NVoXDTA5MTEwMzEzMzU1NVowPzERMA8GA1UEAwwIc2Vt
16
+ aW5sZWUxFTATBgoJkiaJk/IsZAEZFgVnbWFpbDETMBEGCgmSJomT8ixkARkWA2Nv
17
+ bTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAM/tZks0aN685ZLCFKkZ
18
+ XXO3XjcJwojDdHMDb6ywOUJaqhiEG+BkDPZNn0UiD9UvNSoM7JF3SKI7SKxZkFid
19
+ 6gdqKB5r758G7gvdITNgdnILa8EaOm85U7XIq10g6zz89w2qFKPSN4S5yqlqi5Kp
20
+ va4kpfx0Icc6S0rtc8Q+fwGNuSRX51rE7sPTQs6ON2gXvOILgPIGXoC9SJ8+f0Ho
21
+ kDQCYDsUzwer2XOCSzmMXPyhRPp58SquO/bY9NZI95WdrLYnslNLpHPn9YVfxXLR
22
+ R2f5J9bvDavVfPQDC2tGP99Ny/tHMwfxvRXPsp8hvDAdzYZOMnY8LOU7UGoGUXiF
23
+ 348CAwEAAaM5MDcwCQYDVR0TBAIwADALBgNVHQ8EBAMCBLAwHQYDVR0OBBYEFICd
24
+ NBCbSXmZ9iuRN9h+44ZQMhMjMA0GCSqGSIb3DQEBBQUAA4IBAQAWitWf1IM3GdcN
25
+ viGNYbBXMs99bK+9/eLSXRDkXzx3mj7tb+sm4KBbT0Hfef9aqrw4dj5lZRM3YYdk
26
+ xf4imsU+3oXyOomUtZC4YK3Ml1llKxrKy5l0fKjWo8TDPXwTotrJEj6YyNJMgYAP
27
+ CwFRQzZDX3hnKGIlkCkYxw5DwvoEEvykJmKOQhg8FU8zohc3Mjn5ZZ4iDMh/2t8s
28
+ lf67mkGlorCFBiqRNa+TCnkJhzqK/Eom824LInCbvviCB+qN1ZW9IippKE9cPxjI
29
+ 3IQH/Zpt1gX4LY6kRrFLj108jus+Cd/srgifylUm2EcHwv2tA1TnqXcm41b5RHyn
30
+ 35w+y1Jd
31
+ -----END CERTIFICATE-----
32
+
33
+ date: 2008-11-03 00:00:00 +00:00
34
+ default_executable:
35
+ dependencies:
36
+ - !ruby/object:Gem::Dependency
37
+ name: narray
38
+ type: :runtime
39
+ version_requirement:
40
+ version_requirements: !ruby/object:Gem::Requirement
41
+ requirements:
42
+ - - ">="
43
+ - !ruby/object:Gem::Version
44
+ version: 0.5.9.5
45
+ version:
46
+ - !ruby/object:Gem::Dependency
47
+ name: bio
48
+ type: :runtime
49
+ version_requirement:
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - ">="
53
+ - !ruby/object:Gem::Version
54
+ version: 1.2.1
55
+ version:
56
+ - !ruby/object:Gem::Dependency
57
+ name: facets
58
+ type: :runtime
59
+ version_requirement:
60
+ version_requirements: !ruby/object:Gem::Requirement
61
+ requirements:
62
+ - - ">="
63
+ - !ruby/object:Gem::Version
64
+ version: 2.4.5
65
+ version:
66
+ - !ruby/object:Gem::Dependency
67
+ name: newgem
68
+ type: :development
69
+ version_requirement:
70
+ version_requirements: !ruby/object:Gem::Requirement
71
+ requirements:
72
+ - - ">="
73
+ - !ruby/object:Gem::Version
74
+ version: 1.0.5
75
+ version:
76
+ - !ruby/object:Gem::Dependency
77
+ name: hoe
78
+ type: :development
79
+ version_requirement:
80
+ version_requirements: !ruby/object:Gem::Requirement
81
+ requirements:
82
+ - - ">="
83
+ - !ruby/object:Gem::Version
84
+ version: 1.8.0
85
+ version:
86
+ description: Rewrite of Kenji's subst (http://www-cryst.bioc.cam.ac.uk/~kenji/subst/) in Ruby programming language
87
+ email:
88
+ - seminlee@gmail.com
89
+ executables:
90
+ - rubst
91
+ extensions: []
92
+
93
+ extra_rdoc_files:
94
+ - History.txt
95
+ - Manifest.txt
96
+ - PostInstall.txt
97
+ - README.rdoc
98
+ - website/index.txt
99
+ files:
100
+ - History.txt
101
+ - Manifest.txt
102
+ - PostInstall.txt
103
+ - README.rdoc
104
+ - Rakefile
105
+ - bin/rubst
106
+ - config/hoe.rb
107
+ - config/website.yml
108
+ - javascripts/rounded_corners_lite.inc.js
109
+ - lib/enumerable_extensions.rb
110
+ - lib/environment.rb
111
+ - lib/environment_feature.rb
112
+ - lib/narray_extensions.rb
113
+ - lib/nmatrix_extensions.rb
114
+ - lib/rubst.rb
115
+ - lib/rubst/cli.rb
116
+ - rubst.gemspec
117
+ - script/console
118
+ - script/destroy
119
+ - script/generate
120
+ - script/txt2html
121
+ - test/test_enumerable_extensions.rb
122
+ - test/test_environment_feature.rb
123
+ - test/test_helper.rb
124
+ - test/test_nmatrix_extensions.rb
125
+ - test/test_rubst.rb
126
+ - test/test_rubst_cli.rb
127
+ - website/index.html
128
+ - website/index.txt
129
+ - website/javascripts/rounded_corners_lite.inc.js
130
+ - website/stylesheets/screen.css
131
+ - website/template.html.erb
132
+ has_rdoc: true
133
+ homepage: http://rubst.rubyforge.org
134
+ post_install_message: PostInstall.txt
135
+ rdoc_options:
136
+ - --main
137
+ - README.rdoc
138
+ require_paths:
139
+ - lib
140
+ required_ruby_version: !ruby/object:Gem::Requirement
141
+ requirements:
142
+ - - ">="
143
+ - !ruby/object:Gem::Version
144
+ version: "0"
145
+ version:
146
+ required_rubygems_version: !ruby/object:Gem::Requirement
147
+ requirements:
148
+ - - ">="
149
+ - !ruby/object:Gem::Version
150
+ version: "0"
151
+ version:
152
+ requirements: []
153
+
154
+ rubyforge_project: rubst
155
+ rubygems_version: 1.3.1
156
+ signing_key:
157
+ specification_version: 2
158
+ summary: Rewrite of Kenji's subst (http://www-cryst.bioc.cam.ac.uk/~kenji/subst/) in Ruby programming language
159
+ test_files:
160
+ - test/test_enumerable_extensions.rb
161
+ - test/test_environment_feature.rb
162
+ - test/test_helper.rb
163
+ - test/test_nmatrix_extensions.rb
164
+ - test/test_rubst.rb
165
+ - test/test_rubst_cli.rb
Binary file