So for testing/debugging the problem i went to the file above and added
Problem 1 solved but i got then same error for another module
uninitialized constant Guard::Compat (Load Error) in the same file
Then added the following line to the file
require 'guard/compat/plugin'
Problem solved now, but solved the wrong way, any one knows why the file 'notification_formatter.rb' cant access its dependencies ? any solution ?
Test & dev section of my gem file
group :test do
gem 'shoulda-matchers'
gem 'cucumber-rails', require: false
gem 'database_cleaner'
gem 'selenium-webdriver'
end
group :development, :test do
gem 'rspec-rails', '~> 2.0'
gem 'factory_girl_rails'
gem 'meta_request' # used for rails panel chrome debugging extension
gem 'rails-footnotes', '~> 4.0'
gem "better_errors"
gem "binding_of_caller"
gem 'rspec-autotest'
gem 'autotest-rails'
gem 'launchy'
end
group :development do
gem 'guard', '>=2.1.0'
gem 'guard-rails'
gem 'guard-rspec', require: false
gem 'guard-cucumber'
end
Cucumber Section of my Guard file
Thanks in advance.