-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathGemfile
More file actions
45 lines (36 loc) · 721 Bytes
/
Gemfile
File metadata and controls
45 lines (36 loc) · 721 Bytes
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
source 'https://rubygems.org'
gem 'rails', '4.2.3'
gem 'rails-api'
gem 'spring', :group => :development
gem 'puma'
gem 'pg'
gem 'jwt'
gem 'bcrypt', '~> 3.1.7'
gem 'twilio-ruby', '~> 4.2.1'
gem 'httparty'
gem 'dotenv-rails'
gem 'icalendar', '2.3.0'
gem 'cloudinary'
gem 'sidekiq', '3.5.0'
gem 'faker', '1.5.0'
gem 'omniauth-facebook'
gem 'omniauth-venmo'
# group :development, :test do
# # gem 'pry-rails'
# # gem 'pry-byebug'
# gem 'rspec-rails', '~> 3.0'
# end
group :development, :test do
gem "jasmine"
gem "pry"
gem 'rspec-rails', '~> 3.0'
gem 'awesome_print'
end
group :test do
gem "capybara"
gem "factory_girl_rails"
gem "poltergeist"
end
group :production do
gem 'rails_12factor'
end