csspress 0.0.1 → 0.0.2
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/History.txt +4 -0
- data/Manifest.txt +1 -0
- data/lib/csspress/version.rb +1 -1
- data/tasks/custom.rake +14 -0
- data/website/index.html +5 -0
- data/website/index.txt +6 -1
- data/website/stylesheets/screen.css +17 -6
- metadata +2 -1
data/History.txt
CHANGED
data/Manifest.txt
CHANGED
data/lib/csspress/version.rb
CHANGED
data/tasks/custom.rake
ADDED
@@ -0,0 +1,14 @@
|
|
1
|
+
# This is stolen from highline-1.4.0.gem by James Edward Gray II
|
2
|
+
#
|
3
|
+
desc "Show library's code statistics"
|
4
|
+
task :stats do
|
5
|
+
begin
|
6
|
+
require 'code_statistics'
|
7
|
+
CodeStatistics.new( ["CSSpress", "lib"],
|
8
|
+
["RSpec", "spec"] ).to_s
|
9
|
+
rescue LoadError
|
10
|
+
puts "Could not load code_statistics"
|
11
|
+
puts "Installing Rails gem may fix this."
|
12
|
+
exit
|
13
|
+
end
|
14
|
+
end
|
data/website/index.html
CHANGED
@@ -9,6 +9,11 @@
|
|
9
9
|
<body>
|
10
10
|
<div id="wrap">
|
11
11
|
<p id="intro">Coming Soon!</p>
|
12
|
+
<p>In the mean time take a look at:</p>
|
13
|
+
<ul>
|
14
|
+
<li><a href="http://rubyforge.org/projects/csspress/">The RubyForge page for CSSpress</a></li>
|
15
|
+
<li><a href="http://csspress.rubyforge.org/rdoc/">The RDoc for CSSpress</a></li>
|
16
|
+
</ul>
|
12
17
|
<p><a href="http://moose56.com" title="David Madden">moose<sup>56</sup></a></p>
|
13
18
|
</div>
|
14
19
|
</body>
|
data/website/index.txt
CHANGED
@@ -1,3 +1,8 @@
|
|
1
1
|
|
2
2
|
<p id="intro">Coming Soon!</p>
|
3
|
-
<p
|
3
|
+
<p>In the mean time take a look at:</p>
|
4
|
+
<ul>
|
5
|
+
<li><a href="http://rubyforge.org/projects/csspress/">The RubyForge page for CSSpress</a></li>
|
6
|
+
<li><a href="http://csspress.rubyforge.org/rdoc/">The RDoc for CSSpress</a></li>
|
7
|
+
</ul>
|
8
|
+
<p><a href="http://moose56.com" title="David Madden">moose<sup>56</sup></a></p>
|
@@ -1,18 +1,29 @@
|
|
1
1
|
body { min-width: 700px; padding: 0; margin: 0; text-align: center; }
|
2
2
|
#wrap { text-align: left; margin: 0 auto; width: 700px; }
|
3
3
|
|
4
|
-
p {
|
5
|
-
|
6
|
-
}
|
4
|
+
p {padding: 0; margin: 0;}
|
5
|
+
|
7
6
|
p#intro {
|
8
7
|
margin-top: 20px;
|
9
8
|
font: 1.5em Verdana, "Lucida Grande", Lucida, sans-serif;
|
9
|
+
color: #494849;
|
10
|
+
margin-bottom: 20px;
|
11
|
+
}
|
12
|
+
p {
|
13
|
+
color: #7d7a7a;
|
14
|
+
font: 1em "Lucida Grande", Verdana, Lucida, sans-serif;
|
15
|
+
}
|
16
|
+
ul {
|
17
|
+
color: #7d7a7a;
|
18
|
+
}
|
19
|
+
li a {
|
10
20
|
color: #7d7a7a;
|
11
|
-
|
12
|
-
|
21
|
+
font-family: "Lucida Grande", Verdana, Lucida, sans-serif;
|
22
|
+
line-height: .7em;
|
23
|
+
font-style: normal;
|
24
|
+
font-weight: normal;
|
13
25
|
}
|
14
26
|
p a {
|
15
27
|
font: 9px Verdana, "Lucida Grande", Lucida, sans-serif;
|
16
28
|
color: #ffb100;
|
17
|
-
letter-spacing: 1px;
|
18
29
|
}
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: csspress
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- David Madden
|
@@ -52,6 +52,7 @@ files:
|
|
52
52
|
- spec/csspress_spec.rb
|
53
53
|
- spec/spec.opts
|
54
54
|
- spec/spec_helper.rb
|
55
|
+
- tasks/custom.rake
|
55
56
|
- tasks/deployment.rake
|
56
57
|
- tasks/environment.rake
|
57
58
|
- tasks/rspec.rake
|