-
Notifications
You must be signed in to change notification settings - Fork 3
/
Gemfile
66 lines (49 loc) · 1.36 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
source 'http://rubygems.org'
gem 'rails', '3.2.0'
gem 'mysql2'
gem 'json'
# 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 'therubyracer', :platforms => :ruby # Javascript runtime. Required for Twitter Bootstrap
gem 'less-rails'
gem 'twitter-bootstrap-rails'
end
gem 'jquery-rails'
# To use ActiveModel has_secure_password
# gem 'bcrypt-ruby', '~> 3.0.0'
# Use unicorn as the web server
# gem 'unicorn'
# Deploy with Capistrano
# gem 'capistrano'
# To use debugger
# gem 'ruby-debug'
# Use Thin instead of Webrick
# Start for dev with: thin start -p 10520
gem 'thin'
gem 'nifty-generators'
gem 'awesome_print'
gem 'paperclip', '~> 3.0'
gem 'kaminari', '~>0.13.0'
gem 'authlogic'
gem 'omniauth'
gem 'omniauth-twitter'
gem 'omniauth-facebook'
# robins voting stuff
group :test, :cucumber do
gem 'rspec-rails' #, '~> 2.7.0'
gem 'factory_girl'
gem 'cucumber-rails'
gem 'database_cleaner'
end
# Inline editing
gem 'best_in_place'
local_gemfile = File.dirname(__FILE__) + "/Gemfile.robin.rb" # for my local gem's (e.g. sqlite) file in my local repo only
if File.file?(local_gemfile)
self.instance_eval(Bundler.read_file(local_gemfile))
end
# note: run 'bundle install' for new gems
gem "mocha", :group => :test