Last active
August 29, 2015 14:26
-
-
Save dprabu17/2b8f1c02d9054acc2989 to your computer and use it in GitHub Desktop.
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' | |
gem 'rails', '4.2.3' | |
gem 'pg', '0.18.2' | |
gem 'sass-rails', '~> 5.0' | |
gem 'uglifier', '>= 1.3.0' | |
gem 'compass-rails' | |
gem 'coffee-rails', '~> 4.1.0' | |
# Use jquery as the JavaScript library | |
gem 'jquery-rails' | |
gem 'jquery-ui-rails' | |
gem 'jbuilder', '~> 2.0' | |
gem 'sdoc', '~> 0.4.0', group: :doc | |
gem 'feedjira', '2.0.0' | |
gem 'angular-rails-templates' | |
gem 'dotenv-rails' | |
#sample data | |
gem 'faker' | |
gem 'populator' | |
#code perfomance | |
gem "skylight" | |
#track exception | |
gem 'rollbar' | |
gem 'scout' | |
gem "lograge" | |
gem 'activerecord-import-rails4', '~> 0.5.0' | |
# => Better templating | |
gem 'haml-rails', '~> 0.9' | |
# => Async Jobs | |
gem 'sidekiq' | |
group :development, :test do | |
gem "rspec-rails", '~> 3.1.0' | |
gem "factory_girl_rails", "4.4.1" | |
end | |
group :test do | |
gem "capybara", "2.4.3" | |
gem "database_cleaner", "1.3.0" | |
# automatically run your specs auto test | |
gem 'guard-rspec', "4.3.1", require: false | |
gem 'rb-fsevent', "0.9.4" | |
#lets us spec common Rails functionality, like validations and associations, with less code. | |
gem 'shoulda-matchers', '2.7.0' | |
gem 'capybara-webkit', '1.4.1' | |
gem 'capybara-screenshot', '1.0.9' | |
gem 'capybara-console', '0.0.4' | |
end | |
group :development do | |
# Access an IRB console on exception pages or by using <%= console %> in views | |
gem 'web-console', '~> 2.0' | |
gem "better_errors","2.0.0" | |
gem "binding_of_caller", "0.7.2" | |
gem "meta_request", "0.3.4" # add chrome extension RailsPanel | |
gem "pry" | |
gem "letter_opener" | |
# Call 'byebug' anywhere in the code to stop execution and get a debugger console | |
gem 'byebug' | |
gem 'spring' | |
# quiet_assets will suppress the log messages automatically. Read more: https://github.com/evrone/quiet_assets | |
gem 'quiet_assets', "1.0.3" | |
#It will watch your queries ask to add eager loading (N+1 queries) | |
gem 'bullet' | |
gem "rails-erd" | |
gem 'stack_rescue', '0.0.1' , group: :development | |
# to add version in Gemfile | |
gem 'pessimize' | |
#Use Capistrano for deployment | |
#gem 'capistrano', '3.2.1' | |
#gem 'capistrano-service', '0.0.2' | |
#gem 'capistrano-rails', '1.1.2' | |
end | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment