-
Notifications
You must be signed in to change notification settings - Fork 1
/
Gemfile
executable file
·77 lines (72 loc) · 2.15 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
source 'https://rubygems.org'
ruby '2.0.0'
#ruby-gemset=showboarder
gem 'rails', '4.1.0'
gem 'bootstrap-sass', '3.1.1.0'
gem 'font-awesome-rails', '4.2.0.0'
gem 'jquery-easing-rails', '0.0.1'
gem 'bcrypt-ruby', '3.1.2'
gem 'wikipedia-client', '1.3.0'
gem 'sass-rails', '4.0.3'
gem 'uglifier', '2.1.1'
gem 'coffee-rails', '4.0.1'
gem 'jquery-rails', '3.0.4'
gem 'turbolinks', '1.1.1'
gem 'jbuilder', '1.0.2'
gem 'newrelic_rpm', '3.7.2.195'
gem 'devise', '3.2.3'
gem 'omniauth-facebook', '1.6.0'
gem 'will_paginate', '3.0.4'
gem 'cancancan', '1.7.1'
gem 'google_places', '0.20.0'
gem 'sprockets-rails', '2.1.1'
gem 'figaro', '0.7.0'
gem 'stripe', :git => 'https://github.com/stripe/stripe-ruby'
gem 'simple_form', '>= 3.1.0.rc1'
# gem 'stripe_event', '1.1.0'
gem 'react-rails', '~> 1.0.0.pre', github: 'reactjs/react-rails'
gem 'omniauth-stripe-connect', '>= 2.4.0'
gem 'retina_tag', '1.3.1'
gem 'aasm', '3.1.1'
gem 'sidekiq', '3.0.2'
gem 'paper_trail', '3.0.2' #, git: 'https://github.com/airblade/paper_trail', branch: 'rails4'
gem 'jquery-countdown-rails', '2.0.0'
gem 'devise-async', '0.9.0'
gem 'nested_form', '0.3.2'
gem 'bootstrap-datepicker-rails', '1.3.0.2'
gem 'google_timezone', '0.0.3'
gem 'rails3-jquery-autocomplete', '1.0.14'
gem 'jquery-ui-rails', '5.0.0'
gem 'echowrap', '0.1.4'
gem 'less-rails', '~> 2.6.0'
gem 'therubyracer', '0.12.1'
gem 'postrank-uri', '~> 1.0.18'
gem "paperclip", "~> 4.2"
gem "aws-sdk", "1.60.1"
gem "sentry-raven", :git => "https://github.com/getsentry/raven-ruby.git"
group :development do
gem 'sqlite3', '1.3.8'
gem 'rspec-rails', '3.0.2'
gem 'rails_best_practices', '1.15.4'
gem 'capistrano', '3.2.1'
# rails specific capistrano funcitons
gem 'capistrano-rails', '1.1.1'
# integrate bundler with capistrano
gem 'capistrano-bundler', '1.1.3'
# if you are using RVM
gem 'capistrano-rvm', '0.1.1'
gem 'rvm-capistrano', '1.5.0'
gem 'capistrano-sidekiq', github: 'seuros/capistrano-sidekiq'
end
group :test do
gem 'capybara', '2.2.0'
gem 'factory_girl_rails', '4.2.0'
end
group :doc do
gem 'sdoc', '0.3.20', require: false
end
group :production do
gem 'pg', '0.15.1'
gem 'rails_12factor', '0.0.2'
gem 'unicorn', '4.8.3'
end