Skip to content

Commit

Permalink
Dropped hard dependency on fastercsv
Browse files Browse the repository at this point in the history
This is actually an optional dependency that is
not needed for core functionality. Also, lots of
other possible export formats are feasible.
Depending on all these explicitly isn't the way
to go.
  • Loading branch information
snusnu committed Apr 12, 2010
1 parent ceb7b67 commit 493a1e1
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 4 deletions.
1 change: 0 additions & 1 deletion Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ begin
gem.homepage = "http://github.com/michael/data_table"
gem.authors = ["Michael Aufreiter"]

gem.add_dependency 'fastercsv', '~> 1.5.3'
gem.add_development_dependency 'shoulda', '~> 2.10.3'

end
Expand Down
3 changes: 0 additions & 3 deletions data_table.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -44,14 +44,11 @@ Gem::Specification.new do |s|
s.specification_version = 3

if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
s.add_runtime_dependency(%q<fastercsv>, ["~> 1.5.3"])
s.add_development_dependency(%q<shoulda>, ["~> 2.10.3"])
else
s.add_dependency(%q<fastercsv>, ["~> 1.5.3"])
s.add_dependency(%q<shoulda>, ["~> 2.10.3"])
end
else
s.add_dependency(%q<fastercsv>, ["~> 1.5.3"])
s.add_dependency(%q<shoulda>, ["~> 2.10.3"])
end
end
Expand Down

0 comments on commit 493a1e1

Please sign in to comment.