paulfioravanti/sample_app

View on GitHub
Gemfile

Summary

Maintainability
Test Coverage
source 'https://rubygems.org'
ruby '2.1.2'

gem 'rails', '3.2.21'

gem 'bootstrap-will_paginate', '0.0.10'
# For creating bcrypt encrypted hashes for user passwords
gem 'bcrypt-ruby', '3.0.1'
gem 'jquery-rails', '3.1.2'
gem 'jquery-ui-rails', '5.0.0'
# For fake example users with “realistic” names/emails
gem 'faker', '1.2.0'
# For pagination
gem 'will_paginate', '3.0.5'
# Simplified forms
gem 'simple_form', '2.1.0'
# Simplify UI code
gem 'haml-rails', '0.4.0'
# To enable the use of Markdown
gem 'rdiscount', '2.1.7'
# i18n strings for default Rails
gem 'rails-i18n', '0.7.3'
# i18n for database content
gem 'globalize3', '0.3.1'
# i18n using Locale
# gem 'localeapp', '0.6.14'
# For JQuery timeago library
gem 'rails-timeago', '2.8.0'
# For accessing i18n in js files
gem 'i18n-js', '2.1.2'
# Editing in place
gem 'best_in_place', '2.1.0'
# Develop, test (Travis CI), and deploy (Heroku) with postgres
gem 'pg', '0.17.0'
# New Relic reporting
gem 'newrelic_rpm', '3.7.0.177'
# App secret key configuration
gem 'figaro', '0.7.0'
# Rails 4 prep
gem 'strong_parameters', '0.2.1'

# Gems used only for assets and not required
# in production environments by default.
group :assets do
  # Twitter frameworks to make nice UI design elements
  gem 'bootstrap-sass', '2.3.2.0'
  gem 'sass-rails',   '3.2.6'
  gem 'coffee-rails', '3.2.2'
  # Ruby wrapper for UglifyJS JavaScript compressor.
  gem 'uglifier', '2.3.3'
  # Font Awesome fonts
  gem 'font-awesome-sass-rails', '3.0.2.2'
end

group :development do
  # for annotating model files with their properties
  gem 'annotate', '2.6.0'
  # For html/erb to haml parsing
  gem 'hpricot', '0.8.6'
  gem 'ruby_parser', '3.2.2'
  # Security checking
  # gem 'brakeman', '2.3.1' ## depends on Tilt 1.3
  # Code quality
  gem 'reek', '1.3.4'
  gem 'rails_best_practices', '1.14.4'
  # Query optimization monitoring
  gem 'bullet', '4.7.1'
  # Debugging information
  gem 'rails-footnotes', '3.7.9'
  # Better error pages
  gem 'better_errors', '0.9.0'
  gem 'binding_of_caller', '0.7.2'
  # Gem for RailsPanel Chrome extension
  gem 'meta_request', '0.2.7'
end

group :development, :test do
  gem 'rspec-rails', '2.14.0'
  # for autotesting with rspec
  gem 'guard-rspec', '3.0.2'
end

group :test do
  # Helps in testing by simulating how a real user would use app
  gem 'capybara', '2.2.0'
  # Use factories instead of ActiveRecord objects
  gem 'factory_girl_rails', '4.3.0'
  gem 'shoulda-matchers', '2.4.0'
  # Cucumber for user stringsories and db cleaner utility below
  gem 'cucumber-rails', '1.4.0', require: false
  gem 'database_cleaner', '1.2.0'
  # speed up test server
  gem 'spork', '0.9.2'
  # guard/spork integration
  gem 'guard-spork', '1.5.1'
  # Helps in debugging tests by being able to launch browser
  gem 'launchy', '2.4.2'
  # Mac-dependent gems
  gem 'rb-fsevent', '0.9.3', require: false
  # Growl notifications
  gem 'growl', '1.0.3'
  # Code coverage reports
  gem 'simplecov', '0.8.2', require: false
  gem 'coveralls', '0.7.0', require: false
  # Performance testing  ## Broken in Ruby 2.0.0
  # gem 'rack-perftools_profiler', require: 'rack/perftools_profiler'
  # Test other databases on Travis CI if needed
  # gem 'mysql2'
  # gem 'sqlite3'
end