Created
September 8, 2016 13:29
-
-
Save pulkit21/1dd8b3424c1dd1742b6bf56f6c5881a2 to your computer and use it in GitHub Desktop.
GemFile
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
source 'https://rubygems.org' | |
ruby '2.2.1' | |
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails' | |
gem 'rails', '4.2.1' | |
# Use postgresql as the database for Active Record | |
gem 'pg' | |
# Use SCSS for stylesheets | |
gem 'sass-rails', '~> 4.0.3' | |
# Use Uglifier as compressor for JavaScript assets | |
gem 'uglifier', '>= 1.3.0' | |
# Use CoffeeScript for .coffee assets and views | |
gem 'coffee-rails', '~> 4.1.0' | |
# See https://github.com/rails/execjs#readme for more supported runtimes | |
# gem 'therubyracer', platforms: :ruby | |
# Use jquery as the JavaScript library | |
gem 'jquery-rails' | |
# Turbolinks makes following links in your web application faster. Read more: https://github.com/rails/turbolinks | |
gem 'turbolinks' | |
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder | |
gem 'jbuilder', '~> 2.0' | |
# bundle exec rake doc:rails generates the API under doc/api. | |
gem 'sdoc', '~> 0.4.0', group: :doc | |
gem "gon" | |
gem 'devise' # authentication | |
gem 'bootstrap-sass' | |
gem "will_paginate" | |
gem "will_paginate-bootstrap" | |
gem "font-awesome-rails" | |
gem 'aasm' | |
gem 'acts_as_tenant' | |
gem 'bootstrap_form' | |
gem 'country_select', github: 'stefanpenner/country_select' | |
gem 'unicorn' | |
gem "letter_opener" | |
gem "paperclip", "~> 4.3" | |
gem 'aws-sdk', '~> 1.6' | |
gem "gruff" | |
gem "daemons" | |
gem "delayed_job_active_record" | |
gem 'email_validator' | |
gem 'SyslogLogger' | |
group :development do | |
gem 'capistrano', '~> 3.1' | |
gem 'capistrano-rails', '~> 1.1.1' | |
gem 'capistrano-rvm', require: false | |
gem 'capistrano-rbenv', '~> 2.0', require: false | |
gem 'capistrano-bundler' | |
end | |
group :development, :test do | |
gem "binding_of_caller" | |
gem 'better_errors' | |
gem 'thin' | |
# Use spring or zeus | |
gem 'spring' # keep application running in the background | |
gem 'spring-commands-rspec' | |
# gem 'zeus' # required in gemfile for guard | |
# Debugging | |
# gem 'pry' # better than irb | |
gem 'pry-rails' # adds rails specific commands to pry | |
gem 'pry-byebug' # add debugging commands to pry | |
gem 'pry-stack_explorer' # navigate call stack | |
# gem 'pry-rescue' # start pry session on uncaught exception | |
# gem 'pry-doc' # browse docs from console | |
# gem 'pry-git' # add git support to console | |
# gem 'pry-remote' # connect remotely to pry console | |
# gem 'coolline' # sytax highlighting as you type | |
# gem 'coderay' # use with coolline | |
gem 'awesome_print' # pretty pring debugging output | |
# Testing | |
gem 'rspec-rails' | |
gem "factory_girl_rails", "~> 4.0" | |
gem 'ffaker' | |
gem 'capybara-webkit' | |
gem 'capybara-firebug' | |
# gem 'launchy' # save_and_open_page support for rspec | |
# gem 'zeus-parallel_tests' # speed up lengthy tests | |
# Logging | |
gem 'quiet_assets' | |
gem 'axlsx', '~> 2.0' | |
gem "axlsx_rails" | |
end | |
group :test do | |
gem 'minitest' # include minitest to prevent require 'minitest/autorun' warnings | |
# Helpers | |
gem 'shoulda-matchers' | |
gem 'database_cleaner' | |
# gem 'timecop' # Mock Time | |
gem 'shoulda-callback-matchers', '~> 1.1.1' | |
# Coverage | |
gem 'simplecov', require: false | |
# gem 'coveralls', :require => false | |
gem 'rspec-sidekiq' | |
gem 'rspec-activemodel-mocks' | |
end | |
# CRON Job | |
gem 'whenever', :require => false | |
# For Nested form | |
gem "cocoon" | |
gem "language_list" | |
gem 'newrelic_rpm' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment