forked from SUSE/velum
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
70 lines (61 loc) · 1.58 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
# frozen_string_literal: true
source "https://rubygems.org"
gem "puma"
gem "rails", "4.2.7.1"
gem "jbuilder", "~> 2.5"
gem "jquery-rails"
gem "slim"
gem "font-awesome-rails"
gem "rails_stdout_logging", group: [:development, :staging, :production]
gem "bcrypt", "~> 3.1.7"
gem "mysql2"
gem "gravatar_image_tag"
gem "devise"
gem "kubeclient", "~> 2.3.0"
# 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["VELUM_IGNORE_ASSETS"] == "yes"
gem "sass-rails", "~> 5.0"
gem "bootstrap-sass"
gem "uglifier", ">= 1.3.0"
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, :test do
gem "rspec-rails"
gem "rubocop", "~> 0.46", require: false
gem "brakeman", require: false
gem "database_cleaner"
gem "pry"
gem "pry-nav"
end
group :test do
gem "shoulda"
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", "~> 1.0.0", require: nil
gem "factory_girl_rails"
gem "ffaker"
gem "rubocop-rspec"
end
end