forked from dlobraico/linus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
75 lines (61 loc) · 1.54 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
source 'https://rubygems.org'
gem 'rails', '3.2.11'
# Bundle edge Rails instead:
# gem 'rails', :git => 'git://github.com/rails/rails.git'
gem 'sqlite3'
gem 'mysql2'
gem 'devise'
gem 'cancan'
gem 'rolify'
gem 'nested_form'
gem 'kaminari'
gem 'paper_trail'
gem 'carrierwave'
gem 'rmagick', :require => 'RMagick'
#gem 'mini_magick'
gem 'jcrop-rails'
# Gems used only for assets and not required
# in production environments by default.
group :assets do
gem 'sass-rails', '~> 3.2.3'
gem 'coffee-rails', '~> 3.2.1'
gem 'uglifier', '>= 1.0.3'
gem 'jquery-rails', '~> 2.1.4'
gem 'jquery-ui-rails'
gem 'jquery-ui-bootstrap-rails'
gem 'font-awesome-rails'
gem 'execjs'
gem 'therubyracer' # seems to be broken on 64-bit linux
end
gem 'haml'
gem 'haml-rails'
#gem 'haml_coffee_assets'
gem 'rails-backbone'
gem 'facebox-rails'
gem 'ice-rails'
# Using a fork below until this pull request allowing multiple column searches gets pulled in
# https://github.com/crowdint/rails3-jquery-autocomplete/pull/95
# gem 'rails3-jquery-autocomplete', :git => 'git://github.com/slash4/rails3-jquery-autocomplete.git'
gem 'rails3-jquery-autocomplete'
group :development, :test do
gem 'capistrano'
gem 'capistrano-unicorn'
gem 'sqlite3'
gem 'rake'
#gem 'webrat'
gem 'rspec'
gem 'rspec-rails'
gem 'shoulda-matchers'
gem 'capybara'
gem 'cucumber'
gem 'factory_girl_rails'
gem 'factory_girl'
#gem 'autotest'
#gem 'ZenTest'
gem 'spork'
gem 'watchr'
gem 'annotate'
#gem 'rails3-generators'
gem 'turn', :require => false
gem 'debugger'
end