forked from EGI-FCTF/rOCCI-server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
105 lines (81 loc) · 3.05 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
105
source 'https://rubygems.org'
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem 'rails', '~> 4.2.5'
gem 'rails-api', '~> 0.4.0'
gem 'responders', '~> 2.1.0'
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
#gem 'jbuilder', '~> 2.1.0'
# Stuff for working with CORS in Rack
gem 'rack-cors', :require => 'rack/cors'
group :doc do
# bundle exec rake doc:rails generates the API under doc/api.
gem 'sdoc', :require => false
end
# Use ActiveModel has_secure_password
# gem 'bcrypt-ruby', '~> 3.0.0'
# Use Capistrano for deployment
gem 'capistrano', :group => :development
gem 'rvm-capistrano', :group => :development, :require => false
# Use debugger
gem 'debugger', :group => :development, :platforms => :ruby if RUBY_VERSION == '1.9.3'
gem 'byebug', :group => :development, :platforms => :ruby if RUBY_VERSION.split('.').first == '2'
gem 'web-console', '~> 2.0', :group => :development
# Use whenever for scheduled jobs
gem 'whenever', :require => false
# Use passenger for deployment (standalone or in Apache2)
gem 'passenger', '~> 5.0.22'
gem 'rake', '~> 10.3.2'
# Use simplecov for coverage reports
gem 'simplecov', :group => [:development, :test]
# Use RSpec for unit tests
gem 'rspec-rails', '~> 3.2.0', :group => [:development, :test]
gem 'fuubar', '~> 2.0.0', :group => [:development, :test]
# Use Pry for debugging
gem 'pry-rails', :group => [:development, :test]
gem 'pry-rescue', :group => [:development, :test]
gem 'pry-stack_explorer', :group => [:development, :test]
# Use guard to speed-up devel process
#gem 'guard-bundler', :group => :development
#gem 'guard-test', :group => :development
#gem 'guard-rails', :group => :development
# Use notification libs to integrate guard with pop-ups
#gem 'rb-inotify', :require => false, :group => :development
#gem 'libnotify', :group => :development
#gem 'ruby_dep', '~> 1.3.1', :require => false, :group => :development
# Use YARD for documentation
gem 'yard', :group => :development
gem 'redcarpet', :group => :development
# Use bond+hirb to extend irb
#
# Add the following to your ~/.irbrc:
#
# require 'bond'
# require 'hirb'
#
# Bond.start
# Hirb.enable
#
# Or type it in the current irb session.
gem 'bond', :group => :development
gem 'hirb', :group => :development
# Caching stuff
gem 'dalli'
gem 'kgio', :group => :stuff_breaking_travis_ci
# AuthN middleware
gem 'warden', '~> 1.2.4'
# Sensible logging with LogStash support
gem 'logstasher', '~> 0.6.2'
# Use Hashie::Mash to simplify hash-related stuff
gem 'hashie'
# Use IceNine to deep-freeze objects
gem 'ice_nine'
# Use occi-core for OCCI stuff
gem 'occi-core', '~> 4.3.2'
# Install gems for each auth. strategy from Rails.root/lib/authentication_strategies/bundles
Dir.glob(File.join(File.dirname(__FILE__), 'lib', 'authentication_strategies', 'bundles', "Gemfile.*")) do |gemfile|
eval(IO.read(gemfile), binding)
end
# Install gems for each backend from Rails.root/lib/backends/bundles
Dir.glob(File.join(File.dirname(__FILE__), 'lib', 'backends', 'bundles', "Gemfile.*")) do |gemfile|
eval(IO.read(gemfile), binding)
end