forked from sshipway/Portus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
104 lines (95 loc) · 2.46 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
source "https://rubygems.org"
gem "rails", "~> 4.2.6"
gem "jquery-rails"
gem "sass-rails", ">= 3.2"
gem "slim"
gem "pundit"
gem "sprockets", "~> 2.12.3"
gem "jwt"
gem "base32"
gem "active_model_serializers"
gem "devise"
gem "gravatar_image_tag"
gem "public_activity"
gem "active_record_union"
gem "mysql2"
gem "search_cop"
gem "kaminari"
gem "crono"
gem "net-ldap"
gem "redcarpet"
gem "font-awesome-rails"
gem "bootstrap-typeahead-rails"
gem "rails_stdout_logging", "~> 0.0.5", group: [:development, :staging, :production]
# Pinning these specific versions because that's what we have on OBS.
gem "ethon", "~> 0.9.0"
gem "typhoeus", "~> 1.0.2"
# Used to store application tokens.
gem "bcrypt"
# This is already a Rails dependency, but we use it to run portusctl
gem "thor"
# Assets group.
#
# Do not set it or set it to no when precompiling the assets.
#
# IGNORE_ASSETS="no" RAILS_ENV=production bundle exec rake assets:precompile
#
# Set IGNORE_ASSETS to YES when creating the Gemfile.lock for
# production after having precompiled the assets
# run:
#
# IGNORE_ASSETS=yes bundle list
unless ENV["IGNORE_ASSETS"] == "yes"
gem "coffee-rails"
gem "bootstrap-sass", "~> 3.3.4"
gem "uglifier"
gem "jquery-turbolinks"
gem "turbolinks"
end
# In order to create the Gemfile.lock required for packaging
# meaning that it should contain only the production packages
# run:
#
# PACKAGING=yes bundle list
unless ENV["PACKAGING"] && ENV["PACKAGING"] == "yes"
group :development do
gem "annotate"
gem "rails-erd"
gem "quiet_assets"
gem "pry-rails"
gem "git-review", require: false
gem "rack-mini-profiler", require: false
gem "guard", require: false
gem "guard-rubocop", require: false
gem "guard-rspec", require: false
end
group :development, :test do
gem "byebug"
gem "web-console", "~> 2.1.3"
gem "puma"
gem "awesome_print"
gem "hirb"
gem "wirb"
gem "wirble"
gem "factory_girl_rails"
gem "ffaker"
gem "rubocop", "~> 0.41.2", require: false
gem "brakeman", require: false
gem "database_cleaner"
gem "md2man", "~>5.1.1", require: false
gem "binman", "~>5.1.0"
end
group :test do
gem "shoulda"
gem "rspec-rails"
gem "vcr"
gem "webmock", require: false
gem "simplecov", require: false
gem "capybara"
gem "poltergeist", require: false
gem "json-schema"
gem "timecop"
gem "codeclimate-test-reporter", group: :test, require: nil
gem "docker-api", "~> 1.28.0"
end
end