-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathGemfile
More file actions
97 lines (80 loc) · 1.95 KB
/
Gemfile
File metadata and controls
97 lines (80 loc) · 1.95 KB
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
94
95
96
97
source 'https://rubygems.org'
gem 'rails', '4.0.1'
gem "mysql2", '0.3.18'
gem 'sass-rails', '~> 4.0.0'
gem 'uglifier', '>= 1.3.0'
gem 'coffee-rails', '~> 4.0.0'
gem 'jquery-rails'
gem 'turbolinks'
gem 'jbuilder', '~> 1.2'
gem 'haml'
gem 'simple_form'
gem 'countries', '~> 2.1', '>= 2.1.4'
#API gems
gem 'gibbon'
gem 'flickraw'
gem 'youtube_it'
gem 'mandrill-api', '~> 1.0.51'
gem "httparty"
gem 'rest-client', '~> 1.8' #enables sending files with httparty
gem 'mimemagic', '~> 0.3.1'
gem 'oauth2'
gem 'gibberish' # For referral payment data
gem 'figaro'
gem 'clockwork'
gem 'daemons'
gem 'nokogiri'
gem 'stringex'
gem 'newrelic_rpm', "~> 3.7.2.195"
gem 'honeybadger'
gem 'unicorn'
gem 'unicorn-worker-killer'
gem 'twitter'
#Semrush API gem
gem 'semrush'
# gem 'bullhorn-rest', git: 'https://github.com/bobop/bullhorn-rest.git', branch: 'create_candidates'
gem 'bullhorn-rest', git: 'https://github.com/volcanic-uk/bullhorn-rest.git', branch: 'auth_errors'
# gem 'bullhorn-rest', :path => "../gems/bullhorn-rest", branch: 'create_candidates'
gem 'hashie'
gem 'htmlentities', '~> 4.3.2'
gem 'savon', '~> 2.0'
gem 'attr_encrypted', '~> 1.3.4'
gem 'sanitize', '3.0.0'
gem 'shoryuken', '~> 2.0.3'
# Data Import app
gem 'devise'
gem 'dragonfly', '~> 1.0.10'
gem 'dragonfly-s3_data_store'
gem 'remotipart', '~> 1.2'
gem "twitter-bootstrap-rails", '~> 3.2'
gem 'sidekiq', '~> 3.3'
gem 'sinatra', :require => nil
group :development do
gem 'sqlite3'
gem 'bootstrap-sass'
gem 'debase'
gem 'ruby-debug-ide', '~> 0.7.0.beta4'
end
group :test do
gem "factory_girl_rails"
gem "faker"
# gem "byebug"
gem 'database_cleaner'
gem 'chromedriver-helper'
gem 'selenium-webdriver'
gem 'shoulda', '~> 3.5'
gem 'shoulda-matchers', '~> 2.0'
gem 'simplecov', require: false
gem 'vcr'
gem 'webmock'
gem 'rspec'
gem 'rspec-rails'
gem 'minitest'
end
group :development, :test do
gem 'pry-byebug'
end
group :production do
# gem 'unicorn'
# gem 'unicorn-worker-killer'
end