forked from LocalOrbit/localorbit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGemfile
More file actions
182 lines (156 loc) · 4.45 KB
/
Gemfile
File metadata and controls
182 lines (156 loc) · 4.45 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
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
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
source 'https://rubygems.org'
git_source(:github) do |repo_name|
repo_name = "#{repo_name}/#{repo_name}" unless repo_name.include?("/")
"https://github.com/#{repo_name}.git"
end
ruby '2.3.8'
gem 'rails', '~> 4.1.11'
gem 'pg', '~> 0.21.0'
# Assets
gem 'sass-rails', '~> 4.0.0'
gem 'uglifier', '~> 2.7.2'
gem 'coffee-rails', '~> 4.0.0'
# The jQuery update is doing something weird
# with data confirms and poltergeist
gem 'jquery-rails', '~> 3.1.3'
gem 'jquery-ui-rails'
gem 'accountingjs-rails'
gem 'compass-rails'
gem 'underscore-rails'
gem 'wysihtml5-rails'
gem 'active_model_serializers'
gem 'active_record_query_trace'
gem 'active_record_union'
gem 'acts_as_geocodable'
gem 'audited-activerecord'
gem 'awesome_nested_set'
gem 'bootsnap', require: false # TODO: Remove this when we upgrade to rails 5.2
gem 'color'
gem 'countries'
gem 'csv_builder'
gem 'delayed_job_active_record'
gem 'devise', '~> 3.5.10'
gem 'devise_invitable'
gem 'devise_masquerade'
gem 'dragonfly-s3_data_store'
gem 'draper'
gem 'figaro'
gem 'font_assets'
gem 'graticule'
gem 'groupdate', :git => 'https://github.com/trestrantham/groupdate.git', :branch => 'custom-calculations' # Waiting on https://github.com/ankane/groupdate/pull/53
gem 'interactor-rails', '< 3.0'
gem 'interactor', '< 3.0' # We are not ready for 3 yet
gem 'jbuilder'
gem 'jwt'
gem 'kaminari' # Paginator
gem 'pdfkit'
gem 'periscope-activerecord'
gem 'pg_search'
gem 'postgres_ext'
gem 'rack-canonical-host'
gem 'ransack'
gem 'recaptcha'
gem 'simpleidn'
gem 'stripe', '5.14.0'
gem 'stripe_event', '2.3.0'
gem 'font-awesome-rails'
gem 'wysiwyg-rails'
gem 'kiba' # ETL Tool
gem "browserify-rails" # Support
gem "react-rails"
gem 'migration_data'
gem "pundit"
gem 'httparty'
gem 'omniauth-stripe-connect'
gem 's3_direct_upload', :git => 'https://github.com/waynehoover/s3_direct_upload.git'
gem 'constructor'
gem 'tabulator', :git => 'https://github.com/dcrosby42/tabulator.git'
gem 'rschema', :git => 'https://github.com/tomdalling/rschema.git'
gem 'turbolinks'
install_if -> { RUBY_PLATFORM =~ /darwin/ } do
gem 'wkhtmltopdf-binary', '0.12.5.1'
end
install_if -> { ENV['ON_HEROKU'] == 'true' } do
gem 'wkhtmltopdf-heroku'
end
# Product import/export
gem 'rubyXL', require: false # XLSX
gem 'spreadsheet', require: false # XLS
gem 'slop', '~> 3.0', require: false # option parsing
gem 'dedent', require: false
gem 'activerecord-import', require: false
gem 'grape' # API v2
gem 'grape-active_model_serializers' # API v2
gem 'rack-cors', :require => 'rack/cors' # API v2
gem 'grape-swagger' # API V2, documentation
gem 'rollbar'
gem 'quickbooks-ruby', github: 'ruckus/quickbooks-ruby', ref: 'ba54c446bf37'
gem "attr_encrypted", '~> 3.0.0'
group :doc do
gem 'sdoc', require: false
end
group :development do
gem 'bullet'
gem 'ultrahook'
gem 'spring'
gem 'spring-commands-rspec'
gem 'rubocop', require: false
gem 'quiet_assets'
gem 'aws-sdk'
gem 'railroady'
gem 'rails_view_annotator'
gem 'rubycritic', require: false
gem 'mailcatcher'
gem 'unicorn'
# profiling, see https://github.com/MiniProfiler/rack-mini-profiler#installation
gem 'rack-mini-profiler'
gem 'memory_profiler'
gem 'flamegraph'
gem 'stackprof'
end
group :development, :test do
gem 'factory_bot_rails'
gem 'rspec-rails', '~> 3.0'
gem 'rspec_junit_formatter', :git => 'https://github.com/sj26/rspec_junit_formatter.git'
gem 'rspec-collection_matchers'
gem 'pry-rails'
gem 'pry-remote'
gem 'byebug'
gem 'pry-byebug'
gem 'launchy'
gem 'awesome_print'
gem 'konacha'
gem 'konacha-chai-matchers'
gem 'webmock'
gem 'capybara-slow_finder_errors'
gem 'capybara'
gem 'selenium-webdriver', '3.141.0' # Can remove once we're able to upgrade capybara https://stackoverflow.com/a/55816611/444921
gem 'webdrivers'
end
group :test do
gem 'simplecov', require: false
gem 'domino', '< 0.8.0' # v0.8.0 breaks child classes in PackList. Need to dig in more.
gem 'email_spec'
gem 'database_cleaner'
gem 'guard-rspec', require: false
gem 'guard-konacha-rails'
gem 'timecop'
gem 'vcr'
gem 'fire_poll', '1.2.0'
gem 'capybara-screenshot'
gem 'stripe-ruby-mock', '~> 2.5.8', :require => 'stripe_mock'
end
group :staging do
gem 'skylight'
end
group :production, :staging do
gem 'newrelic_rpm'
gem 'newrelic-dragonfly'
#gem 'passenger'
gem 'rack-cache', require: 'rack/cache'
gem 'rails_12factor'
gem 'platform-api'
end
group :production, :staging, :development do
gem 'puma'
end