-
Notifications
You must be signed in to change notification settings - Fork 3
/
Gemfile
64 lines (60 loc) · 1.73 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
source 'http://rubygems.org'
gem 'rails', '3.1.1'
gem 'haml-rails'
gem 'devise', '~> 2.0.0'
gem 'devise_invitable', '~> 1.0.0'
gem "nifty-generators", :group => :development
# Bundle edge Rails instead:
# gem 'rails', :git => 'git://github.com/rails/rails.git'
gem 'nested_form',:git => 'git://github.com/ryanb/nested_form.git'
gem 'thin'
gem 'faker'
gem 'formtastic',:git => 'https://github.com/justinfrench/formtastic.git'
gem 'formtastic-bootstrap'
gem 'active_hash'
gem "seedbank"
gem 'kaminari'
gem 'declarative_authorization'
gem "bourbon", "~> 1.4.0"
gem 'letter_opener', :group => :development
gem 'rails_admin'
gem 'sqlite3', :group => :development
gem 'toPinyin'
# Gems used only for assets and not required
# in production environments by default.
group :assets do
gem 'sass-rails', " ~> 3.1.0"
gem 'coffee-rails', "~> 3.1.0"
gem 'uglifier'
#gem 'jquery-datatables-rails', :git => 'git://github.com/rweng/jquery-datatables-rails'
gem 'jquery-ui-rails'
end
gem 'jquery-rails'
gem 'tinymce-rails',:git => 'git://github.com/spohlenz/tinymce-rails.git'
#gem "paperclip", "~> 2.0"
gem 'mongoid'
gem 'bson_ext'
gem 'mongoid_fulltext'
gem 'cancan'
gem 'simple_enum', :git => 'git://github.com/lwe/simple_enum.git'
gem "mongoid-paperclip", :require => "mongoid_paperclip"
gem "aws-sdk", :require => "aws/s3"
gem 'thin'
group :production do
# gems specifically for Heroku go here
gem "heroku"
gem "pg"
end
gem "erb2haml", :group => :development
gem "faker"
# Use unicorn as the web server
gem 'unicorn'
# Deploy with Capistrano
gem 'capistrano'
# To use debugger
# gem 'ruby-debug19', :require => 'ruby-debug'
group :test do
# Pretty printed test output
gem 'turn', :require => false
end
gem "mocha", :group => :test