forked from catarse/catarse
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
75 lines (69 loc) · 1.68 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
if RUBY_VERSION =~ /1.9/
Encoding.default_external = Encoding::UTF_8
Encoding.default_internal = Encoding::UTF_8
end
source 'http://rubygems.org'
source 'http://gems.github.com'
gem 'rails', '3.0.3'
gem 'rake', '0.8.7'
gem 'haml'
gem 'slim'
gem 'sass', '3.1.7'
gem 'compass', '0.11.5'
gem 'omniauth', '0.1.6'
gem 'formtastic', '~> 1.1.0'
gem 'validation_reflection'
gem 'inherited_resources', '= 1.1.2'
gem 'maxim-sexy_pg_constraints'
gem 'spectator-validates_email', :require => 'validates_email'
gem 'vimeo'
gem 'wirble'
gem "on_the_spot"
gem 'unicorn'
gem 'mailee', '0.5.4', :git => 'https://github.com/danielweinmann/mailee-api.git'
gem 'will_paginate', ">= 3.0.pre2"
gem 'weekdays'
gem 'moip', :git => 'https://github.com/danielweinmann/moip-ruby.git'
gem 'paypal-express', :require => 'paypal'
gem 'brcep'
gem "meta_search"
gem "RedCloth"
gem "auto_html", '= 1.3.6'
gem "acts_as_commentable"
gem 'mustache'
gem 'unicode'
gem 'routing-filter'
gem 'http_accept_language'
gem 'cancan'
gem 'activeadmin', "= 0.2.2"
gem 'carrierwave', :git => 'https://github.com/jnicklas/carrierwave.git'
gem 'rmagick'
gem 'fog'
gem 'capybara', ">= 0.4.0"
gem 'enumerate_it'
gem 'httparty'
gem "rack-timeout"
gem 'web_translate_it'
gem "devise"
group :development do
gem 'thin'
end
group :test, :development do
gem 'annotate'
gem 'launchy'
gem 'database_cleaner'
gem 'steak', "~> 1.1.0"
gem 'rspec-rails', "~> 2.0.1"
gem 'rcov'
gem 'factory_girl_rails'
gem 'mocha'
end
group :test do
gem 'shoulda'
end
# if you want use capybara-webkit, compile QT and be happy :)
# group :test do
# gem 'capybara-webkit', "0.6.1"
# end
# Putting pg to the end because of a weird bug with Lion, pg and openssl
gem 'pg'