-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
89 lines (64 loc) · 1.77 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
81
82
83
84
85
86
87
88
89
#!/ ruby
source 'http://rubygems.org'
gem 'wirble'
gem 'thin'
gem 'rails'
gem 'mongoid'
gem 'bson_ext'
gem 'rails-i18n'
# auth
gem 'devise'
gem "omniauth-facebook"
gem "omniauth-openid"
gem "cancan"
# model extras
# see: https://github.com/nofxx/symbolize
gem "symbolize", :require => "symbolize/mongoid"
# gem 'mongoid_taggable'
# add "published_at" field, and some related scopes and methods
# see: https://github.com/thetron/mongoid_publishable
# gem 'mongoid_publishable'
# see: https://github.com/mgolovnia/mongoid_commentable
# gem 'mongoid_commentable'
# got to embed it because controller must inherit from the app controller (for i18n etc)
gem 'voteable_mongo'
gem 'rails_admin'
# Bundle edge Rails instead:
# gem 'rails', :git => 'git://github.com/rails/rails.git'
# 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'
# gem 'aws-s3', :require => 'aws/s3'
# views and assets
gem 'haml-rails'
gem 'coffee-rails'
gem 'sass-rails'
gem 'jquery-rails'
gem 'twitter-bootstrap-rails'
# 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:
# group :development, :test do
# gem 'webrat'
# end
group :development, :test do
gem 'capistrano'
gem 'rspec-rails'
gem 'mongoid-rspec', :require => false
gem 'database_cleaner'
gem 'hpricot' # required by html2haml
gem 'ruby_parser' # required by html2haml
end
group :production do
gem 'therubyracer'
gem 'yui-compressor'
gem 'uglifier'
end