-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
93 lines (68 loc) · 2.11 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
source 'https://rubygems.org'
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem 'rails', '~> 4.2.4'
# Use postgresql as the database for Active Record
gem 'pg'
# Use SLIM for the front-end templating language
gem 'slim-rails'
# Use Bootstrap/SCSS for stylesheets
gem 'bootstrap-sass', '~> 3.3.5'
gem 'sass-rails', '~> 5.0'
# Use Uglifier as compressor for JavaScript assets
gem 'uglifier', '>= 1.3.0'
# Use CoffeeScript for .js.coffee assets and views
gem 'coffee-rails', '~> 4.0.0'
# Use jquery as the JavaScript library
gem 'jquery-rails'
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
gem 'jbuilder', '~> 1.2'
group :doc do
# bundle exec rake doc:rails generates the API under doc/api.
gem 'sdoc', require: false
end
# Use Simple Form for easier form generation
gem 'simple_form', '~> 3.2'
# Use Devise for user authentication
gem 'devise'
# jQuery UI for the Rails asset pipeline
gem 'jquery-ui-rails'
# Use omniauth-facebook gem for facebook login
gem 'omniauth-facebook'
# Use omniauth-google-oauth2 for google login
gem 'omniauth-google-oauth2'
# Use Pusher for realtime updates
gem 'pusher'
# Use Figaro for environment configuration
gem 'figaro'
group :development do
# awesome_print gem for more readable output in terminal
gem 'awesome_print'
# Use spring to preload the environent for faster tests
gem 'spring'
# Adds spring compatibility to rspec
gem 'spring-commands-rspec'
end
group :development, :test do
# Use Pry instead of IRB
gem 'pry-rails'
gem 'pry-byebug'
gem 'rspec-rails', '~> 3.0'
# Use rubocop for linting
gem 'rubocop', require: false
# Use Factory Girl for factory support
gem 'factory_girl_rails'
# Use faker with factory girl to generate fake data for testing
gem 'faker'
end
group :test do
# Use Capybara for acceptance testing
gem 'capybara', '~> 2.5'
# Use coveralls for code coverage analysis
gem 'coveralls', require: false
# Use shoulda-matchers for easy one-line tests
gem 'shoulda-matchers'
end
group :production do
# Use rails_12factor to serve static assets in production
gem 'rails_12factor'
end