This repository has been archived by the owner on Jan 12, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 11
/
Gemfile
122 lines (100 loc) · 2.91 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
source "http://rubygems.org"
# Declare your gem's dependencies in catarse_moip.gemspec.
# Bundler will treat runtime dependencies like base dependencies, and
# development dependencies will be added by default to the :development group.
gemspec
source :gemcutter
source 'http://gems.github.com'
gem 'rails', '3.2.11'
gem 'sidekiq', '= 2.4.0'
gem 'sinatra', require: false
gem 'foreman'
gem 'best_in_place'
gem 'state_machine', require: 'state_machine/core'
# Database and data related
gem 'pg'
gem 'pg_search'
gem 'postgres-copy'
gem 'schema_plus'
gem 'catarse_paypal_express', git: 'git://github.com/devton/catarse_paypal_express.git', ref: '4fd17e269395ee4b3a32528ace0bcb7eec57a953'
#gem 'catarse_paypal_express', path: '../catarse_paypal_express'
#gem 'catarse_moip', git: 'git://github.com/devton/catarse_moip.git'
#gem 'catarse_moip', path: '../catarse_moip'
gem 'moip', git: 'git://github.com/moiplabs/moip-ruby.git'
gem 'draper'
# Frontend stuff
gem 'slim'
gem 'slim-rails'
gem 'jquery-rails'
gem 'initjs'
# Authentication and Authorization
gem 'omniauth', "~> 1.1.0"
gem 'omniauth-openid', '~> 1.0.1'
gem 'omniauth-twitter', '~> 0.0.12'
gem 'omniauth-facebook', '~> 1.2.0'
gem 'omniauth-github', '~> 1.0.1'
gem 'omniauth-linkedin', '~> 0.0.6'
gem 'omniauth-yahoo', '~> 0.0.4'
gem 'devise', '1.5.3'
gem 'cancan', git: 'git://github.com/ryanb/cancan.git', branch: '2.0', ref: 'f1cebde51a87be149b4970a3287826bb63c0ac0b'
# Error reporting
gem "airbrake"
# Email marketing
#gem 'mailchimp'
gem 'catarse_mailchimp', git: 'git://github.com/devton/catarse_mailchimp'
# HTML manipulation and formatting
gem 'formtastic', "~> 2.1.1"
gem "auto_html", '= 1.4.2'
gem 'kaminari'
gem 'rails_autolink', '~> 1.0.7'
# Uploads
gem 'carrierwave', '~> 0.7.0'
gem 'rmagick'
gem 'fog'
# 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 'memoist', '~> 0.2.0'
gem 'wirble'
gem "on_the_spot"
gem 'weekdays'
gem 'brcep'
gem "RedCloth"
gem 'unicode'
gem 'enumerate_it'
gem 'httparty', '~> 0.6.1'
gem "rack-timeout"
# Translations
gem 'http_accept_language'
gem 'routing-filter' #, :git => 'git://github.com/svenfuchs/routing-filter.git'
# Administration
gem "meta_search", "1.1.3"
# Payment
gem 'activemerchant', '1.17.0', require: 'active_merchant'
gem 'httpclient', '2.2.5'
gem 'selenium-webdriver'
# Server
gem 'thin'
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 'compass-960-plugin', '~> 0.10.4'
end
group :test, :development do
gem 'launchy'
gem 'database_cleaner'
gem 'rspec-rails', "~> 2.10.0"
gem 'mocha', '0.10.4'
gem 'shoulda'
gem 'factory_girl_rails', '1.7.0'
gem 'capybara', ">= 1.0.1"
end
group :development do
gem 'mailcatcher'
end