forked from ricodigo/shapado
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
120 lines (96 loc) · 3.17 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
# Edit this Gemfile to bundle your application's dependencies.
# This preamble is the current preamble for Rails 3 apps; edit as needed.
source 'http://rubygems.org'
gem 'rails', '3.1.3'
if RUBY_PLATFORM !~ /mswin|mingw/
gem 'rdiscount', :git => 'git://github.com/ricodigo/rdiscount.git'
gem "ruby-stemmer", "~> 0.8.2", :require => "lingua/stemmer"
gem "sanitize", "2.0.3"
gem 'magic'
gem 'mini_magick', '~> 2.3'
gem 'nokogiri'
gem 'mechanize'
else
gem "maruku", "0.6.0"
end
gem "maruku"
# ui
gem "haml", '>= 3.1.3'
gem "sass", '>= 3.1.10'
gem 'compass', '>= 0.11.5'
gem "compass-colors", "0.9.0"
gem "fancy-buttons", "1.1.1"
gem 'kaminari'
gem 'mustache'
gem 'poirot', :git => "git://github.com/dcu/poirot.git"
# mongodb
gem 'bson', '1.4.0'
gem 'bson_ext', '1.4.0'
gem 'mongo', '1.4.0'
gem 'mongoid', :git => 'git://github.com/mongoid/mongoid.git', :branch => "2.3.0-stable"
gem 'mongoid_ext', :git => "git://github.com/dcu/mongoid_ext.git"
gem 'mongo_store', :git => 'https://github.com/Houdini/mongo_store.git'
# utils
gem 'jammit'
gem "whatlanguage", "1.0.0"
gem "uuidtools", "~> 2.1.1"
gem "magent", "0.6.2"
gem "bug_hunter", :git => "git://github.com/ricodigo/bug_hunter.git"
gem 'goalie', '~> 0.0.4'
gem 'dynamic_form'
gem 'rinku', '~> 1.2.2', :require => 'rails_rinku'
gem "rack-recaptcha", "0.2.2", :require => "rack/recaptcha"
gem "twitter-text", "1.1.8"
gem "twitter_oauth"
gem 'social_widgets', :git => 'https://git.gitorious.org/social_widgets/social_widgets.git'
gem 'activemerchant', '1.16.0'
gem 'pdfkit', :git => 'git://github.com/jdpace/PDFKit.git' # apt-get install wkhtmltopdf
gem 'geoip'
gem 'rubyzip', '0.9.4', :require => 'zip/zip'
# authentication
gem 'omniauth', '~> 0.3.0'
gem 'oa-openid', '~> 0.3.0', :require => 'omniauth/openid'
gem "oa-oauth", '~> 0.3.0', :require => "omniauth/oauth"
gem 'multiauth', :git => "http://github.com/dcu/multiauth.git"
gem 'orm_adapter'
gem 'devise', "~> 1.4.0"
gem 'whenever', :require => false
gem 'rack-ssl', :require => false
gem 'state_machine', "0.10.4"
gem "xapian-ruby", '1.2.7.1'
gem "xapit", :git => "git://github.com/dcu/xapit.git"
group :deploy do
gem 'capistrano', :require => false
gem 'ricodigo-capistrano-recipes', "~> 0.1.3", :require => false
gem 'unicorn', '4.1.1', :require => false
end
group :scripts do
gem 'eventmachine', '~> 0.12.10'
gem 'em-websocket', '~> 0.3.0'
gem 'twitter', '1.7.2'
end
group :test do
gem 'capybara'
gem "capybara-webkit"
gem 'launchy'
gem 'machinist_mongo', :require => 'machinist/mongoid'
gem 'ffaker'
gem 'simplecov'
gem "autotest"
gem 'ruby-debug19', '0.11.6', :require => 'ruby-debug'
end
group :development do
gem "pry"
gem 'pry-rails'
gem "database_cleaner"
gem "rspec", ">= 2.0.1"
gem "rspec-rails", ">= 2.0.1"
gem "remarkable_mongoid", ">= 0.5.0"
gem 'hpricot'
gem 'ruby_parser'
gem 'mongrel', '1.2.0.pre2'
gem 'niftier-generators', '0.1.2'
gem 'ruby-prof'
gem 'tunnlr_connector', :git => "git://github.com/dcu/tunnlr_connector.git", :branch => "patch-1", :require => "tunnlr"
gem 'rails-dev-boost', :git => 'git://github.com/thedarkone/rails-dev-boost.git', :branch => 'mongoid-brute-force', :require => 'rails_development_boost'
end