-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathGemfile
53 lines (43 loc) · 1.2 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
source 'https://rubygems.org'
# gem 'rails', '3.2.0'
gem 'rails', '3.2.11'
# Bundle edge Rails instead:rout
# gem 'rails', :git => 'git://github.com/rails/rails.git'
gem 'bson_ext', '~> 1.5'
gem 'mongoid', '~> 2.4'
gem 'ejs'
gem 'backbone-support', git: 'git://github.com/erickreutz/backbone-support.git'
gem 'kaminari'
gem 'tire', git: 'git://github.com/jfredett/tire.git'
gem 'tire-contrib'
gem 'koala'
gem 'bitly'
gem 'delayed_job'
gem 'delayed_job_mongoid'
gem 'mongoid_slug'
gem 'unicorn'
gem 'meta-tags', require: 'meta_tags'
gem 'soundcloud', git: 'git://github.com/andrejj/soundcloud-ruby.git'
gem 'rack-cors', :require => 'rack/cors'
gem 'exceptional', git: 'git://github.com/erickreutz/exceptional.git'
# For admin section
gem 'simple_form', '~> 2.0.0'
gem 'jquery-rails', '>= 1.0.12'
gem 'twitter-bootstrap-rails', '2.0.1'
# Gems used only for assets and not required
# in production environments by default.
group :assets do
gem 'coffee-rails', '~> 3.2.1'
gem 'uglifier', '>= 1.0.3'
gem 'less-rails'
end
group :test, :development do
gem 'fabrication'
end
group :development do
gem 'forgery', '~> 0.3.12'
gem 'rockstar' # for seeding the artists with last.fm
gem 'foreman'
end
group :test do
end