timeline_setter 0.3.1 → 0.3.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/Rakefile +1 -1
- data/doc/doc.markdown +6 -0
- data/doc/static-demo.html +34 -0
- data/doc/templates.html +1 -1
- data/doc/timeline-setter.html +1 -1
- data/doc/timeline-setter.min.html +1 -1
- data/documentation/TimelineSetter.html +26 -19
- data/documentation/TimelineSetter/CLI.html +65 -34
- data/documentation/TimelineSetter/Parser.html +44 -31
- data/documentation/TimelineSetter/Timeline.html +65 -36
- data/documentation/_index.html +28 -24
- data/documentation/class_list.html +11 -5
- data/documentation/css/full_list.css +4 -2
- data/documentation/css/style.css +50 -44
- data/documentation/file.README.html +24 -17
- data/documentation/file_list.html +12 -6
- data/documentation/frames.html +20 -5
- data/documentation/index.html +24 -17
- data/documentation/js/app.js +52 -43
- data/documentation/js/full_list.js +9 -9
- data/documentation/js/jquery.js +4 -16
- data/documentation/method_list.html +22 -16
- data/documentation/top-level-namespace.html +25 -18
- data/index.html +1 -0
- data/lib/timeline_setter/version.rb +1 -1
- data/public/javascripts/templates.js +1 -1
- data/public/javascripts/templates/timeline.jst +8 -5
- data/public/javascripts/timeline-setter.js +11 -4
- data/public/javascripts/timeline-setter.min.js +1 -1
- data/public/javascripts/vendor/jquery-min.js +5 -4
- data/public/javascripts/vendor/jquery.js +5042 -4849
- data/public/stylesheets/timeline-setter.css +416 -388
- data/spec/timeline-debug.html +1 -1
- data/timeline_setter.gemspec +4 -3
- metadata +6 -5
data/spec/timeline-debug.html
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
<!DOCTYPE html>
|
|
2
2
|
<html>
|
|
3
3
|
<head>
|
|
4
|
-
<link href="
|
|
4
|
+
<link href="../public/stylesheets/timeline-setter.css" rel="stylesheet" />
|
|
5
5
|
<script src="../public/javascripts/vendor/jquery.js"></script>
|
|
6
6
|
<script src="../public/javascripts/vendor/underscore.js"></script>
|
|
7
7
|
<script src="../public/javascripts/timeline-setter.js"></script>
|
data/timeline_setter.gemspec
CHANGED
|
@@ -5,11 +5,11 @@
|
|
|
5
5
|
|
|
6
6
|
Gem::Specification.new do |s|
|
|
7
7
|
s.name = "timeline_setter"
|
|
8
|
-
s.version = "0.3.
|
|
8
|
+
s.version = "0.3.2"
|
|
9
9
|
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
11
11
|
s.authors = ["Al Shaw", "Jeff Larson"]
|
|
12
|
-
s.date = "
|
|
12
|
+
s.date = "2013-02-21"
|
|
13
13
|
s.description = "TimelineSetter is a tool to create HTML timelines from spreadsheets of events."
|
|
14
14
|
s.email = "almshaw@gmail.com"
|
|
15
15
|
s.executables = ["timeline-setter"]
|
|
@@ -27,6 +27,7 @@ Gem::Specification.new do |s|
|
|
|
27
27
|
"doc/doc.markdown",
|
|
28
28
|
"doc/doc_wrapper.erb",
|
|
29
29
|
"doc/docco.css",
|
|
30
|
+
"doc/static-demo.html",
|
|
30
31
|
"doc/templates.html",
|
|
31
32
|
"doc/timeline-setter.html",
|
|
32
33
|
"doc/timeline-setter.min.html",
|
|
@@ -81,7 +82,7 @@ Gem::Specification.new do |s|
|
|
|
81
82
|
]
|
|
82
83
|
s.homepage = "http://github.com/propublica/timeline-setter"
|
|
83
84
|
s.require_paths = ["lib"]
|
|
84
|
-
s.rubygems_version = "1.8.
|
|
85
|
+
s.rubygems_version = "1.8.24"
|
|
85
86
|
s.summary = "TimelineSetter is a tool to create HTML timelines from spreadsheets of events."
|
|
86
87
|
|
|
87
88
|
if s.respond_to? :specification_version then
|
metadata
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: timeline_setter
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
hash:
|
|
4
|
+
hash: 23
|
|
5
5
|
prerelease:
|
|
6
6
|
segments:
|
|
7
7
|
- 0
|
|
8
8
|
- 3
|
|
9
|
-
-
|
|
10
|
-
version: 0.3.
|
|
9
|
+
- 2
|
|
10
|
+
version: 0.3.2
|
|
11
11
|
platform: ruby
|
|
12
12
|
authors:
|
|
13
13
|
- Al Shaw
|
|
@@ -16,7 +16,7 @@ autorequire:
|
|
|
16
16
|
bindir: bin
|
|
17
17
|
cert_chain: []
|
|
18
18
|
|
|
19
|
-
date:
|
|
19
|
+
date: 2013-02-21 00:00:00 Z
|
|
20
20
|
dependencies:
|
|
21
21
|
- !ruby/object:Gem::Dependency
|
|
22
22
|
name: json
|
|
@@ -111,6 +111,7 @@ files:
|
|
|
111
111
|
- doc/doc.markdown
|
|
112
112
|
- doc/doc_wrapper.erb
|
|
113
113
|
- doc/docco.css
|
|
114
|
+
- doc/static-demo.html
|
|
114
115
|
- doc/templates.html
|
|
115
116
|
- doc/timeline-setter.html
|
|
116
117
|
- doc/timeline-setter.min.html
|
|
@@ -191,7 +192,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
191
192
|
requirements: []
|
|
192
193
|
|
|
193
194
|
rubyforge_project:
|
|
194
|
-
rubygems_version: 1.8.
|
|
195
|
+
rubygems_version: 1.8.24
|
|
195
196
|
signing_key:
|
|
196
197
|
specification_version: 3
|
|
197
198
|
summary: TimelineSetter is a tool to create HTML timelines from spreadsheets of events.
|