-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
49 lines (40 loc) · 1.05 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
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 'awesome_print', require: false
gem 'bcrypt', '~> 3.1.7'
gem 'bootsnap', require: false
gem 'ethereum.rb'
gem 'faker'
gem 'hashie'
gem 'oj'
gem 'pg', '>= 0.18', '< 2.0'
gem 'puma', '~> 3.7'
gem 'pundit'
gem 'rack-cors', require: 'rack/cors'
gem 'rails', '~> 5.2.0'
gem 'redis'
gem 'rufus-scheduler'
gem 'virtus'
group :development, :test do
gem 'pry-byebug'
gem 'pry-rails'
gem 'capybara', '~> 2.13'
gem 'dotenv-rails'
gem 'selenium-webdriver'
# Rspec stuff
gem 'factory_bot_rails'
gem 'rspec-rails', '~> 3.7'
end
group :development do
gem 'better_errors'
gem 'binding_of_caller'
gem 'listen', '>= 3.0.5', '< 3.2'
gem 'spring'
gem 'spring-watcher-listen', '~> 2.0.0'
end
gem 'database_cleaner', group: :test
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
# gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]