Hola a todos
ojala me puedan ayudar estoy empezando en digitalocean
Cree un droplet con lo que se llama onclick application con un servidor Ubuntu server. With Nginx, Unicorn, and Postgres
Por lo que lei en este post https://www.digitalocean.com/community/tutorials/how-to-use-the-ruby-on-rails-one-click-application-on-digitalocean, usuario root no puede hacer un bundle install sino que lo debe hacerlo el usuario rails que se crea por defecto (de hecho al hacerlo me decia que el root no lo podia hacer por x cuestion)
Lo que hize fue logearme como este usuario su - rails en la carpeta rails hize un git clone de mi proyecto, pero al hacer el bundle install de las gemas me aparece lo siguiente
Your Gemfile lists the gem font-awesome-rails (>= 0) more than once. You should probably keep only one of them. While it’s not a problem now, it could cause errors if you change the version of just one of them later. Fetching gem metadata from https://rubygems.org/… Fetching version metadata from https://rubygems.org/… Killed
La verdad ahora estoy en punto muerto no entiendo que hacer
Gracias de antemano
This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
Join our DigitalOcean community of over a million developers for free! Get help and share knowledge in Q&A, subscribe to topics of interest, and get courses and tools that will help you grow as a developer and scale your project or business.
To anybody having this problem, yes, it might be ricardo has the same gem two times in his Gemfile, but the process is getting killed because the droplet does not have enough memory, try making your droplet bigger.
Hello,
The error here just indicates that your gemfile includes 2 references to the same gem, with different versions. You will want to find out which version of the gem you need, and remove the other reference.
This generally won’t prevent your application from running, so if you are having issues with the application running, you will need to provide more detail on what exactly is happening.