-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathGemfile
51 lines (44 loc) · 1.14 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
source 'https://rubygems.org'
ruby '2.2.2'
gem 'rails', '~> 4.2.3'
gem 'sass-rails', '~> 4.0.3'
gem 'uglifier', '>= 1.3.0'
gem 'coffee-rails', '~> 4.0.0'
gem 'jquery-rails'
gem 'jbuilder', '~> 2.0' # Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
gem 'sdoc', '~> 0.4.0', group: :doc
gem 'haml'
gem 'themoviedb', '0.0.22'
gem 'nokogiri'
gem 'mechanize'
gem 'state_machine', github: 'seuros/state_machine'
gem 'omniauth-facebook', '~> 1.4.0'
gem 'figaro', '~> 1.1.1'
gem 'koala' #añadido por luis
gem 'fb_graph', :git => "git://github.com/nov/fb_graph.git" #añadido por luis
gem 'fb_graph2' # añadido por luis
gem 'rails-i18n', '~> 4.0.0'
gem 'sendgrid-ruby'
gem 'rails_admin'
gem 'paper_trail', '~> 4.0.0.beta'
gem 'tzinfo-data' #añadido por luis
gem 'country_select', github: 'stefanpenner/country_select'
group :development do
gem 'spring', '~> 1.3.6'
gem 'guard-minitest'
end
group :test do
gem 'shoulda'
gem 'capybara'
gem 'selenium-webdriver'
gem 'database_cleaner'
gem 'mocha'
end
group :development, :test do
gem 'sqlite3'
end
group :production do
gem 'pg'
gem 'unicorn'
gem 'rails_12factor'
end