forked from lucianot/dealbook
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
88 lines (68 loc) · 1.71 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
source 'https://rubygems.org'
gem 'rails', '>= 3.2.7'
gem 'jquery-rails'
gem 'json', '~> 1.7'
gem 'thin'
# db
gem 'pg'
gem 'foreigner', '~> 1.1'
# users and roles
gem 'devise', '~> 2.1'
gem 'cancan', '~> 1.6'
gem 'nifty-generators'
# versions
gem 'paper_trail', '~> 2.6'
# views
gem 'simple_form', '~> 2.0'
gem 'country_select', '~> 1.0'
gem 'will_paginate', '~> 3.0'
gem 'bootstrap-sass', '~> 2.0.4.0'
# search
gem 'pg_search'
gem 'friendly_id'
# analytics
gem 'mixpanel'
# 3rd party auth
gem 'omniauth'
gem 'omniauth-linkedin'
gem 'omniauth-twitter'
# Gems used only for assets and not required
# in production environments by default.
group :assets do
gem 'sass-rails', '~> 3.2.3'
gem 'coffee-rails', '~> 3.2.1'
# See https://github.com/sstephenson/execjs#readme for more supported runtimes
# gem 'therubyracer', :platform => :ruby
gem 'uglifier', '>= 1.0.3'
gem 'chosen-rails', '~> 0.9'
gem 'jquery_datepicker', '~> 0.3'
end
group :development, :test do
gem 'rspec-rails', '~> 2.10'
gem 'capybara', '~> 1.1'
gem 'machinist', '~> 2.0'
gem 'faker', '~> 1.0'
gem 'shoulda-matchers', '~> 1.1'
gem 'valid_attribute', '~> 1.1'
gem 'rb-fsevent', '~> 0.9' #, :require => false if RUBY_PLATFORM =~ /darwin/i
gem 'guard-rspec', '~> 0.7'
gem 'spin', '~> 0.4'
gem 'guard-spin', '~> 0.1'
gem 'pry'
gem 'guard-livereload'
gem 'rack-livereload'
end
group :production do
gem 'heroku'
end
# To use ActiveModel has_secure_password
# gem 'bcrypt-ruby', '~> 3.0.0'
# To use Jbuilder templates for JSON
# gem 'jbuilder'
# Use unicorn as the app server
# gem 'unicorn'
# Deploy with Capistrano
# gem 'capistrano'
# To use debugger
# gem 'ruby-debug19', :require => 'ruby-debug'
gem "mocha", :group => :test