Erro ao iniciar servidor Http

Olá galera sou novo com Ruby e estou tentando criar meu primeiro projeto mas quando eu vou iniciar o servidor com o comando rails server eu recebo este erro:

`João@joao-note MINGW64 ~/Documents/Desenvolvimento/Rails/Primeiro_Projeto/hello (master)
$ rails server
C:/RailsInstaller/Ruby2.2.0/lib/ruby/gems/2.2.0/gems/bundler-1.11.2/lib/bundler/definition.rb:22:in `build': C:/Users/Joǜo/Documents/Desenvolvimento/Rails/Primeiro_Projeto/hello/Gemfile not found (Bundler::GemfileNotFound)
        from C:/RailsInstaller/Ruby2.2.0/lib/ruby/gems/2.2.0/gems/bundler-1.11.2/lib/bundler.rb:120:in `definition'
        from C:/RailsInstaller/Ruby2.2.0/lib/ruby/gems/2.2.0/gems/bundler-1.11.2/lib/bundler.rb:88:in `setup'
        from C:/RailsInstaller/Ruby2.2.0/lib/ruby/gems/2.2.0/gems/bundler-1.11.2/lib/bundler/setup.rb:18:in `<top (required)>'
        from C:/RailsInstaller/Ruby2.2.0/lib/ruby/2.2.0/rubygems/core_ext/kernel_require.rb:128:in `require'
        from C:/RailsInstaller/Ruby2.2.0/lib/ruby/2.2.0/rubygems/core_ext/kernel_require.rb:128:in `rescue in require'
        from C:/RailsInstaller/Ruby2.2.0/lib/ruby/2.2.0/rubygems/core_ext/kernel_require.rb:39:in `require'
        from C:/Users/João/Documents/Desenvolvimento/Rails/Primeiro_Projeto/hello/config/boot.rb:3:in `<top (required)>'
        from bin/rails:3:in `require_relative'
        from bin/rails:3:in `<main>`

Já instalei o bundle com o comando bundle install

Mas mesmo assim tenho este erro. Alguém sabe porque deste erro?

Olá, amigo. O bundle install serve para instalar as gems que estão dentro do seu Gemfile em seu projeto, para instalar alguma gem (o bundler é uma gem do ruby) você precisa utilizar o gem install [nome da gem] logo talvez consiga com gem install bundler.

Espero ter ajudado.