Advertisement
Guest User

Untitled

a guest
Jun 12th, 2016
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.92 KB | None | 0 0
  1. source 'rubygems.org'
  2.  
  3. # Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
  4. gem 'rails', '4.0.0'
  5.  
  6. # Use mysql as the database for Active Record
  7. gem 'mysql2'
  8.  
  9. # Use SCSS for stylesheets
  10. #gem 'sass-rails', '~> 4.0.0'
  11.  
  12. # Use Uglifier as compressor for JavaScript assets
  13. #gem 'uglifier', '>= 1.3.0'
  14.  
  15. # Use CoffeeScript for .js.coffee assets and views
  16. #gem 'coffee-rails', '~> 4.0.0'
  17.  
  18. # See for more supported runtimes
  19. # gem 'therubyracer', platforms: :ruby
  20.  
  21. # Use jquery as the JavaScript library
  22. #gem 'jquery-rails'
  23.  
  24. # Turbolinks makes following links in your web application faster. Read more:
  25. #gem 'turbolinks'
  26.  
  27. # Build JSON APIs with ease. Read more:
  28. #gem 'jbuilder', '~> 1.2'
  29.  
  30. group :doc do
  31. # bundle exec rake doc:rails generates the API under doc/api.
  32. gem 'sdoc', require: false
  33. end
  34.  
  35. # Use ActiveModel has_secure_password
  36. # gem 'bcrypt-ruby', '~> 3.0.0'
  37.  
  38. # Use unicorn as the app server
  39. # gem 'unicorn'
  40.  
  41. # Use Capistrano for deployment
  42. # gem 'capistrano', group: :development
  43.  
  44. # Use debugger
  45. # gem 'debugger', group: [:development, :test]
  46.  
  47. # MySQL. Versions 4.1 and 5.0 are recommended.
  48. #
  49. # Install the MYSQL driver
  50. # gem install mysql2
  51. #
  52. # Ensure the MySQL gem is defined in your Gemfile
  53. # gem 'mysql2'
  54. #
  55. # And be sure to use new-style password hashing:
  56. #
  57. development:
  58. adapter: mysql2
  59. encoding: utf8
  60. database: #simple_cms_development
  61. pool: 5
  62. username: root
  63. password: mypass
  64. socket: /var/run/mysqld/mysqld.sock
  65.  
  66. # Warning: The database defined as "test" will be erased and
  67. # re-generated from your development database when you run "rake".
  68. # Do not set this db to the same as development or production.
  69. test:
  70. adapter: mysql2
  71. encoding: utf8
  72. database: simple_cms_test
  73. pool: 5
  74. username: root
  75. password: mypass
  76. socket: /var/run/mysqld/mysqld.sock
  77.  
  78. production:
  79. adapter: mysql2
  80. encoding: utf8
  81. database: simple_cms_production
  82. pool: 5
  83. username: root
  84. password: mypass
  85. socket: /var/run/mysqld/mysqld.sock
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement