-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathGemfile
executable file
·49 lines (44 loc) · 1.02 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
source "http://rubygems.org/"
gem "rails", "3.2.11"
gem "opal", :path => File.expand_path("#{File.dirname(__FILE__)}/vendor/gems")
gem "russian", :path => File.expand_path("#{File.dirname(__FILE__)}/vendor/gems/russian")
gem "rmagick", "~>2.12.2"
gem "i18n"
gem "rubyzip"
gem "ya2yaml"
gem "authlogic", "3.1.0"
gem "ancestry"
gem "will_paginate", ">= 3.0.pre2"
gem "omniauth"
gem "omniauth-twitter"
gem "omniauth-facebook"
gem "omniauth-google"
gem "omniauth-oauth2"
gem "carrierwave"
gem "fog"
gem "make_voteable", :path => File.expand_path("#{File.dirname(__FILE__)}/vendor/gems/make_voteable-106adecfad30")
gem "humanizer", "=2.4.3"
gem "cregexp"
gem 'dynamic_form'
gem 'thin'
gem "friendly_id", "~> 4.0.1"
group :development do
gem 'sqlite3'
end
group :production do
gem "mysql2"
end
group :assets do
gem 'jquery-rails'
gem 'sass-rails'
gem "authbuttons-rails"
gem 'coffee-rails'
gem 'uglifier'
gem 'therubyracer'
gem 'compass-rails'
end
group :test do
gem "rspec-rails"
gem "factory_girl_rails"
gem "spork"
end