From b9fe3b43ecd638a5cb0eaced2ed02d5ada6fb98d Mon Sep 17 00:00:00 2001 From: Hans de Graaff Date: Tue, 23 Jul 2019 23:52:40 +0200 Subject: Remove unused and obsolete FasterCSV FasterCSV as been included as the default CSV implementation in Ruby 1.9. It is also not actually used in the application. Signed-off-by: Hans de Graaff --- Gemfile | 1 - Gemfile.lock | 2 -- doc/README_FOR_APP | 1 - lib/bugzilla.rb | 1 - 4 files changed, 5 deletions(-) diff --git a/Gemfile b/Gemfile index a645e28..708a3a2 100644 --- a/Gemfile +++ b/Gemfile @@ -35,7 +35,6 @@ group :development do # gem 'require_relative' end -gem 'fastercsv' gem 'diff-lcs', require: 'diff/lcs' gem 'nokogiri' gem 'text-format-revised', require: 'text/format' diff --git a/Gemfile.lock b/Gemfile.lock index eb15950..5e36356 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -63,7 +63,6 @@ GEM docile (1.3.2) erubis (2.7.0) eventmachine (1.2.7) - fastercsv (1.5.5) globalid (0.4.2) activesupport (>= 4.2.0) i18n (0.9.5) @@ -198,7 +197,6 @@ DEPENDENCIES capistrano ci_reporter diff-lcs - fastercsv jbuilder (~> 2.0) json (~> 2.0) kramdown diff --git a/doc/README_FOR_APP b/doc/README_FOR_APP index d910934..164a90c 100644 --- a/doc/README_FOR_APP +++ b/doc/README_FOR_APP @@ -8,7 +8,6 @@ Project website: https://redmine.a3li.li/projects/glsamaker2 ==Needed libraries * Rails 3.1 * Nokogiri -* FasterCSV * JSON * Rcov * text-format diff --git a/lib/bugzilla.rb b/lib/bugzilla.rb index dd4d714..d6af1b3 100644 --- a/lib/bugzilla.rb +++ b/lib/bugzilla.rb @@ -10,7 +10,6 @@ # For more information, see the LICENSE file. require 'nokogiri' -require 'fastercsv' require 'fileutils' require 'xmlrpc/client' -- cgit v1.2.3-65-gdbad