forked from thoughtworks/vila-pinto-website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
45 lines (39 loc) · 814 Bytes
/
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
source 'https://rubygems.org'
gem 'rails', '~> 3.2.11'
gem 'slim-rails'
gem "simple_form"
gem 'rails-translate-routes'
gem 'gmaps4rails'
gem 'activeadmin'
gem 'active_admin_editor'
gem "meta_search", '>= 1.1.0.pre'
gem "carrierwave", '~> 0.7.0'
gem "carrierwave-google_drive"
gem "carrierwave-processing", "~> 0.0.2"
gem "rmagick", :require => 'RMagick'
gem "activevalidators"
gem "values_for"
gem "draper"
gem "sass-rails"
gem "compass"
gem "compass-rails"
gem 'nokogiri'
gem 'newrelic_rpm'
gem 'pag_seguro'
gem 'test-unit', '~> 3.0'
group :assets do
gem 'coffee-rails', '~> 3.2.1'
gem 'uglifier', '>= 1.0.3'
end
group :test, :development do
gem 'rspec-rails', '~> 2.0'
gem 'pry'
gem 'sqlite3'
end
group :production do
gem 'pg'
end
group :test do
gem 'shoulda-matchers'
end
gem 'jquery-rails'