forked from houdiniproject/houdini
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
executable file
·145 lines (109 loc) · 3.05 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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
source 'https://rubygems.org'
ruby '2.3.7'
gem 'rake'
gem 'rails', '3.2.22.5'
gem 'rails_12factor'
# https://stripe.com/docs/api
gem 'stripe'
# Compression of assets on heroku
# https://github.com/romanbsd/heroku-deflater
gem 'heroku-deflater', :group => :production
# json serialization
# https://github.com/nesquena/rabl
gem 'rabl'
gem 'parallel'
gem 'puma'
gem 'bootsnap', require: false
gem 'rack-timeout'
gem 'puma_worker_killer'
gem 'test-unit', '~> 3.0'
gem 'hamster'
gem 'aws-ses'
gem 'aws-sdk'
# for blocking ip addressses
gem 'rack-attack'
# For modularizing javascript
# https://github.com/browserify-rails/browserify-rails
gem 'browserify-rails'
gem 'sprockets'
# for serving fonts on cdn
# https://github.com/ericallam/font_assets
gem 'font_assets', '~> 0.1.14'
# Database (postgres)
gem 'pg' # Postgresql
gem 'qx', path: 'gems/ruby-qx'
gem 'dalli'
gem 'memcachier'
gem 'param_validation', path: 'gems/ruby-param-validation'
# Print colorized text lol
gem 'colorize'
# https://github.com/collectiveidea/delayed_job_active_record
gem 'delayed_job_active_record'
# for styling emails
# https://github.com/Mange/roadie-rails
gem 'roadie-rails'
# For nat lang parsing of dates
gem 'chronic'
# Images
# https://github.com/carrierwaveuploader/carrierwave
gem 'carrierwave'
gem 'carrierwave-aws' # for uploading images to amazon s3
gem 'mini_magick'
# https://github.com/jnunemaker/httparty
gem 'httparty'
# User authentication
# https://github.com/plataformatec/devise
gem 'devise'
gem 'devise-async'
# http://www.rubygeocoder.com/
gem 'geocoder' # for adding latitude and longitude to location-based tables
# https://github.com/buytruckload/nearest_time_zone
gem 'nearest_time_zone' # for detecting timezone from lat/lng
gem 'mail_view'
gem 'fullcontact' # Full Contact API; includes #Hashie::Mash
# Nice table printing of data for the console
gem 'table_print'
gem 'bunny', '>= 2.6.3'
gem 'rails-i18n', '~> 3.0.0' # For 3.x
gem 'i18n-js'
gem 'countries'
group :development, :ci do
gem 'traceroute'
gem 'debase'
gem 'ruby-debug-ide'
end
group :development, :ci, :test do
gem 'timecop'
gem 'pry'
#gem 'pry-byebug'
gem 'binding_of_caller'
gem 'rspec'
gem 'rspec-rails'
gem 'database_cleaner'
gem 'dotenv-rails'
gem 'ruby-prof', '0.15.9'
gem 'stripe-ruby-mock', '~> 2.4.1', :require => 'stripe_mock', git: 'https://github.com/commitchange/stripe-ruby-mock.git', :branch => '2.4.1'
gem 'factory_bot'
gem 'factory_bot_rails'
gem 'action_mailer_matchers'
gem 'simplecov', '~> 0.16.1', require: false
end
group :test do
gem 'webmock'
end
# Gems used for asset compilation
gem 'sass', '3.2.19'
gem 'sass-rails', '3.2.6'
gem 'uglifier'
# make logging less terrible in rails
gem 'lograge'
gem 'config', '> 1.5'
gem 'dry-validation' # used only for config validation
gem 'foreman'
gem 'grape', '~> 1.1.0'
gem 'grape-entity', git: 'https://github.com/ruby-grape/grape-entity.git', ref: '0e04aa561373b510c2486282979085eaef2ae663'
gem 'grape-swagger'
gem 'grape-swagger-entity'
gem 'grape_url_validator'
gem 'grape_logging'
gem 'grape_devise', path: 'gems/grape_devise'