forked from ReadyResponder/ReadyResponder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
111 lines (91 loc) · 2.74 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
source 'https://rubygems.org'
gem 'rails', '~> 5.2.0'
# This is needed until upstream projects update their gemspecs
# This avoids a vulnerability in 3.7.1
gem 'sprockets', '3.7.2'
gem 'rack'
gem 'ransack'
gem 'carrierwave'
gem 'pg', '~> 1.0.0'
gem 'rmagick', '~> 2.15.4'
gem 'simple_form', '~> 5.0.0'
gem 'redcarpet'
gem 'geocoder'
gem 'cancancan'
gem 'acts-as-taggable-on', '~> 6.0' #must be this version for Rails5
gem 'rqrcode'
gem 'vcardigan'
gem 'therubyracer'
gem 'jquery-turbolinks'
source 'https://rails-assets.org' do
gem 'rails-assets-datetimepicker'
end
# Handles text messages and voice calls
gem 'twilio-ruby', '~> 4.11.1'
#Handles authentication
gem 'devise', '~> 4.4.3'
# For model versioning
gem 'paper_trail'
#For nested forms
gem 'cocoon'
group :test, :development do
gem 'dotenv-rails'
gem 'thin'
gem 'rspec-rails'
gem "factory_bot_rails", "~> 4.0"
gem 'capybara'
# Use selenium and chrome for handling JS automated testing
gem 'selenium-webdriver'
gem 'webdrivers', '~> 4.0'
gem 'guard-rspec', require: false
gem 'guard-livereload'
gem 'launchy'
gem 'letter_opener'
gem 'better_errors'
gem 'binding_of_caller'
gem 'meta_request'
gem 'database_cleaner', '1.0.1'
gem 'test-unit'
gem 'pry'
# Call 'byebug' anywhere in the code to stop execution and get a debugger console
gem 'byebug'
end
group :development do
# Access an IRB console on exception pages or by using <%= console %> in views
gem 'web-console', '~> 3.0'
# Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
gem 'spring'
# Use Capistrano for deployment
gem 'capistrano-rails'
# Helps you figure out where a piece of the UI is coming from by
# adding comments to the source code at the begin and end of each template.
gem 'noisy_partials', git: 'https://github.com/gwshaw/noisy_partials.git'
end
group :production do
# Use Unicorn as the app server
gem 'unicorn'
end
group :test do
gem 'shoulda-matchers'
gem 'simplecov'
gem 'puma'
gem 'rails-controller-testing'
# Allows you to freeze time during tests
gem 'timecop'
end
gem 'sass-rails'
gem 'uglifier', '>= 1.0.3'
# Use CoffeeScript for .coffee assets and views
gem 'coffee-rails', '~> 4.2.2'
# 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'
# bundle exec rake doc:rails generates the API under doc/api.
gem 'sdoc', '~> 0.4.0', group: :doc
# Use ActiveModel has_secure_password
gem 'bcrypt-ruby', '~> 3.1.0'
gem 'jquery-ui-rails'
gem 'bootstrap-sass', '3.3.7'