-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathGemfile
46 lines (41 loc) · 1.7 KB
/
Gemfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
source 'https://rubygems.org'
gem 'rails', '~> 4.2.0'
gem 'rails-i18n' # Translations for standard Rails stuff (like time_ago_in_words)
gem 'pg' # Postgres gem, used in production
gem 'rails_12factor', group: :production # Makes some Heroku-friendly tweaks.
gem 'sass-rails', '~> 5.0' # A nicer way of writing CSS.
gem 'uglifier', '>= 1.3.0'
gem 'coffee-rails', '~> 4.1.0'
gem 'jquery-rails'
gem 'turbolinks'
gem 'jbuilder', '~> 2.0'
gem 'sdoc', '~> 0.4.0', group: :doc
gem 'slim-rails' # Templating library
gem 'factory_girl_rails' # Mock objects
gem 'cancancan' # Allow for different kinds of users
gem 'devise' # Authentication framework
gem 'devise-i18n' # Translated strings for Devise
gem 'twitter-bootstrap-rails' # CSS framework
gem 'bourbon' # Useful CSS functions
gem 'google-webfonts-rails' # Helpers for webfonts
gem 'aasm' # Acts as state machine, used by invitations
gem 'draper' # Decorator objects, to make view logic a little less repetitive
gem 'redcarpet' # Render Markdown as HTML
group :development, :test do
gem 'sqlite3' # Lightweight DB used in development
gem 'rspec-rails' # Testing
gem 'capybara' # Drive a web browser from our test framework
gem 'byebug'
gem 'faker' # Generate filler content
gem 'pry-remote' # Connect to a debugger session remotely
gem 'bullet' # Look for and catch N+1 queries
end
group :development do
gem 'web-console', '~> 2.0' # Access an IRB console on exception pages or by using <%= console %> in views
gem 'letter_opener' # Open emails in a browser
gem 'spring' # Keep app running in background.
end
group :test do
gem 'simplecov', require: false # Code coverage metrics
gem 'simplecov-console', require: false # Output code coverage report on the CLI
end