forked from themgt/ws42-chat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
31 lines (23 loc) · 708 Bytes
/
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
source 'https://rubygems.org'
ruby '2.0.0'
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem 'rails', '~> 4.0.0'
gem 'thin'
gem 'websocket-rails', git: 'git://github.com/DanKnox/websocket-rails.git'
gem "less-rails"
gem 'twitter-bootstrap-rails'
# Gems used only for assets and not required
# in production environments by default.
group :assets do
gem 'sass-rails', '~> 4.0.0'
gem 'coffee-rails', '~> 4.0.0'
gem "therubyracer"
# See https://github.com/sstephenson/execjs#readme for more supported runtimes
# gem 'therubyracer', platforms: :ruby
gem 'uglifier', '>= 1.0.3'
end
group :development do
gem 'tilt'
gem 'coffee-rails-source-maps'
end
gem 'jquery-rails'