Displaying 8 results from an estimated 8 matches for "gemnotfound".
Did you mean:
itemnotfound
2010 Oct 22
1
Could not find rake-0.8.7 in any of the sources
...able to find itself:
> rake -T
Could not find rake-0.8.7 in any of the sources
Try running `bundle install`.
but `gem list` and ''bundle list'' shows that rake-0.8.7 is installed!
When loading the webapp in the browser:
Could not find rake-0.8.7 in any of the sources (Bundler::GemNotFound)
Ruby 1.8.7 is also installed on this server, but the following
symbolic links have been created in ''/usr/bin'':
ln -s ruby1.9.1 ruby
ln -s ri1.9.1 ri
ln -s rdoc1.9.1 rdoc
ln -s gem1.9.1 gem
ln -s irb1.9.1 irb
ln -s rake1.9.1 rake
/var/lib/gems/1.9.1/bin is in the $PATH.
Running...
2012 Aug 17
5
How to Include Gem in Different Path
Hi,
I just tried Ruby on Rails (with RailsInstaller 2.1.0) and it works fine
on my PC. However, when I put this on the website, I got the following
error message:
Could not find multi_json-1.3.6 in any of the sources
(Bundler::GemNotFound)
The problem is that the website has multi_json 1.0.4. The website
allows me to download my own gems, but after the process, it is located
at /home/username/ruby/gems/gems/multi_json-1.3.6, while my rails app is
located at /home/username/myapp.
What is the best way to fix this so that the rails...
2010 Dec 26
1
Sqlite gem not found with rails3
Hello,
I am migrating a rails app to rails3, however I am hanging with an
error about gem not found.
Error message:
Could not find sqlite3-ruby-1.3.2 in any of the sources
(Bundler::GemNotFound)
Exception class:
PhusionPassenger::UnknownError
When I do
$ gem list sqlite3-ruby-1.3.2
*** LOCAL GEMS ***
(and the same result with sudo gem list )
However, when I do
gem list sqlite3-ruby
*** LOCAL GEMS ***
sqlite3-ruby (1.3.2, 1.3.0)
How can I make rails3/passenger e...
2010 Oct 24
1
Re: [Rails-core] Re: (Unable to start rails application) ruby scipt/server error
...rb" are
require ''rubygems''
# Set up gems listed in the Gemfile.
gemfile = File.expand_path(''../../Gemfile'', __FILE__)
begin
ENV[''BUNDLE_GEMFILE''] = gemfile
require ''bundler''
Bundler.setup
rescue Bundler::GemNotFound => e
STDERR.puts e.message
STDERR.puts "Try running `bundle install`."
exit!
end if File.exist?(gemfile)
Now cd blog
rails server is working well
and i can access the "localhost:3000" ,...
2012 Jun 25
0
Trouble with starting pow
I set up a new project on my computer and created the development
link. I am very new to Ruby and just need help in determining where
to look to solve the issues I am having getting access to the
project. Here are the errors I get when trying to visit my
application:
Bundler::GemNotFound: Could not find rake-0.9.2.2 in any of the
sources
~/.rvm/gems/ruby-1.9.3-p125@global/gems/bundler-1.1.3/lib/bundler/
spec_set.rb:90:in `block in materialize''
~/.rvm/gems/ruby-1.9.3-p125@global/gems/bundler-1.1.3/lib/bundler/
spec_set.rb:83:in `map!''
~/.rvm/gems/ruby-1.9.3-p125@gl...
2011 Dec 13
1
Trouble setting up Rails with a JS runtime environment
Hi all,
I''m using Ubuntu 11.10 and the terminal to install and run Rails. Here
is the process I''ve taken so far to setup Rails:
> download and install Ruby 1.9.2 and Rails 3.1.0
-- I did this using ''sudo apt-get ruby1.9.1'' and ''sudo gem install
rails''
> I made a new rails app using ''rails new path/to/app''
> I went
2012 Mar 15
6
Erro na página
Nunca tive contato antes com Ruby on Rails. Temos um servidor aqui no
serviço que foi configurado para receber aplicações Ruby. Na máquina
local, o site estava funcionando perfeitamente. Agora existe este
erro: http://planarias.each.usp.br/. Alguém já teve alguma experiência
com esse tipo de erro e poderia me ajudar?
--
You received this message because you are subscribed to the Google Groups
2010 Oct 22
6
(Unable to start rails application) ruby scipt/server error
1) I installed the ruby-1.9.2-p0 and rubygems-1.3.7 in the
(/usr/local/src directory )
2) Then i installed rails from terminal by typing follwoing
sudo gem install rails --include-dependencies
3) Then i made a rails applcation from terminal as
rails new demo
then
cd demo
ruby