-
Notifications
You must be signed in to change notification settings - Fork 4
/
Gemfile
70 lines (63 loc) · 1.67 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
# frozen_string_literal: true
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
gem "blockchain-api"
gem "coinbase"
gem "devise"
gem "devise_invitable"
gem "draper"
gem "font-awesome-rails"
gem "friendly_id", "~> 5.1.0"
gem "interactor-rails"
gem "jbuilder", "~> 2.5"
gem "jquery-rails"
gem "kraken_ruby"
gem "pg"
gem "puma", "~> 3.0"
gem "rails", "~> 5.1.0"
gem "redis-rails"
gem "rqrcode-with-patches", "~> 0.5.4"
gem "sass-rails", "~> 5.0"
gem "select2-rails"
gem "sidekiq"
gem "slim-rails"
gem "turbolinks", "~> 5"
gem "twilio-ruby", "~> 5.4.3"
gem "two_factor_authentication"
gem "two_factor_recovery", git: "https://github.com/KGibb8/two_factor_recoverable"
gem "uglifier", ">= 1.3.0"
group :development, :test do
gem "awesome_print"
gem "pry-byebug"
gem "pry-remote"
end
group :development do
gem 'capistrano', require: false
gem 'capistrano-rvm', require: false
gem 'capistrano-rails', require: false
gem 'capistrano-bundler', require: false
gem 'capistrano3-puma', require: false
gem 'capistrano-ssh-doctor', '~> 1.0'
gem "dotenv-rails"
gem "listen", "~> 3.0.5"
gem "spring"
gem "spring-watcher-listen", "~> 2.0.0"
gem "web-console", ">= 3.3.0"
end
group :test do
gem "capybara"
gem "database_cleaner"
gem "factory_bot_rails"
gem "faker"
gem "rails-controller-testing"
gem "rspec-rails"
gem "rspec-sidekiq"
gem "simplecov"
gem "timecop"
gem "webmock"
end
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem "tzinfo-data", platforms: [:mingw, :mswin, :x64_mingw, :jruby]