-
Notifications
You must be signed in to change notification settings - Fork 3
/
Gemfile
executable file
·58 lines (45 loc) · 1.67 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
source 'https://rubygems.org'
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem 'rails', '4.2.3'
# Use MySQL as the database for Active Record
gem 'pg'
# Use SCSS for stylesheets
gem 'sass-rails', '~> 5.0.3'
# Use Uglifier as compressor for JavaScript assets
gem 'uglifier', '>= 2.6.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'
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
gem 'jbuilder', '~> 2.3.1'
# bundle exec rake doc:rails generates the API under doc/api.
gem 'sdoc', '~> 0.4.1', group: :doc
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem 'tzinfo-data', '~> 1.2014.10', platforms: [:mingw, :mswin]
# Hide some of our ID's
gem 'obfuscate_id', '~> 0.2.0'
# Add kaminari for paging results
gem 'kaminari', '~> 0.16.1'
# Add breadcrumbs on rails to provide breadcrumbs
gem 'breadcrumbs_on_rails', '~> 2.3.0'
# Add flutie for helpers with title and body class
gem 'flutie', '~> 2.0.0'
# Add devise for user authentication
gem 'devise', '~> 3.5.1'
# Add cancancan for authorization
gem 'cancancan', '~> 1.12.0'
# Add country_select to provide a list of countries
gem 'countries', '~> 0.11.4'
gem 'country_select', '~> 2.2.0'
# Add support for currencies
gem 'money', '~> 6.5.1'
# Add delayed jobs so we can background tasks that aren't critical
gem 'daemons', '~> 1.2.3'
gem 'delayed_job', '~> 4.0.6'
gem 'delayed_job_active_record', '~> 4.0.3'
# Yay Stripe!
gem 'stripe', '~> 1.22'
gem 'stripe_event', '~> 1.5.0'
# Puma Server
gem 'puma'