table_setter 0.1.8 → 0.1.9
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/VERSION.yml +2 -2
- data/documentation/index.html.erb +3 -1
- data/index.html +4 -2
- data/table_setter.gemspec +4 -4
- metadata +27 -4
data/VERSION.yml
CHANGED
|
@@ -223,8 +223,10 @@ script/generate table-setter</pre>
|
|
|
223
223
|
</li>
|
|
224
224
|
</ul>
|
|
225
225
|
<h2><a id="credits" href="#toc">Credits</a></h2>
|
|
226
|
-
<p><a href="http://github.com/thejefflarson">Jeff Larson</a> (Maintainer), <a href="http://github.com/brianboyer/">Brian Boyer</a>, <a href="http://github.com/kleinmatic">Scott Klein</a>, <a href="http://github.com/markpercival">Mark Percival</a>, <a href="http://github.com/seebq">Charles Brian Quinn</a>,
|
|
226
|
+
<p><a href="http://github.com/thejefflarson">Jeff Larson</a> (Maintainer), <a href="http://github.com/brianboyer/">Brian Boyer</a>, <a href="http://github.com/kleinmatic">Scott Klein</a>, <a href="http://github.com/markpercival">Mark Percival</a>, <a href="http://github.com/seebq">Charles Brian Quinn</a>, <a href="http://github.com/bouvard">Christopher Groskopf</a>, and <a href="http://github.com/ryanmark">Ryan Mark</a>.</p>
|
|
227
227
|
<h2><a id="changes" href="#toc">Change Log</a></h2>
|
|
228
|
+
<strong>1.8</strong>
|
|
229
|
+
<p>Bunch of fixes from <a href="http://github.com/ryanmark">Ryan Mark</a>, and beta markdown functionality. Once Markdown is tested we'll release 0.2.0</p>
|
|
228
230
|
<strong>1.7</strong>
|
|
229
231
|
<p>Bugfix to the build command to place assets in the right place</p>
|
|
230
232
|
<strong>1.6</strong>
|
data/index.html
CHANGED
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
</head>
|
|
9
9
|
<body>
|
|
10
10
|
<a href="http://www.propublica.org" class="propublica"> </a>
|
|
11
|
-
<h1>TableSetter <small>– Version: 0.1.
|
|
11
|
+
<h1>TableSetter <small>– Version: 0.1.8</small></h1>
|
|
12
12
|
<p><a href="https://github.com/propublica/table-setter">TableSetter</a> is a Ruby app that provides an easy way to present CSVs hosted locally or remotely (e.g. on google, etc) in custom HTML. TableSetter in the wild: <a href="http://projects.propublica.org/tables/failed-banks">a list of all stimulus projects from last year</a>, <a href="http://projects.propublica.org/tables/stimulus-spending-progress">the stimulus spending progress</a>, or <a href="http://projects.propublica.org/tables/failed-banks">a list of failed banks due to the last recession</a>.</p>
|
|
13
13
|
<p>Each table is filterable and sortable on multiple columns. Also each column can be formatted in one of many different styles. In production mode, <strong>TableSetter</strong> provides valid expires headers and can be coupled with an upstream cache like <a href="http://rtomayko.github.com/rack-cache/">Rack::Cache</a> or varnish for speedy presentation.</p>
|
|
14
14
|
<h2><a id="toc">Table of Contents</a></h2>
|
|
@@ -220,8 +220,10 @@ script/generate table-setter</pre>
|
|
|
220
220
|
</li>
|
|
221
221
|
</ul>
|
|
222
222
|
<h2><a id="credits" href="#toc">Credits</a></h2>
|
|
223
|
-
<p><a href="http://github.com/thejefflarson">Jeff Larson</a> (Maintainer), <a href="http://github.com/brianboyer/">Brian Boyer</a>, <a href="http://github.com/kleinmatic">Scott Klein</a>, <a href="http://github.com/markpercival">Mark Percival</a>, <a href="http://github.com/seebq">Charles Brian Quinn</a>,
|
|
223
|
+
<p><a href="http://github.com/thejefflarson">Jeff Larson</a> (Maintainer), <a href="http://github.com/brianboyer/">Brian Boyer</a>, <a href="http://github.com/kleinmatic">Scott Klein</a>, <a href="http://github.com/markpercival">Mark Percival</a>, <a href="http://github.com/seebq">Charles Brian Quinn</a>, <a href="http://github.com/bouvard">Christopher Groskopf</a>, and <a href="http://github.com/ryanmark">Ryan Mark</a>.</p>
|
|
224
224
|
<h2><a id="changes" href="#toc">Change Log</a></h2>
|
|
225
|
+
<strong>1.8</strong>
|
|
226
|
+
<p>Bunch of fixes from <a href="http://github.com/ryanmark">Ryan Mark</a>, and beta markdown functionality. Once Markdown is tested we'll release 0.2.0</p>
|
|
225
227
|
<strong>1.7</strong>
|
|
226
228
|
<p>Bugfix to the build command to place assets in the right place</p>
|
|
227
229
|
<strong>1.6</strong>
|
data/table_setter.gemspec
CHANGED
|
@@ -5,11 +5,11 @@
|
|
|
5
5
|
|
|
6
6
|
Gem::Specification.new do |s|
|
|
7
7
|
s.name = %q{table_setter}
|
|
8
|
-
s.version = "0.1.
|
|
8
|
+
s.version = "0.1.9"
|
|
9
9
|
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
11
11
|
s.authors = ["Jeff Larson"]
|
|
12
|
-
s.date = %q{2010-05-
|
|
12
|
+
s.date = %q{2010-05-26}
|
|
13
13
|
s.description = %q{A sinatra based app for rendering CSVs hosted on google docs or locally in custom HTML}
|
|
14
14
|
s.email = %q{thejefflarson@gmail.com}
|
|
15
15
|
s.executables = ["table-setter", "table-setter"]
|
|
@@ -127,7 +127,7 @@ Gem::Specification.new do |s|
|
|
|
127
127
|
s.rdoc_options = ["--charset=UTF-8"]
|
|
128
128
|
s.require_paths = ["lib"]
|
|
129
129
|
s.rubyforge_project = %q{table-setter}
|
|
130
|
-
s.rubygems_version = %q{1.3.
|
|
130
|
+
s.rubygems_version = %q{1.3.7}
|
|
131
131
|
s.summary = %q{A sinatra based app for rendering CSVs in custom HTML}
|
|
132
132
|
s.test_files = [
|
|
133
133
|
"spec/spec_helper.rb",
|
|
@@ -140,7 +140,7 @@ Gem::Specification.new do |s|
|
|
|
140
140
|
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
|
|
141
141
|
s.specification_version = 3
|
|
142
142
|
|
|
143
|
-
if Gem::Version.new(Gem::
|
|
143
|
+
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
|
|
144
144
|
s.add_development_dependency(%q<rspec>, [">= 1.2.9"])
|
|
145
145
|
s.add_runtime_dependency(%q<rack>, [">= 1.1.0"])
|
|
146
146
|
s.add_runtime_dependency(%q<thin>, [">= 1.2.5"])
|
metadata
CHANGED
|
@@ -1,12 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: table_setter
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
+
hash: 9
|
|
4
5
|
prerelease: false
|
|
5
6
|
segments:
|
|
6
7
|
- 0
|
|
7
8
|
- 1
|
|
8
|
-
-
|
|
9
|
-
version: 0.1.
|
|
9
|
+
- 9
|
|
10
|
+
version: 0.1.9
|
|
10
11
|
platform: ruby
|
|
11
12
|
authors:
|
|
12
13
|
- Jeff Larson
|
|
@@ -14,16 +15,18 @@ autorequire:
|
|
|
14
15
|
bindir: bin
|
|
15
16
|
cert_chain: []
|
|
16
17
|
|
|
17
|
-
date: 2010-05-
|
|
18
|
+
date: 2010-05-26 00:00:00 -04:00
|
|
18
19
|
default_executable:
|
|
19
20
|
dependencies:
|
|
20
21
|
- !ruby/object:Gem::Dependency
|
|
21
22
|
name: rspec
|
|
22
23
|
prerelease: false
|
|
23
24
|
requirement: &id001 !ruby/object:Gem::Requirement
|
|
25
|
+
none: false
|
|
24
26
|
requirements:
|
|
25
27
|
- - ">="
|
|
26
28
|
- !ruby/object:Gem::Version
|
|
29
|
+
hash: 13
|
|
27
30
|
segments:
|
|
28
31
|
- 1
|
|
29
32
|
- 2
|
|
@@ -35,9 +38,11 @@ dependencies:
|
|
|
35
38
|
name: rack
|
|
36
39
|
prerelease: false
|
|
37
40
|
requirement: &id002 !ruby/object:Gem::Requirement
|
|
41
|
+
none: false
|
|
38
42
|
requirements:
|
|
39
43
|
- - ">="
|
|
40
44
|
- !ruby/object:Gem::Version
|
|
45
|
+
hash: 19
|
|
41
46
|
segments:
|
|
42
47
|
- 1
|
|
43
48
|
- 1
|
|
@@ -49,9 +54,11 @@ dependencies:
|
|
|
49
54
|
name: thin
|
|
50
55
|
prerelease: false
|
|
51
56
|
requirement: &id003 !ruby/object:Gem::Requirement
|
|
57
|
+
none: false
|
|
52
58
|
requirements:
|
|
53
59
|
- - ">="
|
|
54
60
|
- !ruby/object:Gem::Version
|
|
61
|
+
hash: 21
|
|
55
62
|
segments:
|
|
56
63
|
- 1
|
|
57
64
|
- 2
|
|
@@ -63,9 +70,11 @@ dependencies:
|
|
|
63
70
|
name: table_fu
|
|
64
71
|
prerelease: false
|
|
65
72
|
requirement: &id004 !ruby/object:Gem::Requirement
|
|
73
|
+
none: false
|
|
66
74
|
requirements:
|
|
67
75
|
- - ">="
|
|
68
76
|
- !ruby/object:Gem::Version
|
|
77
|
+
hash: 21
|
|
69
78
|
segments:
|
|
70
79
|
- 0
|
|
71
80
|
- 2
|
|
@@ -77,9 +86,11 @@ dependencies:
|
|
|
77
86
|
name: sinatra
|
|
78
87
|
prerelease: false
|
|
79
88
|
requirement: &id005 !ruby/object:Gem::Requirement
|
|
89
|
+
none: false
|
|
80
90
|
requirements:
|
|
81
91
|
- - ">="
|
|
82
92
|
- !ruby/object:Gem::Version
|
|
93
|
+
hash: 23
|
|
83
94
|
segments:
|
|
84
95
|
- 1
|
|
85
96
|
- 0
|
|
@@ -91,9 +102,11 @@ dependencies:
|
|
|
91
102
|
name: sinatra-static-assets
|
|
92
103
|
prerelease: false
|
|
93
104
|
requirement: &id006 !ruby/object:Gem::Requirement
|
|
105
|
+
none: false
|
|
94
106
|
requirements:
|
|
95
107
|
- - ">="
|
|
96
108
|
- !ruby/object:Gem::Version
|
|
109
|
+
hash: 11
|
|
97
110
|
segments:
|
|
98
111
|
- 0
|
|
99
112
|
- 5
|
|
@@ -105,9 +118,11 @@ dependencies:
|
|
|
105
118
|
name: emk-sinatra-url-for
|
|
106
119
|
prerelease: false
|
|
107
120
|
requirement: &id007 !ruby/object:Gem::Requirement
|
|
121
|
+
none: false
|
|
108
122
|
requirements:
|
|
109
123
|
- - ">="
|
|
110
124
|
- !ruby/object:Gem::Version
|
|
125
|
+
hash: 21
|
|
111
126
|
segments:
|
|
112
127
|
- 0
|
|
113
128
|
- 2
|
|
@@ -119,9 +134,11 @@ dependencies:
|
|
|
119
134
|
name: curb
|
|
120
135
|
prerelease: false
|
|
121
136
|
requirement: &id008 !ruby/object:Gem::Requirement
|
|
137
|
+
none: false
|
|
122
138
|
requirements:
|
|
123
139
|
- - ">="
|
|
124
140
|
- !ruby/object:Gem::Version
|
|
141
|
+
hash: 103
|
|
125
142
|
segments:
|
|
126
143
|
- 0
|
|
127
144
|
- 6
|
|
@@ -134,9 +151,11 @@ dependencies:
|
|
|
134
151
|
name: rdiscount
|
|
135
152
|
prerelease: false
|
|
136
153
|
requirement: &id009 !ruby/object:Gem::Requirement
|
|
154
|
+
none: false
|
|
137
155
|
requirements:
|
|
138
156
|
- - ">="
|
|
139
157
|
- !ruby/object:Gem::Version
|
|
158
|
+
hash: 97
|
|
140
159
|
segments:
|
|
141
160
|
- 1
|
|
142
161
|
- 6
|
|
@@ -270,23 +289,27 @@ rdoc_options:
|
|
|
270
289
|
require_paths:
|
|
271
290
|
- lib
|
|
272
291
|
required_ruby_version: !ruby/object:Gem::Requirement
|
|
292
|
+
none: false
|
|
273
293
|
requirements:
|
|
274
294
|
- - ">="
|
|
275
295
|
- !ruby/object:Gem::Version
|
|
296
|
+
hash: 3
|
|
276
297
|
segments:
|
|
277
298
|
- 0
|
|
278
299
|
version: "0"
|
|
279
300
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
301
|
+
none: false
|
|
280
302
|
requirements:
|
|
281
303
|
- - ">="
|
|
282
304
|
- !ruby/object:Gem::Version
|
|
305
|
+
hash: 3
|
|
283
306
|
segments:
|
|
284
307
|
- 0
|
|
285
308
|
version: "0"
|
|
286
309
|
requirements: []
|
|
287
310
|
|
|
288
311
|
rubyforge_project: table-setter
|
|
289
|
-
rubygems_version: 1.3.
|
|
312
|
+
rubygems_version: 1.3.7
|
|
290
313
|
signing_key:
|
|
291
314
|
specification_version: 3
|
|
292
315
|
summary: A sinatra based app for rendering CSVs in custom HTML
|