crmis/weddings

View on GitHub
Gemfile

Summary

Maintainability
Test Coverage
source 'https://rubygems.org'
# Generated with rails 4.2.0 on ruby 2.1.5p273 (2014-11-13 revision 48405) [x86_64-darwin14.0]
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'.
gem 'rails', '4.2.2'
# Use SCSS for stylesheets.
gem 'sass-rails', '~> 5.0.3'
# Use Uglifier as compressor for JavaScript assets.
gem 'uglifier', '~> 2.7.1'
# Use CoffeeScript for .coffee assets and views.
gem 'coffee-rails', '~> 4.1.0'
# Use jquery as the JavaScript library.
gem 'jquery-rails', '~> 4.0.4'
# Turbolinks makes following links in your web application faster. Read more: https://github.com/rails/turbolinks
gem 'turbolinks', '~> 2.5.3'

group :production do
  # Postgres for production Active Record database.
  gem 'pg', '~> 0.18.2'
  # 12 Factor App Gem for Heroku.
  gem 'rails_12factor', '~> 0.0.3'
  # New Relic for application metrics.
  gem 'newrelic_rpm', '~> 3.12.0.288'
end

group :development, :test do
  # Use sqlite3 as the database for Active Record.
  gem 'sqlite3', '~> 1.3.10'
  # seed_dump creates a seeds file from the active database. Run: rake db:seed:dump
  gem 'seed_dump', '3.2.2'
  # rspec for dependency
  gem 'rspec', '~> 3.3.0'
  # rspec for BDD tests (Behaviour Driven Development)
  gem 'rspec-rails', '~> 3.3.1'
  # Factory Girl for testing setup
  gem 'factory_girl_rails', '~> 4.5.0'
  # Database Cleaner for testing
  gem 'database_cleaner', '~> 1.4.0'
  # Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
  gem 'spring', '~> 1.3.4'
end

# Devise for authentication.
gem 'devise', '~> 3.5.1'

# Cancancan for user roles.
gem 'cancancan', '~> 1.11.0'

# Paperclip for better image uploads.
gem 'paperclip', '~> 4.2.3'

# Viewable to make rooms viewable.
gem 'viewable', '~> 0.5.19'

# Mail Form gem for sending mail directly from a form.
gem 'mail_form', '~> 1.5.1'

#my-bookable
gem 'my-bookable', :git => 'https://github.com/staceysmells/bookable.git', :branch => 'master'

# Active Admin
gem 'activeadmin', :git => 'https://github.com/activeadmin/activeadmin.git', :branch => 'master'

# Bundle on OSX and Linux only. (including deployment)
platforms :ruby do
  # Unicorn for worker process management (won't bundle on non-unix)
  # => should now only bundle on OSX & Linux. And hopefully deploy!
  gem 'unicorn', '~> 4.9.0'
  # CLI gem for atom-beautify package. (Ctrl+Alt+B)
  gem 'ruby-beautify', '~> 0.97.3'
end

platforms :mingw, :mswin, :x64_mingw, :jruby do
  # tz-info for windows timezone data.
  gem 'tzinfo-data', '~> 1.2015.5'
  # Responders gem, required on windows for viewable
  gem 'responders', '~> 2.0'
end