Advertisement
Guest User

Untitled

a guest
May 25th, 2016
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.20 KB | None | 0 0
  1. Fetching gem metadata from https://rubygems.org/
  2. Fetching version metadata from https://rubygems.org/
  3. vinod@ruby-rails-postgres-nginx-unicorn-512mb-sgp1-01:~/dride$ bundle
  4. Fetching gem metadata from https://rubygems.org/...........
  5. Fetching version metadata from https://rubygems.org/...
  6. Fetching dependency metadata from https://rubygems.org/..
  7. Resolving dependencies...
  8. Using rake 11.1.2
  9. Using i18n 0.7.0
  10. Using json 1.8.3
  11. Using minitest 5.9.0
  12. Using thread_safe 0.3.5
  13. Using tzinfo 1.2.2
  14. Using activesupport 4.2.5.2
  15. Using builder 3.2.2
  16. Using erubis 2.7.0
  17. Using mini_portile2 2.0.0
  18. Using nokogiri 1.6.7.2
  19. Using rails-deprecated_sanitizer 1.0.3
  20. Using rails-dom-testing 1.0.7
  21. Using loofah 2.0.3
  22. Using rails-html-sanitizer 1.0.3
  23. Using actionview 4.2.5.2
  24. Using rack 1.6.4
  25. Using rack-test 0.6.3
  26. Using actionpack 4.2.5.2
  27. Using globalid 0.3.6
  28. Using activejob 4.2.5.2
  29. Using mime-types-data 3.2016.0521
  30. Using mime-types 3.1
  31. Using mail 2.6.4
  32. Using actionmailer 4.2.5.2
  33. Using activemodel 4.2.5.2
  34. Using arel 6.0.3
  35. Using activerecord 4.2.5.2
  36. Gem::Ext::BuildError: ERROR: Failed to build gem native extension.
  37.  
  38. /usr/local/rvm/rubies/ruby-2.2.1/bin/ruby -r ./siteconf20160525-15401-ztxhbh.rb extconf.rb
  39. creating Makefile
  40.  
  41. make "DESTDIR=" clean
  42.  
  43. make "DESTDIR="
  44. compiling crypt_gensalt.c
  45. compiling crypt.c
  46. compiling crypt_blowfish.c
  47. virtual memory exhausted: Cannot allocate memory
  48. make: *** [crypt_blowfish.o] Error 1
  49.  
  50. make failed, exit code 2
  51.  
  52. Gem files will remain installed in /tmp/bundler20160525-15401-11lp2i/bcrypt-3.1.11/gems/bcrypt-3.1.11 for inspection.
  53. Results logged to /tmp/bundler20160525-15401-11lp2i/bcrypt-3.1.11/extensions/x86_64-linux/2.2.0/bcrypt-3.1.11/gem_make.out
  54.  
  55. source 'https://rubygems.org'
  56.  
  57.  
  58. # Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
  59. gem 'rails', '4.2.5.2'
  60. # Use SCSS for stylesheets
  61. gem 'sass-rails', '~> 5.0'
  62. # Use Uglifier as compressor for JavaScript assets
  63. gem 'uglifier', '>= 1.3.0'
  64. # Use CoffeeScript for .coffee assets and views
  65. gem 'coffee-rails', '~> 4.1.0'
  66. # See https://github.com/rails/execjs#readme for more supported runtimes
  67. # gem 'therubyracer', platforms: :ruby
  68.  
  69. # Use jquery as the JavaScript library
  70. gem 'jquery-rails'
  71. # Turbolinks makes following links in your web application faster. Read more: https://github.com/rails/turbolinks
  72. gem 'turbolinks'
  73. # Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
  74. gem 'jbuilder', '~> 2.0'
  75. # bundle exec rake doc:rails generates the API under doc/api.
  76. gem 'sdoc', '~> 0.4.0', group: :doc
  77.  
  78. gem 'mongoid', '~> 5.1.0'
  79. # Use ActiveModel has_secure_password
  80. # gem 'bcrypt', '~> 3.1.7'
  81.  
  82. # Use Unicorn as the app server
  83. # gem 'unicorn'
  84.  
  85. # Use Capistrano for deployment
  86. # gem 'capistrano-rails', group: :development
  87.  
  88. group :development, :test do
  89. # Call 'byebug' anywhere in the code to stop execution and get a debugger console
  90. gem 'byebug'
  91. gem "factory_girl_rails"
  92. gem 'ffaker'
  93. gem "shoulda-matchers"
  94. end
  95.  
  96. group :development do
  97. # Access an IRB console on exception pages or by using <%= console %> in views
  98. gem 'web-console', '~> 2.0'
  99.  
  100. # Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
  101. gem 'spring'
  102. end
  103.  
  104. group :test do
  105. gem "rspec-rails"
  106. end
  107.  
  108. gem "devise"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement