-
Notifications
You must be signed in to change notification settings - Fork 6
/
Gemfile
94 lines (73 loc) · 2.01 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
source 'http://rubygems.org'
if RUBY_VERSION =~ /1.9/
Encoding.default_external = Encoding::UTF_8
Encoding.default_internal = Encoding::UTF_8
end
gem 'nokogiri'
gem 'json', '~> 1.7.7'
gem 'roar', '~> 0.9.1'
gem 'erubis', '~> 2.7.0'
gem 'sinatra', '~> 1.3.1'
gem 'puma'
gem 'rake'
gem 'logging'
# Data Storage
gem 'mongo', '1.8.3'
gem 'mongo_ext', '~> 0.19', :platform => :ruby # native extensions for performance
gem 'bson_ext', '1.8.3', :platform => :ruby # native extensions for performance
gem 'bson', '1.8.3'
gem 'multi_json', '1.3.7'
gem 'mongoid', '3.1.6'
gem 'representable' , '1.7.1'
gem 'httparty', '~> 0.8.1'
# Account/Auth support
gem 'bcrypt-ruby', '~> 3.0.1'
# API Doc generation
gem 'source2swagger'
# Cloud Management
gem 'fog', :github => 'TranscendComputing/fog'
# gem 'fog', :git => 'https://github.com/cstewart87/fog.git'
gem "rest-client", "~> 1.6.7"
gem "spice"
#Should use ridley instead of spice, but ridley and mongoid are currently incompatible until mongoid 4.0 release or fixes with Ridley for Boolean class definition.
gem 'ridley-connectors'
gem 'ridley', :git => 'https://github.com/cstewart87/ridley.git'
gem 'buff-extensions', :git => 'https://github.com/cstewart87/buff-extensions.git', :ref => '892a096d'
# SCM
gem 'git'
# CI
gem 'jenkins_api_client', '~> 0.14.1'
# REST support hack - allow _method to be passed as a URL parameter for PUT and DELETE
gem 'rack-methodoverride-with-params', '~>1.0.0'
# Development-only
group :development do
gem 'awesome_print'
gem 'shotgun'
gem 'pry'
gem 'pry-debugger'
gem 'rb-readline'
end
# Test-only
group :development, :test do
gem 'rspec', '~> 2.4'
gem 'foreman'
gem 'rack-test'
gem 'database_cleaner'
gem 'factory_girl', '~> 3.0.0'
# Complexity, turbulence, test coverage.
gem 'flog'
gem 'flay'
gem 'turbulence'
gem 'coveralls', require: false
gem 'webmock'
end
# Google
gem 'google-api-client'
gem 'sinatra-contrib'
# Periodic scheduling
gem 'rufus-scheduler'
# Console
gem 'tux'
# LDAP support
gem 'activeldap'
gem 'net-ldap'