forked from tylerjnap/cash-money-records
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
59 lines (50 loc) · 1.21 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
source 'https://rubygems.org'
gem 'rails', '4.1.4'
gem 'sass-rails', '~> 4.0.0'
gem 'uglifier', '>= 1.3.0'
gem 'coffee-rails', '~> 4.0.0'
gem 'jquery-rails'
gem 'turbolinks'
gem 'jbuilder', '~> 1.2'
gem "therubyracer"
gem "less-rails"
gem 'twitter-bootstrap-rails'
gem 'devise'
gem 'better_errors', :groups => [:development]
gem "binding_of_caller"
gem 'mailjet', :git => 'https://github.com/mailjet/mailjet-gem.git'
# gem 'mailjet' , :path => '/Users/tylernappy/Mailjet/mailjet_software/mailjet-gem'
# gem 'mailjet' , :path => '/Users/tylernappy/desktop/zeda_mailjet_gem/mailjet-gem'
gem 'twilio-ruby'
# gem 'aws-s3'
gem 'nokogiri'
# gem 'open-uri'
# gem 'spf'
gem 'yahoo-finance'
# gem 'gruff'
#may take this out
# gem 'localtunnel'
# Use ActiveModel has_secure_password
# gem 'bcrypt-ruby', '~> 3.1.2'
# Use unicorn as the app server
# gem 'unicorn'
# Use Capistrano for deployment
# gem 'capistrano', group: :development
gem 'em-websocket'
# Use debugger
gem 'httparty'
group :production do
gem 'pg'
gem 'rails_12factor'
end
group :development, :test do
# gem 'mysql2'
gem 'sqlite3'
gem 'rspec-rails'
gem 'factory_girl_rails'
gem 'debugger'
gem 'dotenv-rails'
end
group :doc do
gem 'sdoc', require: false
end