forked from catarse/catarse
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
166 lines (127 loc) · 4.01 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
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
source 'https://rubygems.org'
# For heroku
ruby '1.9.3'
gem 'rails', '3.2.12'
gem 'sidekiq', '~> 2.7.5'
gem 'sinatra', require: false # required by sidekiq web interface mounted on /sidekiq
# Turns every field on a editable one
gem 'best_in_place'
# State machine for attributes on models
gem 'state_machine', require: 'state_machine/core'
# paranoid stuff
gem 'paper_trail', '~> 2.7.1'
# Database and data related
gem 'pg'
gem 'pg_search'
gem 'postgres-copy'
gem 'schema_plus'
gem 'schema_associations'
# Payment engine using Paypal
gem 'catarse_paypal_express', git: 'git://github.com/catarse/catarse_paypal_express.git', ref: '19470d1'
# Payment engine using PagosOnline
gem 'pagosonline', git: 'git://github.com/sagmor/pagosonline.git'
# gem 'catarse_pagosonline', github: 'gustavoguichard/catarse_pagosonline'
# Payment engine using Moip
# gem 'catarse_moip', git: 'git://github.com/catarse/catarse_moip.git', ref: 'fdb0c2c'
#gem 'catarse_moip', path: '../catarse_moip'
# TODO: Check the Catarse_Moip dependency
# gem 'moip', git: 'git://github.com/moiplabs/moip-ruby.git'
# Decorators
gem 'draper'
# Frontend stuff
gem 'slim'
gem 'slim-rails'
gem 'jquery-rails'
gem 'initjs'
# Authentication and Authorization
gem 'omniauth'
gem 'omniauth-twitter'
gem 'omniauth-facebook', '1.4.0'
gem 'omniauth-twitter'
gem 'omniauth-linkedin'
gem 'devise'
# ADMIN
gem 'rails_admin'
# See https://github.com/ryanb/cancan/tree/2.0 for help about this
# In resume: this version of cancan allow checking for authorization on specific fields on the model
gem 'cancan', git: 'git://github.com/ryanb/cancan.git', branch: '2.0', ref: 'f1cebde51a87be149b4970a3287826bb63c0ac0b'
# Error reporting
gem "airbrake"
# Email marketing
gem 'catarse_mailchimp', git: 'git://github.com/catarse/catarse_mailchimp', ref: '45dc426'
# HTML manipulation and formatting
gem 'formtastic', '~> 2.1.1'
gem "auto_html", '= 1.4.2'
gem 'kaminari'
# Uploads
gem 'carrierwave', '~> 0.7.0'
gem 'rmagick'
gem 'fog'
gem 'carrierwave_direct'
# Other Tools
gem 'feedzirra'
gem 'validation_reflection', git: 'git://github.com/ncri/validation_reflection.git'
gem 'inherited_resources', '1.3.1'
gem 'has_scope'
gem 'spectator-validates_email', require: 'validates_email'
gem 'has_vimeo_video', '~> 0.0.5'
gem 'enumerate_it'
gem 'httparty', '~> 0.6.1' # this version is required by moip gem, otherwise payment confirmation will break
gem 'avatars.io'
# Translations
gem 'http_accept_language'
gem 'routing-filter'
# Payment
gem 'activemerchant', '1.17.0', require: 'active_merchant'
gem 'httpclient', '2.2.5'
# Server
gem 'thin'
group :production do
# Enabling Gzip on Heroku
# If you don't use Heroku, please comment the line below.
gem 'heroku-deflater', '~> 0.4.1'
# Enables memcachier env vars to work with dalli
# If you are not using memcachier you should
# comment this line and configure dalli manually
gem 'memcachier'
# Enables dalli as cache provider for rails using memcache
# If you are not using a memcache server for your cache you should
# comment out this line and comment out the line
# config.cache_store = :dalli_store
# in config/production.rb
gem 'dalli'
end
group :development do
gem 'foreman'
gem 'quiet_assets'
gem 'better_errors'
gem 'binding_of_caller'
gem 'letter_opener'
end
group :test, :development do
gem 'rspec-rails'
end
group :test do
gem 'launchy'
gem 'database_cleaner'
gem 'mocha', '~> 0.10.4'
gem 'shoulda'
gem 'factory_girl_rails'
gem 'capybara', '~> 2.0.2'
end
group :assets do
gem 'sass-rails', '~> 3.2.5'
gem 'coffee-rails', '~> 3.2.2'
gem "compass-rails", '~> 1.0.2'
gem 'uglifier', '~> 1.0.3'
gem 'semantic-mixins', '~> 0.1.9'
gem 'normalize-rails'
end
# FIXME: Not-anymore-on-development
# Gems that are with 1 or more years on the vacuum
gem 'weekdays'
gem "rack-timeout"
# TODO: Take a look on dependencies. Why not auto_html?
gem 'rails_autolink', '~> 1.0.7'
# TODO: Take a look on dependencies
gem "RedCloth"