-
Notifications
You must be signed in to change notification settings - Fork 2
/
Gemfile
82 lines (66 loc) · 1.93 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
source 'http://rubygems.org'
#gem 'rails', '3.1.0'
# https://github.com/sferik/rails_admin/issues/682
gem 'rails', :git => 'git://github.com/rails/rails.git', :branch => '3-1-stable'
# Bundle edge Rails instead:
# gem 'rails', :git => 'git://github.com/rails/rails.git'
gem 'mysql2'
# Use unicorn as the web server
# gem 'unicorn'
# Deploy with Capistrano
# gem 'capistrano'
# To use debugger (ruby-debug for Ruby 1.8.7+, ruby-debug19 for Ruby 1.9.2+)
# gem 'ruby-debug'
# gem 'ruby-debug19', :require => 'ruby-debug'
# Bundle the extra gems:
# gem 'bj'
# gem 'nokogiri'
# gem 'sqlite3-ruby', :require => 'sqlite3 1.3.3'
# gem 'aws-s3', :require => 'aws/s3'
# Bundle gems for the local environment. Make sure to
# put test-only gems in this group so their generators
# and rake tasks are available in development mode:
gem "haml", ">= 3.0.0"
gem "haml-rails"
gem "jquery-rails"
gem 'devise'
gem "rails_admin", :git => "git://github.com/sferik/rails_admin.git"
gem 'compass'
gem 'aws-s3'
gem 'paperclip', :git => 'git://github.com/thoughtbot/paperclip.git'
gem "friendly_id", "~> 3.2.1"
gem 'twitter'
gem 'acts_as_indexed'
gem 'RedCloth'
gem 'acts-as-taggable-on'
gem 'rails_admin_tag_list_field', :git => 'https://github.com/codeinvain/rails_admin_tag_list_field.git'
gem 'acts_as_tree'
gem 'dalli'
gem 'thin'
group :assets do
gem 'sass-rails'
gem 'coffee-script'
gem 'uglifier'
end
group :development do
gem "heroku_plus"
gem 'guard'
gem 'guard-rspec'
gem 'rb-fsevent'
gem 'growl'
gem "taps"
gem "sqlite3", "=1.3.3"
gem "sqlite3-ruby", "=1.3.3"
gem "rspec-rails", ">= 2.0.1"
end
group :test do
gem "rspec-rails", ">= 2.0.1"
gem "cucumber-rails"
gem "capybara"
gem "execjs" #for CI on Heroku
gem "therubyracer" #for CI on Heroku
gem 'pg' #for CI on Heroku
end
group :production do
gem 'pg'
end