This repository has been archived by the owner on Jun 7, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathGemfile
82 lines (67 loc) · 1.96 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
source 'https://rubygems.org'
# Rails
gem 'rails', '3.2.17'
gem 'systemu', '~> 2.5.0'
# Databases
gem 'sqlite3'
gem 'mysql2', '<= 0.3.11'
# Engines
gem 'thin' # web
gem 'daemons' # daemon
# Assets
gem 'haml-rails' # HAML
gem 'jquery-rails', '~> 3.1' # JQuery
gem 'jquery-ui-rails', '4.1.2'
gem 'highcharts-rails', '~> 3.0.0' # Chart Renderer
gem 'chartkick' # Chart API
gem 'therubyracer', platform: :ruby
group :assets do
# CSS
gem 'sass', '3.2.9' # Fixes Error encountered while saving cache & windows vagrant
gem 'sass-rails'
gem 'uglifier', '>= 1.0.3'
gem 'compass-rails'
gem 'modular-scale'
gem 'modernizr-rails'
# Zurb CSS Framework v5
gem 'foundation-rails', '~> 5.4.0'
end
# Outside assets to get helpers
gem 'font-awesome-rails', '~>4.3.0'
# Helper Libs
gem 'devise' # User Authentication
gem 'rails_config', '0.4.2' # Config files
gem 'bcrypt-ruby', '~> 3.0.0' # To use ActiveModel has_secure_password
# Development helpers
group :development do
gem 'better_errors', '~> 1.1' # better html error messages
gem 'quiet_assets' # do not display asset retrieval in log file
gem 'binding_of_caller' # REPL for better_errors
end
# Protocols
gem 'net-dns' # DNS
gem 'net-ssh', '~> 2.9.0' # SSH
#gem 'net-ssh-multi' # SSH
gem 'net-sftp' # SFTP
gem 'ftpfxp' # FTP-TLS
gem 'net-ldap', '~> 0.12.0' # LDAP / AD
# Server Manager Backends
gem 'aws-sdk', '~>1.0'
gem 'ruby-libvirt', '~>0.5', platform: :ruby # windows requires compiling this from source: https://github.com/photron/msys_setup
gem 'uuid'
# Testing
gem 'rspec-rails', :group => [:development, :test]
gem 'factory_girl_rails', :group => [:development, :test]
group :test do
# gem 'capybara'
# gem 'poltergeist'
# gem 'launchy'
gem 'database_cleaner', '<= 1.0.1'
# gem 'forgery'
# Guard
# gem 'win32console', platforms: [:mswin, :mingw] # terminal colors (windows)
# gem 'wdm', platforms: [:mswin, :mingw], require: false # Windows Directory Monitor
# gem 'guard-rspec'
end
# Fast binstubs
gem 'spring'