-
Notifications
You must be signed in to change notification settings - Fork 8
/
Gemfile
47 lines (41 loc) · 1.02 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
source "https://rubygems.org"
ruby File.read(".ruby-version")
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"
gem "coffee-rails", "~> 4.2"
gem "devise"
gem "jsonapi-resources"
gem "pg", ">= 0.18", "< 2.0"
gem "puma", "~> 3.11"
gem "pundit"
gem "rails", "~> 5.2.4"
gem "rspec"
gem "rspec-rails"
gem "sass-rails", "~> 5.0"
gem "turbolinks", "~> 5"
gem "uglifier", ">= 1.3.0"
gem "verbs"
# gem 'aws-sdk', '~> 2.3'
gem "aws-sdk-s3"
gem "paperclip"
gem "rack-cors", require: "rack/cors"
gem "mqtt"
group :development, :test do
gem "dotenv-rails"
gem "factory_bot_rails"
gem "jsonapi-rspec"
gem "pry"
gem "pry-remote"
gem "rspec-json_expectations"
gem "rubocop"
end
group :development do
gem "listen", ">= 3.0.5", "< 3.2"
gem "web-console", ">= 3.3.0"
gem "spring"
end
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem "tzinfo-data", platforms: %i[mingw mswin x64_mingw jruby]