forked from SUSE/Portus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
86 lines (77 loc) · 1.85 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
source "https://rubygems.org"
gem "rails", "~> 4.2.2"
gem "jquery-rails", "~> 4.0.4"
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"
# 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 "quiet_assets"
gem "pry-rails"
gem "git-review", require: false
gem "rack-mini-profiler", require: false
end
group :development, :test do
gem "byebug"
gem "web-console", "~> 2.1.3"
gem "thin"
gem "awesome_print"
gem "hirb"
gem "wirb"
gem "wirble"
gem "factory_girl_rails"
gem "ffaker"
gem "rubocop", require: false
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 "database_cleaner"
gem "json-schema"
gem "timecop"
gem "codeclimate-test-reporter", group: :test, require: nil
end
end