-
Notifications
You must be signed in to change notification settings - Fork 70
/
timeline_setter.gemspec
114 lines (110 loc) · 4 KB
/
timeline_setter.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
# Generated by jeweler
# DO NOT EDIT THIS FILE DIRECTLY
# Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
# -*- encoding: utf-8 -*-
Gem::Specification.new do |s|
s.name = "timeline_setter"
s.version = "0.3.2"
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["Al Shaw", "Jeff Larson"]
s.date = "2013-02-21"
s.description = "TimelineSetter is a tool to create HTML timelines from spreadsheets of events."
s.email = "[email protected]"
s.executables = ["timeline-setter"]
s.extra_rdoc_files = [
"LICENSE.txt",
"README"
]
s.files = [
".document",
"LICENSE.txt",
"README",
"Rakefile",
"bin/timeline-setter",
"config/assets.yml",
"doc/doc.markdown",
"doc/doc_wrapper.erb",
"doc/docco.css",
"doc/static-demo.html",
"doc/templates.html",
"doc/timeline-setter.html",
"doc/timeline-setter.min.html",
"doc/todo.markdown",
"doc/twitter-demo.html",
"documentation/TimelineSetter.html",
"documentation/TimelineSetter/CLI.html",
"documentation/TimelineSetter/Parser.html",
"documentation/TimelineSetter/Timeline.html",
"documentation/TimelineSetter/Util.html",
"documentation/_index.html",
"documentation/class_list.html",
"documentation/css/common.css",
"documentation/css/full_list.css",
"documentation/css/style.css",
"documentation/file.README.html",
"documentation/file_list.html",
"documentation/frames.html",
"documentation/index.html",
"documentation/js/app.js",
"documentation/js/full_list.js",
"documentation/js/jquery.js",
"documentation/method_list.html",
"documentation/top-level-namespace.html",
"index.html",
"lib/timeline_setter.rb",
"lib/timeline_setter/cli.rb",
"lib/timeline_setter/parser.rb",
"lib/timeline_setter/timeline.rb",
"lib/timeline_setter/version.rb",
"public/javascripts/templates.js",
"public/javascripts/templates/card.jst",
"public/javascripts/templates/notch.jst",
"public/javascripts/templates/series_legend.jst",
"public/javascripts/templates/timeline.jst",
"public/javascripts/templates/year_notch.jst",
"public/javascripts/timeline-setter.js",
"public/javascripts/timeline-setter.min.js",
"public/javascripts/vendor/jquery-min.js",
"public/javascripts/vendor/jquery.js",
"public/javascripts/vendor/underscore-min.js",
"public/javascripts/vendor/underscore.js",
"public/stylesheets/timeline-setter.css",
"spec/spec_helper.rb",
"spec/test_data.csv",
"spec/timeline-debug.html",
"spec/timeline_setter_spec.rb",
"templates/timeline-markup.erb",
"templates/timeline-min.erb",
"templates/timeline.erb",
"timeline_setter.gemspec"
]
s.homepage = "http://github.com/propublica/timeline-setter"
s.require_paths = ["lib"]
s.rubygems_version = "1.8.24"
s.summary = "TimelineSetter is a tool to create HTML timelines from spreadsheets of events."
if s.respond_to? :specification_version then
s.specification_version = 3
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
s.add_runtime_dependency(%q<json>, [">= 0"])
s.add_runtime_dependency(%q<table_fu>, [">= 0"])
s.add_runtime_dependency(%q<kompress>, [">= 0.0.2"])
s.add_runtime_dependency(%q<jammit>, [">= 0"])
s.add_runtime_dependency(%q<chronic>, [">= 0"])
s.add_development_dependency(%q<rspec>, [">= 2.0.0"])
else
s.add_dependency(%q<json>, [">= 0"])
s.add_dependency(%q<table_fu>, [">= 0"])
s.add_dependency(%q<kompress>, [">= 0.0.2"])
s.add_dependency(%q<jammit>, [">= 0"])
s.add_dependency(%q<chronic>, [">= 0"])
s.add_dependency(%q<rspec>, [">= 2.0.0"])
end
else
s.add_dependency(%q<json>, [">= 0"])
s.add_dependency(%q<table_fu>, [">= 0"])
s.add_dependency(%q<kompress>, [">= 0.0.2"])
s.add_dependency(%q<jammit>, [">= 0"])
s.add_dependency(%q<chronic>, [">= 0"])
s.add_dependency(%q<rspec>, [">= 2.0.0"])
end
end