Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[modify] modified Rack gem version #18

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 13 additions & 1 deletion README
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,16 @@ TableSetter is a Ruby app which provides an easy way to present CSVs hosted loca
http://propublica.github.com/table-setter/

examples
http://propublica.github.com/table-setter/documentation/tables/example/
http://propublica.github.com/table-setter/documentation/tables/example/

=
Installation Note

- Rack 2.x has not `rack/showexceptions` but `rack/show_exceptions`.
- cf. [Incorrect rack requirement for showexceptions file · Issue \#1055 · sinatra/sinatra](https://github.com/sinatra/sinatra/issues/1055)
- so you must specify rack version '< 2.0.0' such as below (Gemfile)

```Gemfile
gem 'table_setter'
gem 'rack', '< 2.0.0'
```
3 changes: 1 addition & 2 deletions table_setter.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ Gem::Specification.new do |gem|
gem.summary = %q{A sinatra based app for rendering CSVs in custom HTML}

gem.add_development_dependency %q<minitest>
gem.add_dependency %q<rack>
gem.add_dependency %q<rack>, '< 2.0.0'
gem.add_dependency %q<thin>
gem.add_dependency %q<table_fu>
gem.add_dependency %q<sinatra>
Expand All @@ -30,4 +30,3 @@ Gem::Specification.new do |gem|
gem.add_dependency %q<curb>
gem.add_dependency %q<rdiscount>
end