forked from Open-Source-GIS/ridepilot
-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathGemfile
174 lines (151 loc) · 4.73 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
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
source 'https://rubygems.org'
ruby '2.4.5'
git_source(:github) do |repo_name|
repo_name = "#{repo_name}/#{repo_name}" unless repo_name.include?("/")
"https://github.com/#{repo_name}.git"
end
### DEFAULT RAILS GEMS ####################
gem 'rails', '~> 5.2.1'
# Use SCSS for stylesheets
gem 'sass-rails'
# Use Uglifier as compressor for JavaScript assets
gem 'uglifier'
# Use CoffeeScript for .js.coffee assets and views
gem 'coffee-rails'
# See https://github.com/sstephenson/execjs#readme for more supported runtimes
gem 'therubyracer', platforms: :ruby
# Use jquery as the JavaScript library
gem 'jquery-rails'
# Turbolinks makes following links in your web application faster. Read more: https://github.com/rails/turbolinks
#gem 'turbolinks'
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
# gem 'jbuilder', '~> 2.0'
# A set of Rails responders to dry up your application
gem 'responders', '~> 2.0'
# Use PostgreSQL as db for activerecord
gem 'pg'
### UI ####################################
# view partial template
gem 'haml'
# bootstrap
gem 'bootstrap-sass'
# needed for trip address picker
gem 'twitter-typeahead-rails', github: 'camsys/twitter-typeahead-rails'
gem 'handlebars_assets'
# jquery autocomplete
gem 'rails-jquery-autocomplete'
# view pagination
gem 'will_paginate'
# html datatables
gem 'jquery-datatables-rails'
# font-awesome icons
gem "font-awesome-rails"
# overcome IE9 4096 per stylesheet limit
gem 'css_splitter'
# Form helper for accepts_nested_attributes_for
gem 'nested_form'
# styling
gem 'bootstrap-kaminari-views'
# momentjs for datetime parsing
gem 'momentjs-rails'
# phone number validation and display
gem 'phony_rails'
# Printing
gem 'wicked_pdf'
# In-line editing
gem 'bootstrap-editable-rails'
### USER AUTH ##############################
gem 'cancancan'
gem 'devise'
gem 'devise_account_expireable'
gem 'devise_security_extension', github: 'camsys/devise_security_extension'
#gem 'devise_security_extension', path: '~/devise_security_extension'
### API ##############################
# Rack Middleware for handling Cross-Origin Resource Sharing (CORS), which makes cross-origin AJAX possible.
gem 'rack-cors', :require => 'rack/cors'
# Token authentication
gem 'simple_token_authentication', '~> 1.0'
# API serializer
#gem 'fast_jsonapi', github: 'Netflix/fast_jsonapi', branch: 'dev'
### GEOSPATIAL ##############################
gem 'rgeo'
gem "rgeo-proj4"
gem 'activerecord-postgis-adapter'
### FILE UPLOAD #############################
gem 'paperclip'
gem 'fog-aws'
gem 'remotipart' # allows remote multipart (file upload) forms
gem 'aws-sdk-s3', '~> 1'
### CAMSYS ENGINES ###########################
# reporting engine
gem 'reporting', github: 'camsys/reporting', branch: 'rails_5'
#gem 'reporting', path: '~/reporting'
gem 'translation_engine', github: 'camsys/translation_engine', branch: 'rails_5'
#gem 'translation_engine', path: '~/translation_engine'
gem 'ridepilot_cad_avl', github: 'camsys/ridepilot_cad_avl', branch: 'develop'
#gem 'ridepilot_cad_avl', path: '~/ridepilot_cad_avl'
### OTHERS ##################################
# Manage app-specific cron tasks using a Ruby DSL, see config/schedule.rb
gem 'whenever', :require => false
# RADAR current version is 0.13.0, but schedule_atts requires > 0.7.0
gem 'ice_cube', '~> 0.6.8'
# Date and time validation plugin for ActiveModel and Rails
gem 'jc-validates_timeliness'
# Adds the ability to normalize attributes cleanly with code blocks and predefined normalizers
gem 'attribute_normalizer'
# For change tracking and auditing
gem 'paper_trail'
# ENV var management
gem 'figaro'
# soft-delete
gem "paranoia"
# logging activities for Tracker Action Log
gem 'public_activity'
# Manage application-level settings
gem 'rails-settings-cached'
# background workder
gem 'sidekiq'
# Use redis as the cache_store for Rails
gem 'redis-rails'
# Excel
gem 'rubyXL'
# Data migration
gem 'data_migrate'
group :production do
gem 'exception_notification'
end
group :integration, :qa, :production do
gem 'rails_12factor'
gem 'unicorn'
gem 'rack-timeout'
gem 'wkhtmltopdf-binary'
end
group :test, :development do
gem 'byebug'
gem 'rspec-rails'
gem 'rails-controller-testing'
gem 'capybara'
gem 'factory_bot_rails'
gem 'database_cleaner'
gem 'faker'
gem 'timecop'
end
group :development do
gem 'puma', '~> 3.7'
# preview mail in dev
gem "letter_opener"
# Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
gem 'spring'
gem "spring-commands-rspec"
gem 'better_errors'
gem 'binding_of_caller'
gem 'web-console', '~> 2.0'
end
group :test do
gem 'launchy'
gem 'selenium-webdriver'
end
group :doc do
# bundle exec rake doc:rails generates the API under doc/api.
gem 'sdoc'
end