-
Notifications
You must be signed in to change notification settings - Fork 1
/
Gemfile
121 lines (67 loc) · 2.16 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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
source 'https://rubygems.org'
ruby "1.9.3" # openbabel ruby bindings are not yet ruby-2-compatible
gem "rails", github: "rails/rails", branch: '4-0-stable'
gem "arel", "~> 4.0.0" #, github: "rails/arel"
gem 'rake'
# Bundle edge Rails instead:
# gem 'rails', :git => 'git://github.com/rails/rails.git'
gem 'pg'
# Gems used only for assets and not required
# in production environments by default.
gem 'sass-rails', '~> 4.0.0'
gem 'coffee-rails'
# See https://github.com/sstephenson/execjs#readme for more supported runtimes
gem 'therubyracer', :platforms => :ruby
gem 'uglifier'
# To use ActiveModel has_secure_password
# gem 'bcrypt-ruby', '~> 3.0.0'
# To use Jbuilder templates for JSON
# gem 'jbuilder'
# Use unicorn as the app server
# gem 'unicorn'
# Deploy with Capistrano
# gem 'capistrano'
# To use debugger
# gem 'debugger'
group :production do
gem 'openbabel-heroku', :git => 'git://github.com/Cominch/openbabel-heroku-gem.git'
gem 'rails_12factor'
gem 'thin'
end
group :development, :localserver do
gem 'openbabel'
end
gem 'rubabel'
gem 'jquery-rails'
gem "jquery-hotkeys-rails"
gem 'jquery-ui-rails'
gem 'noVNC', :git => "git://github.com/davidw/noVNCgem.git"
# gem 'audited-activerecord' # rails 4 compatibility
gem 'devise'
gem 'devise_invitable'
gem 'devise_ldap_authenticatable'
gem 'cocoon'
gem 'actionmailer'
gem 'simple_form', github: "plataformatec/simple_form"
#gem 'websocket-rails', :git => 'git://github.com/DanKnox/websocket-rails.git'
gem 'websocket-rails', '~> 0.6.2'
gem 'dial_a_device_node', :git => 'git://github.com/Cominch/dial-a-device-node.git'
gem 'chemrails', :git => 'git://github.com/Cominch/chemrails.git'
gem 'pundit'
gem 'carrierwave'
gem 'unf'
gem 'fog'
gem 'mini_magick'
gem 'carrierwave_direct'
gem 'bootstrap-sass', github: 'thomas-mcdonald/bootstrap-sass'
gem 'bootstrap-wysiwyg-rails'
gem 'httparty'
gem 'protected_attributes'
gem 'dav4rack', github: 'timon/dav4rack'
gem 'rails_serve_static_assets'
gem 'acts_as_list'
gem 'foreman'
gem 'will_paginate', '~> 3.0.5'
gem 'will_paginate-bootstrap'
gem 'rubyzip'
gem 'kaitatari', :git => 'git://github.com/awayanyway/kaitatari.git' # :branch => "ntuple"