Advertisement
ProblemSolver

Gemfile

Sep 22nd, 2014
566
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Rails 1.93 KB | None | 0 0
  1. source 'https://rubygems.org'
  2.  
  3.  
  4. # Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
  5. gem 'rails', '4.1.5'
  6. # Use mysql as the database for Active Record
  7. #gem 'pg'
  8. gem 'mysql2'
  9.  
  10.  
  11. gem 'activerecord-session_store', github: 'rails/activerecord-session_store'
  12. gem 'omniauth'
  13. #gem 'open_uri_redirections'
  14. gem 'omniauth-facebook'
  15. gem "paperclip", :git => "git://github.com/thoughtbot/paperclip.git"
  16. #gem 'simple_capt--cha', :git => 'git://github.com/galetahub/simple-captcha.git'
  17. gem 'ckeditor'
  18. gem 'jquery-rails'
  19.  
  20. group :test do
  21.   gem "factory_girl_rails"
  22.   gem "faker"
  23.   gem 'capybara'
  24.   gem 'poltergeist'
  25.   gem 'database_cleaner',:git => "git://github.com/DatabaseCleaner/database_cleaner.git"
  26.  # gem 'codeclimate-test-reporter'
  27.   #gem 'travis'
  28. end
  29.  
  30. group :development, :test do
  31.   gem 'rspec-rails'
  32.   gem 'rspec-collection_matchers'
  33.   gem 'colorize', :git => "git://github.com/fazibear/colorize.git"
  34.  
  35.  
  36. end
  37. group :development do
  38.   gem 'guard'
  39.   gem 'guard-rspec'
  40.   gem 'pry'
  41.   #gem 'cf'
  42. end
  43. group :production,:development do
  44.   #gem 'koala'
  45.   # Use jquery as the JavaScript library
  46.  
  47.   gem "sanitize"
  48.   #gem 'mobylette'
  49.   #gem 'koala'
  50.   # Turbolinks makes following links in your web application faster. Read more: https://github.com/rails/turbolinks
  51.   gem 'turbolinks'
  52.   # Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
  53.   gem 'jbuilder', '~> 2.0'
  54.   # bundle exec rake doc:rails generates the API under doc/api.
  55.   gem 'sdoc', '~> 0.4.0',          group: :doc
  56.   gem 'rspec_api_documentation'
  57.  
  58.   gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw]
  59.  
  60.   gem 'sass-rails', '~> 4.0.3'
  61.   # Use Uglifier as compressor for JavaScript assets
  62.   gem 'uglifier', '>= 1.3.0'
  63.   # Use CoffeeScript for .js.coffee assets and views
  64.   gem 'coffee-rails', '~> 4.0.0'
  65.   # See https://github.com/sstephenson/execjs#readme for more supported runtimes
  66.   # gem 'therubyracer',  platforms: :ruby
  67. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement