gem 'rails', '~> 5.0.0', '>= 5.0.0.1'
gem 'acts-as-taggable-on', '~> 4.0'
group :development, :test do
gem 'rspec-rails', '~> 3.5'
end
Logic
lib/acts_as_taggable_on/generic_parser.rb
class MyParser < ActsAsTaggableOn::GenericParser
def parse
ActsAsTaggableOn::TagList.new.tap do |tag_list|
tag_list.add @tag_list.split(',').map(&:strip).reject(&:empty?)
end
end
end
Exception
When running rpsec, got these errors:
/Users/user/.rbenv/versions/2.3.3/lib/ruby/gems/2.3.0/gems/bundler-1.14.6/lib/bundler/runtime.rb:94:in `rescue in block (2 levels) in require': There was an error while trying to load the gem 'acts-as-taggable-on'. (Bundler::GemRequireError)
Gem Load Error is: uninitialized constant ActsAsTaggableOn::GenericParser
Versions
Gemfile
Logic
lib/acts_as_taggable_on/generic_parser.rb
Exception
When running
rpsec
, got these errors: