-
Notifications
You must be signed in to change notification settings - Fork 388
/
Copy pathGemfile
60 lines (53 loc) · 1.49 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
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
ruby '2.6.3'
gem "activeadmin"
gem "coffee-rails"
gem "devise"
gem "faker", :git => "https://github.com/stympy/faker.git", :branch => "master"
gem "jbuilder", "~> 2.5"
gem "puma", "~> 3.7"
gem "rails", "~> 5.1.5"
gem "sass-rails", "~> 5.0"
gem "tzinfo-data", platforms: [:mingw, :mswin, :x64_mingw, :jruby]
gem "uglifier", ">= 1.3.0"
group :production do
gem "pg"
gem "rails_12factor"
end
gem 'hashdiff', [">= 1.0.0.beta1", "< 2.0.0"]
group :development, :test do
gem 'awesome_print'
gem "byebug", platforms: [:mri, :mingw, :x64_mingw]
gem 'console_ip_whitelist', github: 'firstdraft/console_ip_whitelist'
gem 'dotenv-rails'
gem 'grade_runner', github: 'firstdraft/grade_runner'
gem 'pry-rails'
gem 'sqlite3', '~> 1.3.6'
gem 'table_print'
gem 'web_git', github: 'firstdraft/web_git'
end
group :development do
gem "annotate"
gem "awesome_print"
gem 'better_errors'
gem 'binding_of_caller'
gem "draft_generators", github: "firstdraft/draft_generators", branch: "spring-2019"
gem "letter_opener"
gem "listen", ">= 3.0.5", "< 3.2"
gem "meta_request"
gem "spring-watcher-listen", "~> 2.0.0f"
gem "spring"
gem "web-console", ">= 3.3.0"
end
group :test do
gem 'capybara'
gem 'factory_bot_rails'
gem 'rspec-json_expectations'
gem 'rspec-rails'
gem 'webmock'
gem 'rspec-html-matchers'
end